diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index d85d9e481f2..981ed156b34 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -1,3 +1,6 @@
+###### Motivation for this change
+
+
###### Things done
- [ ] Tested using sandboxing
diff --git a/doc/configuration.xml b/doc/configuration.xml
index ffeb7cf554b..caff1e510cd 100644
--- a/doc/configuration.xml
+++ b/doc/configuration.xml
@@ -46,10 +46,10 @@ $ export NIXPKGS_ALLOW_UNFREE=1
allowUnfreePredicate = (pkg: ...);
- Example to allow flash player only:
+ Example to allow flash player and visual studio code only:
-allowUnfreePredicate = (pkg: pkgs.lib.hasPrefix "flashplayer-" pkg.name);
+allowUnfreePredicate = with builtins; (pkg: elem (parseDrvName pkg.name).name [ "flashplayer" "vscode" ]);
diff --git a/doc/default.nix b/doc/default.nix
index ddbee65f1ac..6a44587a31b 100644
--- a/doc/default.nix
+++ b/doc/default.nix
@@ -27,6 +27,7 @@ stdenv.mkDerivation {
in ''
{
pandoc '${inputFile}' -w docbook ${optionalString useChapters "--chapters"} \
+ --smart \
| sed -e 's|||' \
-e 's|
Do not use this function in Nixpkgs. Because it breaks
package abstraction and doesn’t provide error checking for
function arguments, it is only intended for ad-hoc customisation
- (such as in ~/.nixpkgs/config.nix).
+ (such as in ~/.nixpkgs/config.nix).
+
+
+
+ Additionally, overrideDerivation forces an evaluation
+ of the Derivation which can be quite a performance penalty if there are many
+ overrides used.
+
diff --git a/doc/beam-users-guide.xml b/doc/languages-frameworks/beam.xml
similarity index 98%
rename from doc/beam-users-guide.xml
rename to doc/languages-frameworks/beam.xml
index c1a4c90bc27..2dc5aa63e45 100644
--- a/doc/beam-users-guide.xml
+++ b/doc/languages-frameworks/beam.xml
@@ -1,10 +1,10 @@
-
+ xml:id="sec-beam">
- User's Guide to the Beam Infrastructure
+ Beam Languages (Erlang & Elixir)
- Beam Languages (Erlang & Elixir) on Nix
+ Introduction
In this document and related Nix expressions we use the term
Beam to describe the environment. Beam is
@@ -373,4 +373,4 @@ $ nix-build -A beamPackages
that.
-
+
diff --git a/doc/haskell-users-guide.md b/doc/languages-frameworks/haskell.md
similarity index 99%
rename from doc/haskell-users-guide.md
rename to doc/languages-frameworks/haskell.md
index b981466bf2e..e066ad110be 100644
--- a/doc/haskell-users-guide.md
+++ b/doc/languages-frameworks/haskell.md
@@ -329,7 +329,7 @@ workarounds.
### How to build a Haskell project using Stack
-[Stack][http://haskellstack.org] is a popular build tool for Haskell projects.
+[Stack](http://haskellstack.org) is a popular build tool for Haskell projects.
It has first-class support for Nix. Stack can optionally use Nix to
automatically select the right version of GHC and other build tools to build,
test and execute apps in an existing project downloaded from somewhere on the
diff --git a/doc/languages-frameworks/index.xml b/doc/languages-frameworks/index.xml
index 395d4688021..8076c33f1b3 100644
--- a/doc/languages-frameworks/index.xml
+++ b/doc/languages-frameworks/index.xml
@@ -13,19 +13,20 @@ in Nixpkgs to easily build packages for other programming languages,
such as Perl or Haskell. These are described in this chapter.
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
-
-
diff --git a/doc/languages-frameworks/python.md b/doc/languages-frameworks/python.md
index c6d38c6989a..dd9af4e827e 100644
--- a/doc/languages-frameworks/python.md
+++ b/doc/languages-frameworks/python.md
@@ -78,18 +78,16 @@ containing
```nix
with import {};
-(pkgs.python35.buildEnv.override {
- extraLibs = with pkgs.python35Packages; [ numpy toolz ];
-}).env
+(pkgs.python35.withPackages (ps: [ps.numpy ps.toolz])).env
```
executing `nix-shell` gives you again a Nix shell from which you can run Python.
What's happening here?
1. We begin with importing the Nix Packages collections. `import ` import the `` function, `{}` calls it and the `with` statement brings all attributes of `nixpkgs` in the local scope. Therefore we can now use `pkgs`.
-2. Then we create a Python 3.5 environment with `pkgs.buildEnv`. Because we want to use it with a custom set of Python packages, we override it.
-3. The `extraLibs` argument of the original `buildEnv` function can be used to specify which packages should be included. We want `numpy` and `toolz`. Again, we use the `with` statement to bring a set of attributes into the local scope.
-4. And finally, for in interactive use we return the environment.
+2. Then we create a Python 3.5 environment with the `withPackages` function.
+3. The `withPackages` function expects us to provide a function as an argument that takes the set of all python packages and returns a list of packages to include in the environment. Here, we select the packages `numpy` and `toolz` from the package set.
+4. And finally, for in interactive use we return the environment by using the `env` attribute.
### Developing with Python
@@ -187,10 +185,7 @@ with import {};
};
};
- in pkgs.python35.buildEnv.override rec {
-
- extraLibs = [ pkgs.python35Packages.numpy toolz ];
-}
+ in pkgs.python35.withPackages (ps: [ps.numpy toolz])
).env
```
@@ -199,8 +194,11 @@ locally defined package as well as `numpy` which is build according to the
definition in Nixpkgs. What did we do here? Well, we took the Nix expression
that we used earlier to build a Python environment, and said that we wanted to
include our own version of `toolz`. To introduce our own package in the scope of
-`buildEnv.override` we used a
+`withPackages` we used a
[`let`](http://nixos.org/nix/manual/#sec-constructs) expression.
+You can see that we used `ps.numpy` to select numpy from the nixpkgs package set (`ps`).
+But we do not take `toolz` from the nixpkgs package set this time.
+Instead, `toolz` will resolve to our local definition that we introduced with `let`.
### Handling dependencies
@@ -359,7 +357,7 @@ own packages. The important functions here are `import` and `callPackage`.
### Including a derivation using `callPackage`
-Earlier we created a Python environment using `buildEnv`, and included the
+Earlier we created a Python environment using `withPackages`, and included the
`toolz` package via a `let` expression.
Let's split the package definition from the environment definition.
@@ -394,9 +392,7 @@ with import {};
( let
toolz = pkgs.callPackage ~/path/to/toolz/release.nix { pkgs=pkgs; buildPythonPackage=pkgs.python35Packages.buildPythonPackage; };
- in pkgs.python35.buildEnv.override rec {
- extraLibs = [ pkgs.python35Packages.numpy toolz ];
-}
+ in pkgs.python35.withPackages (ps: [ ps.numpy toolz ])
).env
```
@@ -450,6 +446,7 @@ Each interpreter has the following attributes:
- `libPrefix`. Name of the folder in `${python}/lib/` for corresponding interpreter.
- `interpreter`. Alias for `${python}/bin/${executable}`.
- `buildEnv`. Function to build python interpreter environments with extra packages bundled together. See section *python.buildEnv function* for usage and documentation.
+- `withPackages`. Simpler interface to `buildEnv`. See section *python.withPackages function* for usage and documentation.
- `sitePackages`. Alias for `lib/${libPrefix}/site-packages`.
- `executable`. Name of the interpreter executable, ie `python3.4`.
@@ -548,7 +545,7 @@ Python environments can be created using the low-level `pkgs.buildEnv` function.
This example shows how to create an environment that has the Pyramid Web Framework.
Saving the following as `default.nix`
- with import {};
+ with import {};
python.buildEnv.override {
extraLibs = [ pkgs.pythonPackages.pyramid ];
@@ -565,7 +562,7 @@ You can also use the `env` attribute to create local environments with needed
packages installed. This is somewhat comparable to `virtualenv`. For example,
running `nix-shell` with the following `shell.nix`
- with import {};
+ with import {};
(python3.buildEnv.override {
extraLibs = with python3Packages; [ numpy requests ];
@@ -581,6 +578,37 @@ specified packages in its path.
* `postBuild`: Shell command executed after the build of environment.
* `ignoreCollisions`: Ignore file collisions inside the environment (default is `false`).
+#### python.withPackages function
+
+The `python.withPackages` function provides a simpler interface to the `python.buildEnv` functionality.
+It takes a function as an argument that is passed the set of python packages and returns the list
+of the packages to be included in the environment. Using the `withPackages` function, the previous
+example for the Pyramid Web Framework environment can be written like this:
+
+ with import {};
+
+ python.withPackages (ps: [ps.pyramid])
+
+`withPackages` passes the correct package set for the specific interpreter version as an
+argument to the function. In the above example, `ps` equals `pythonPackages`.
+But you can also easily switch to using python3:
+
+ with import {};
+
+ python3.withPackages (ps: [ps.pyramid])
+
+Now, `ps` is set to `python3Packages`, matching the version of the interpreter.
+
+As `python.withPackages` simply uses `python.buildEnv` under the hood, it also supports the `env`
+attribute. The `shell.nix` file from the previous section can thus be also written like this:
+
+ with import {};
+
+ (python33.withPackages (ps: [ps.numpy ps.requests])).env
+
+In contrast to `python.buildEnv`, `python.withPackages` does not support the more advanced options
+such as `ignoreCollisions = true` or `postBuild`. If you need them, you have to use `python.buildEnv`.
+
### Development mode
Development or editable mode is supported. To develop Python packages
@@ -591,7 +619,7 @@ Warning: `shellPhase` is executed only if `setup.py` exists.
Given a `default.nix`:
- with import {};
+ with import {};
buildPythonPackage { name = "myproject";
@@ -649,9 +677,8 @@ newpkgs = pkgs.overridePackages(self: super: rec {
self = python35Packages // { pandas = python35Packages.pandas.override{name="foo";};};
};
});
-in newpkgs.python35.buildEnv.override{
- extraLibs = [newpkgs.python35Packages.blaze ];
-}).env
+in newpkgs.python35.withPackages (ps: [ps.blaze])
+).env
```
A typical use case is to switch to another version of a certain package. For example, in the Nixpkgs repository we have multiple versions of `django` and `scipy`.
In the following example we use a different version of `scipy`. All packages in `newpkgs` will now use the updated `scipy` version.
@@ -665,9 +692,8 @@ newpkgs = pkgs.overridePackages(self: super: rec {
self = python35Packages // { scipy = python35Packages.scipy_0_16;};
};
});
-in pkgs.python35.buildEnv.override{
- extraLibs = [newpkgs.python35Packages.blaze ];
-}).env
+in newpkgs.python35.withPackages (ps: [ps.blaze])
+).env
```
The requested package `blaze` depends upon `pandas` which itself depends on `scipy`.
diff --git a/doc/manual.xml b/doc/manual.xml
index 1045d0d4f81..32e94e8e59c 100644
--- a/doc/manual.xml
+++ b/doc/manual.xml
@@ -20,8 +20,6 @@
-
-
diff --git a/lib/composable-derivation.nix b/lib/composable-derivation.nix
index 8e8faae3982..e3e017d982d 100644
--- a/lib/composable-derivation.nix
+++ b/lib/composable-derivation.nix
@@ -50,7 +50,7 @@ let inherit (lib) nv nvs; in
# nice features:
# declaring "optional featuers" is modular. For instance:
# flags.curl = {
- # configureFlags = ["--with-curl=${curl}" "--with-curlwrappers"];
+ # configureFlags = ["--with-curl=${curl.dev}" "--with-curlwrappers"];
# buildInputs = [curl openssl];
# };
# flags.other = { .. }
diff --git a/lib/lists.nix b/lib/lists.nix
index deb7dcfde42..40475e7655d 100644
--- a/lib/lists.nix
+++ b/lib/lists.nix
@@ -24,7 +24,7 @@ rec {
Example:
concat = fold (a: b: a + b) "z"
concat [ "a" "b" "c" ]
- => "abcnul"
+ => "abcz"
*/
fold = op: nul: list:
let
diff --git a/lib/maintainers.nix b/lib/maintainers.nix
index 35aa1bb4008..198bb93c6be 100644
--- a/lib/maintainers.nix
+++ b/lib/maintainers.nix
@@ -76,6 +76,7 @@
choochootrain = "Hurshal Patel ";
christopherpoole = "Christopher Mark Poole ";
cleverca22 = "Michael Bishop ";
+ cmcdragonkai = "Roger Qiu ";
coconnor = "Corey O'Connor ";
codsl = "codsl ";
codyopel = "Cody Opel ";
@@ -85,7 +86,7 @@
couchemar = "Andrey Pavlov ";
cransom = "Casey Ransom ";
CrystalGamma = "Jona Stubbe ";
- cstrahan = "Charles Strahan ";
+ cstrahan = "Charles Strahan ";
cwoac = "Oliver Matthews ";
DamienCassou = "Damien Cassou ";
dasuxullebt = "Christoph-Simon Senjak ";
@@ -150,6 +151,7 @@
goibhniu = "Cillian de Róiste ";
Gonzih = "Max Gonzih ";
gpyh = "Yacine Hmito ";
+ grahamc = "Graham Christensen ";
gridaphobe = "Eric Seidel ";
guibert = "David Guibert ";
havvy = "Ryan Scheel ";
@@ -228,7 +230,7 @@
matthiasbeyer = "Matthias Beyer ";
maurer = "Matthew Maurer ";
mbakke = "Marius Bakke ";
- mbauer = "Matthew Bauer ";
+ matthewbauer = "Matthew Bauer ";
mbe = "Brandon Edens ";
mboes = "Mathieu Boespflug ";
mcmtroffaes = "Matthias C. M. Troffaes ";
@@ -259,6 +261,7 @@
nfjinjing = "Jinjing Wang ";
nico202 = "Nicolò Balzarotti ";
notthemessiah = "Brian Cohen ";
+ NikolaMandic = "Ratko Mladic ";
np = "Nicolas Pouillard ";
nslqqq = "Nikita Mikhailov ";
obadz = "obadz ";
@@ -293,6 +296,7 @@
pmiddend = "Philipp Middendorf ";
prikhi = "Pavan Rikhi ";
profpatsch = "Profpatsch ";
+ pshendry = "Paul Hendry ";
psibi = "Sibi ";
pSub = "Pascal Wittmann ";
puffnfresh = "Brian McKenna ";
@@ -303,6 +307,7 @@
rasendubi = "Alexey Shmalko ";
raskin = "Michael Raskin <7c6f434c@mail.ru>";
redbaron = "Maxim Ivanov ";
+ redvers = "Redvers Davies ";
refnil = "Martin Lavoie ";
relrod = "Ricky Elrod ";
renzo = "Renzo Carbonara ";
diff --git a/lib/sources.nix b/lib/sources.nix
index 4ed16d65d2b..6b19b192dfd 100644
--- a/lib/sources.nix
+++ b/lib/sources.nix
@@ -29,4 +29,30 @@ 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 =
+ let readCommitFromFile = path: file:
+ with builtins;
+ let fileName = toString path + "/" + file;
+ packedRefsName = toString path + "/packed-refs";
+ in if lib.pathExists fileName
+ then
+ let fileContent = readFile fileName;
+ # Sometimes git stores the commitId directly in the file but
+ # sometimes it stores something like: «ref: refs/heads/branch-name»
+ matchRef = match "^ref: (.*)\n$" fileContent;
+ in if isNull matchRef
+ then lib.removeSuffix "\n" fileContent
+ else readCommitFromFile path (lib.head matchRef)
+ # Sometimes, the file isn't there at all and has been packed away in the
+ # packed-refs file, so we have to grep through it:
+ else if lib.pathExists packedRefsName
+ then
+ let packedRefs = lib.splitString "\n" (readFile packedRefsName);
+ matchRule = match ("^(.*) " + file + "$");
+ matchedRefs = lib.flatten (lib.filter (m: ! (isNull m)) (map matchRule packedRefs));
+ in lib.head matchedRefs
+ else throw ("Not a .git directory: " + path);
+ in lib.flip readCommitFromFile "HEAD";
}
diff --git a/lib/types.nix b/lib/types.nix
index b4d29ac84d2..91b39f3a9cf 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -114,13 +114,17 @@ rec {
name = "list of ${elemType.name}s";
check = isList;
merge = loc: defs:
- map (x: x.value) (filter (x: x ? value) (concatLists (imap (n: def: imap (m: def':
- (mergeDefinitions
- (loc ++ ["[definition ${toString n}-entry ${toString m}]"])
- elemType
- [{ inherit (def) file; value = def'; }]
- ).optionalValue
- ) def.value) defs)));
+ map (x: x.value) (filter (x: x ? value) (concatLists (imap (n: def:
+ if isList def.value then
+ imap (m: def':
+ (mergeDefinitions
+ (loc ++ ["[definition ${toString n}-entry ${toString m}]"])
+ elemType
+ [{ inherit (def) file; value = def'; }]
+ ).optionalValue
+ ) def.value
+ else
+ throw "The option value `${showOption loc}' in `${def.file}' is not a list.") defs)));
getSubOptions = prefix: elemType.getSubOptions (prefix ++ ["*"]);
getSubModules = elemType.getSubModules;
substSubModules = m: listOf (elemType.substSubModules m);
diff --git a/maintainers/scripts/nix-generate-from-cpan.nix b/maintainers/scripts/nix-generate-from-cpan.nix
index 864fd4e83f6..82d9ad6077a 100644
--- a/maintainers/scripts/nix-generate-from-cpan.nix
+++ b/maintainers/scripts/nix-generate-from-cpan.nix
@@ -1,7 +1,7 @@
{ stdenv, makeWrapper, perl, perlPackages }:
stdenv.mkDerivation {
- name = "nix-generate-from-cpan-2";
+ name = "nix-generate-from-cpan-3";
buildInputs = with perlPackages; [
makeWrapper perl CPANMeta GetoptLongDescriptive CPANPLUS Readonly Log4Perl
@@ -20,5 +20,6 @@ stdenv.mkDerivation {
meta = {
maintainers = with stdenv.lib.maintainers; [ eelco rycee ];
description = "Utility to generate a Nix expression for a Perl package from CPAN";
+ platforms = stdenv.lib.platforms.unix;
};
}
diff --git a/maintainers/scripts/nix-generate-from-cpan.pl b/maintainers/scripts/nix-generate-from-cpan.pl
index 73e13bfe09a..942cba792ef 100755
--- a/maintainers/scripts/nix-generate-from-cpan.pl
+++ b/maintainers/scripts/nix-generate-from-cpan.pl
@@ -278,13 +278,13 @@ sub get_deps {
foreach my $n ( $deps->required_modules ) {
next if $n eq "perl";
- # Hacky way to figure out if this module is part of Perl.
- if ( $n !~ /^JSON/ && $n !~ /^YAML/ && $n !~ /^Module::Pluggable/ && $n !~ /^if$/ ) {
- eval "use $n;";
- if ( !$@ ) {
- DEBUG("skipping Perl-builtin module $n");
- next;
- }
+ # Figure out whether the module is a core module by attempting
+ # to `use` the module in a pure Perl interpreter and checking
+ # whether it succeeded. Note, $^X is a magic variable holding
+ # the path to the running Perl interpreter.
+ if ( system("env -i $^X -M$n -e1 >/dev/null 2>&1") == 0 ) {
+ DEBUG("skipping Perl-builtin module $n");
+ next;
}
my $pkg = module_to_pkg( $cb, $n );
diff --git a/nixos/doc/manual/configuration/linux-kernel.xml b/nixos/doc/manual/configuration/linux-kernel.xml
index ffd7b354efe..b008baaa66c 100644
--- a/nixos/doc/manual/configuration/linux-kernel.xml
+++ b/nixos/doc/manual/configuration/linux-kernel.xml
@@ -19,7 +19,7 @@ kernel.
The default Linux kernel configuration should be fine for most users. You can see the configuration of your current kernel with the following command:
-cat /proc/config.gz | gunzip
+zcat /proc/config.gz
If you want to change the kernel configuration, you can use the
feature (see sysctl -a.
+
+ Developing kernel modules
+
+ When developing kernel modules it's often convenient to run
+ edit-compile-run loop as quickly as possible.
+
+ See below snippet as an example of developing mellanox
+ drivers.
+
+
+ ' -A linuxPackages.kernel.dev
+$ 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
+]]>
+
+
+
diff --git a/nixos/doc/manual/configuration/luks-file-systems.xml b/nixos/doc/manual/configuration/luks-file-systems.xml
index 45475dbcd44..88b506d5323 100644
--- a/nixos/doc/manual/configuration/luks-file-systems.xml
+++ b/nixos/doc/manual/configuration/luks-file-systems.xml
@@ -9,21 +9,21 @@
NixOS supports file systems that are encrypted using
LUKS (Linux Unified Key Setup). For example,
here is how you create an encrypted Ext4 file system on the device
-/dev/sda2:
+/dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d:
-$ cryptsetup luksFormat /dev/sda2
+$ cryptsetup luksFormat /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d
WARNING!
========
-This will overwrite data on /dev/sda2 irrevocably.
+This will overwrite data on /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d irrevocably.
Are you sure? (Type uppercase yes): YES
Enter LUKS passphrase: ***
Verify passphrase: ***
-$ cryptsetup luksOpen /dev/sda2 crypted
-Enter passphrase for /dev/sda2: ***
+$ 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
@@ -33,7 +33,7 @@ as /, add the following to
configuration.nix:
-boot.initrd.luks.devices = [ { device = "/dev/sda2"; name = "crypted"; } ];
+boot.initrd.luks.devices.crypted.device = "/dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d";
fileSystems."/".device = "/dev/mapper/crypted";
diff --git a/nixos/doc/manual/development/option-declarations.xml b/nixos/doc/manual/development/option-declarations.xml
index ea5d1241876..b0689aa1d97 100644
--- a/nixos/doc/manual/development/option-declarations.xml
+++ b/nixos/doc/manual/development/option-declarations.xml
@@ -7,8 +7,8 @@
Option Declarations
An option declaration specifies the name, type and description
-of a NixOS configuration option. It is illegal to define an option
-that hasn’t been declared in any module. A option declaration
+of a NixOS configuration option. It is invalid to define an option
+that hasn’t been declared in any module. An option declaration
generally looks like this:
@@ -42,7 +42,7 @@ options = {
The default value used if no value is defined by any
module. A default is not required; in that case, if the option
- value is ever used, an error will be thrown.
+ value is never used, an error will be thrown.
diff --git a/nixos/doc/manual/man-nixos-generate-config.xml b/nixos/doc/manual/man-nixos-generate-config.xml
index 140642bc9c9..993a932ddfb 100644
--- a/nixos/doc/manual/man-nixos-generate-config.xml
+++ b/nixos/doc/manual/man-nixos-generate-config.xml
@@ -113,8 +113,8 @@
- Omit everything concerning file system information
- (which includes swap devices) from the hardware configuration.
+ Omit everything concerning file systems and swap devices
+ from the hardware configuration.
diff --git a/nixos/doc/manual/release-notes/rl-1603.xml b/nixos/doc/manual/release-notes/rl-1603.xml
index 620c3e362a6..c51316bd280 100644
--- a/nixos/doc/manual/release-notes/rl-1603.xml
+++ b/nixos/doc/manual/release-notes/rl-1603.xml
@@ -279,7 +279,7 @@ fileSystems."/example" = {
services.xserver.vaapiDrivers has been removed. Use
- services.hardware.opengl.extraPackages{,32} instead. You can
+ hardware.opengl.extraPackages{,32} instead. You can
also specify VDPAU drivers there.
diff --git a/nixos/doc/manual/release-notes/rl-1609.xml b/nixos/doc/manual/release-notes/rl-1609.xml
index 22dea802924..b08688a6695 100644
--- a/nixos/doc/manual/release-notes/rl-1609.xml
+++ b/nixos/doc/manual/release-notes/rl-1609.xml
@@ -30,7 +30,10 @@ following incompatible changes:
- todo
+ Shell aliases for systemd sub-commands
+ were dropped:
+ start, stop,
+ restart, status.
diff --git a/nixos/lib/test-driver/Logger.pm b/nixos/lib/test-driver/Logger.pm
index 6e62fdfd770..3fe5ef67c14 100644
--- a/nixos/lib/test-driver/Logger.pm
+++ b/nixos/lib/test-driver/Logger.pm
@@ -3,6 +3,7 @@ package Logger;
use strict;
use Thread::Queue;
use XML::Writer;
+use Encode qw(decode encode);
sub new {
my ($class) = @_;
@@ -56,7 +57,8 @@ sub nest {
sub sanitise {
my ($s) = @_;
$s =~ s/[[:cntrl:]\xff]//g;
- return $s;
+ $s = decode('UTF-8', $s, Encode::FB_DEFAULT);
+ return encode('UTF-8', $s, Encode::FB_CROAK);
}
sub log {
diff --git a/nixos/lib/test-driver/Machine.pm b/nixos/lib/test-driver/Machine.pm
index 37d6518fd8d..1a243918c22 100644
--- a/nixos/lib/test-driver/Machine.pm
+++ b/nixos/lib/test-driver/Machine.pm
@@ -382,9 +382,17 @@ sub waitForUnit {
my $state = $info->{ActiveState};
die "unit ‘$unit’ reached state ‘$state’\n" if $state eq "failed";
if ($state eq "inactive") {
+ # If there are no pending jobs, then assume this unit
+ # will never reach active state.
my ($status, $jobs) = $self->execute("systemctl list-jobs --full 2>&1");
- die "unit ‘$unit’ is inactive and there are no pending jobs\n"
- if $jobs =~ /No jobs/; # FIXME: fragile
+ if ($jobs =~ /No jobs/) { # FIXME: fragile
+ # Handle the case where the unit may have started
+ # between the previous getUnitInfo() and
+ # list-jobs.
+ my $info2 = $self->getUnitInfo($unit);
+ die "unit ‘$unit’ is inactive and there are no pending jobs\n"
+ if $info2->{ActiveState} eq $state;
+ }
}
return 1 if $state eq "active";
};
diff --git a/nixos/modules/config/fonts/fontdir.nix b/nixos/modules/config/fonts/fontdir.nix
index c78b52fe29e..180e38f81f4 100644
--- a/nixos/modules/config/fonts/fontdir.nix
+++ b/nixos/modules/config/fonts/fontdir.nix
@@ -4,47 +4,17 @@ with lib;
let
- fontDirs = config.fonts.fonts;
-
- localDefs = with pkgs.builderDefs; pkgs.builderDefs.passthru.function rec {
- src = "";/* put a fetchurl here */
- buildInputs = [pkgs.xorg.mkfontdir pkgs.xorg.mkfontscale];
- inherit fontDirs;
- installPhase = fullDepEntry ("
- list='';
- for i in ${toString fontDirs} ; do
- if [ -d \$i/ ]; then
- list=\"\$list \$i\";
- fi;
- done
- list=\$(find \$list -name fonts.dir -o -name '*.ttf' -o -name '*.otf');
- fontDirs='';
- for i in \$list ; do
- fontDirs=\"\$fontDirs \$(dirname \$i)\";
- done;
- mkdir -p \$out/share/X11-fonts/;
- find \$fontDirs -type f -o -type l | while read i; do
- j=\"\${i##*/}\"
- if ! test -e \"\$out/share/X11-fonts/\${j}\"; then
- ln -s \"\$i\" \"\$out/share/X11-fonts/\${j}\";
- fi;
- done;
- cd \$out/share/X11-fonts/
- rm fonts.dir
- rm fonts.scale
- rm fonts.alias
- mkfontdir
- mkfontscale
- cat \$( find ${pkgs.xorg.fontalias}/ -name fonts.alias) >fonts.alias
- ") ["minInit" "addInputs"];
- };
-
- x11Fonts = with localDefs; stdenv.mkDerivation rec {
- name = "X11-fonts";
- builder = writeScript (name + "-builder")
- (textClosure localDefs
- [installPhase doForceShare doPropagate]);
- };
+ x11Fonts = pkgs.runCommand "X11-fonts" { } ''
+ mkdir -p "$out/share/X11-fonts"
+ find ${toString config.fonts.fonts} \
+ \( -name fonts.dir -o -name '*.ttf' -o -name '*.otf' \) \
+ -exec ln -sf -t "$out/share/X11-fonts" '{}' \;
+ cd "$out/share/X11-fonts"
+ rm -f fonts.dir fonts.scale fonts.alias
+ ${pkgs.xorg.mkfontdir}/bin/mkfontdir
+ ${pkgs.xorg.mkfontscale}/bin/mkfontscale
+ cat $(find ${pkgs.xorg.fontalias}/ -name fonts.alias) >fonts.alias
+ '';
in
@@ -70,6 +40,8 @@ in
environment.systemPackages = [ x11Fonts ];
+ environment.pathsToLink = [ "/share/X11-fonts" ];
+
};
}
diff --git a/nixos/modules/config/ldap.nix b/nixos/modules/config/ldap.nix
index a6657768e06..7064ef64b4c 100644
--- a/nixos/modules/config/ldap.nix
+++ b/nixos/modules/config/ldap.nix
@@ -192,7 +192,7 @@ in
system.activationScripts = mkIf insertLdapPassword {
ldap = stringAfter [ "etc" "groups" "users" ] ''
if test -f "${cfg.bind.password}" ; then
- echo "bindpw "$(cat ${cfg.bind.password})"" | cat ${ldapConfig} - > /etc/ldap.conf.bindpw
+ echo "bindpw "$(cat ${cfg.bind.password})"" | cat ${ldapConfig.source} - > /etc/ldap.conf.bindpw
mv -fT /etc/ldap.conf.bindpw /etc/ldap.conf
chmod 600 /etc/ldap.conf
fi
diff --git a/nixos/modules/config/networking.nix b/nixos/modules/config/networking.nix
index 0c4f4cbfa5c..8a2e630a917 100644
--- a/nixos/modules/config/networking.nix
+++ b/nixos/modules/config/networking.nix
@@ -11,6 +11,9 @@ let
config.services.dnsmasq.resolveLocalQueries;
hasLocalResolver = config.services.bind.enable || dnsmasqResolve;
+ resolvconfOptions = cfg.resolvconfOptions
+ ++ optional cfg.dnsSingleRequest "single-request"
+ ++ optional cfg.dnsExtensionMechanism "ends0";
in
{
@@ -59,6 +62,14 @@ in
'';
};
+ networking.resolvconfOptions = lib.mkOption {
+ type = types.listOf types.str;
+ default = [];
+ example = [ "ndots:1" "rotate" ];
+ description = ''
+ Set the options in /etc/resolv.conf.
+ '';
+ };
networking.proxy = {
@@ -171,12 +182,9 @@ in
# Invalidate the nscd cache whenever resolv.conf is
# regenerated.
libc_restart='${pkgs.systemd}/bin/systemctl try-restart --no-block nscd.service 2> /dev/null'
- '' + optionalString cfg.dnsSingleRequest ''
- # only send one DNS request at a time
- resolv_conf_options+=' single-request'
- '' + optionalString cfg.dnsExtensionMechanism ''
- # enable extension mechanisms for DNS
- resolv_conf_options+=' edns0'
+ '' + optionalString (length resolvconfOptions > 0) ''
+ # Options as described in resolv.conf(5)
+ resolv_conf_options='${concatStringsSep " " resolvconfOptions}'
'' + optionalString hasLocalResolver ''
# This hosts runs a full-blown DNS resolver.
name_servers='127.0.0.1'
diff --git a/nixos/modules/config/shells-environment.nix b/nixos/modules/config/shells-environment.nix
index 89b8a04b5e7..9642981803b 100644
--- a/nixos/modules/config/shells-environment.nix
+++ b/nixos/modules/config/shells-environment.nix
@@ -150,10 +150,6 @@ in
system.build.binsh = pkgs.bashInteractive;
- # Ensure TERMINFO is set appropriately *before* user shells are run,
- # as they may depend on it
- environment.sessionVariables.TERMINFO = "/run/current-system/sw/share/terminfo";
-
# Set session variables in the shell as well. This is usually
# unnecessary, but it allows changes to session variables to take
# effect without restarting the session (e.g. by opening a new
diff --git a/nixos/modules/installer/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix
index c31ded977e6..bdb3c227ecc 100644
--- a/nixos/modules/installer/cd-dvd/iso-image.nix
+++ b/nixos/modules/installer/cd-dvd/iso-image.nix
@@ -79,7 +79,7 @@ let
echo "options init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} nomodeset" >> $out/loader/entries/nixos-livecd-nomodeset.conf
echo "default nixos-livecd" > $out/loader/loader.conf
- echo "timeout ${builtins.toString config.boot.loader.gummiboot.timeout}" >> $out/loader/loader.conf
+ echo "timeout ${builtins.toString config.boot.loader.timeout}" >> $out/loader/loader.conf
'';
efiImg = pkgs.runCommand "efi-image_eltorito" { buildInputs = [ pkgs.mtools pkgs.libfaketime ]; }
diff --git a/nixos/modules/installer/tools/nixos-generate-config.pl b/nixos/modules/installer/tools/nixos-generate-config.pl
index 8e75f8d3c40..ca7fb71ba9b 100644
--- a/nixos/modules/installer/tools/nixos-generate-config.pl
+++ b/nixos/modules/installer/tools/nixos-generate-config.pl
@@ -1,5 +1,6 @@
#! @perl@
+use strict;
use Cwd 'abs_path';
use File::Spec;
use File::Path;
@@ -69,6 +70,7 @@ for (my $n = 0; $n < scalar @ARGV; $n++) {
my @attrs = ();
my @kernelModules = ();
my @initrdKernelModules = ();
+my @initrdAvailableKernelModules = ();
my @modulePackages = ();
my @imports;
@@ -379,7 +381,7 @@ EOF
# Is this a btrfs filesystem?
if ($fsType eq "btrfs") {
my ($status, @id_info) = runCommand("btrfs subvol show $rootDir$mountPoint");
- if ($status != 0 || join("", @msg) =~ /ERROR:/) {
+ if ($status != 0 || join("", @id_info) =~ /ERROR:/) {
die "Failed to retrieve subvolume info for $mountPoint\n";
}
my @ids = join("", @id_info) =~ m/Subvolume ID:[ \t\n]*([^ \t\n]*)/;
@@ -408,7 +410,7 @@ EOF
EOF
if (scalar @extraOptions > 0) {
- $fileSystems .= < 'quiet') =~ /^CRYPT-LUKS/)
+ {
+ my @slaves = glob("/sys/class/block/$deviceName/slaves/*");
+ if (scalar @slaves == 1) {
+ my $slave = "/dev/" . basename($slaves[0]);
+ if (-e $slave) {
+ my $dmName = read_file("/sys/class/block/$deviceName/dm/name");
+ chomp $dmName;
+ $fileSystems .= " boot.initrd.luks.devices.\"$dmName\".device = \"${\(findStableDevPath $slave)}\";\n\n";
+ }
+ }
+ }
+ }
}
@@ -440,7 +461,7 @@ sub toNixList {
sub multiLineList {
my $indent = shift;
return " [ ]" if !@_;
- $res = "\n${indent}[ ";
+ my $res = "\n${indent}[ ";
my $first = 1;
foreach my $s (@_) {
$res .= "$indent " if !$first;
@@ -457,7 +478,7 @@ my $modulePackages = toNixList(uniq @modulePackages);
my $fsAndSwap = "";
if (!$noFilesystems) {
- $fsAndSwap = "\n${fileSystems} ";
+ $fsAndSwap = "\n$fileSystems ";
$fsAndSwap .= "swapDevices =" . multiLineList(" ", @swapDevices) . ";\n";
}
@@ -494,7 +515,7 @@ if ($showHardwareConfig) {
if ($force || ! -e $fn) {
print STDERR "writing $fn...\n";
- my $bootloaderConfig = "";
+ my $bootLoaderConfig = "";
if (-e "/sys/firmware/efi/efivars") {
$bootLoaderConfig = < /dev/null
- fenv source /etc/fish/foreign-env/shellInit 1> /dev/null
+ fenv source ${config.system.build.setEnvironment} > /dev/null ^&1
+ fenv source /etc/fish/foreign-env/shellInit > /dev/null
${cfg.shellInit}
- if builtin status --is-login
- fenv source /etc/fish/foreign-env/loginShellInit 1> /dev/null
+ if status --is-login
+ fenv source /etc/fish/foreign-env/loginShellInit > /dev/null
${cfg.loginShellInit}
end
- if builtin status --is-interactive
+ if status --is-interactive
${fishAliases}
- fenv source /etc/fish/foreign-env/interactiveShellInit 1> /dev/null
+ fenv source /etc/fish/foreign-env/interactiveShellInit > /dev/null
${cfg.interactiveShellInit}
end
'';
diff --git a/nixos/modules/programs/man.nix b/nixos/modules/programs/man.nix
index 201144ccb45..e59ffd6f936 100644
--- a/nixos/modules/programs/man.nix
+++ b/nixos/modules/programs/man.nix
@@ -19,7 +19,7 @@ with lib;
config = mkIf config.programs.man.enable {
- environment.systemPackages = [ pkgs.man ];
+ environment.systemPackages = [ pkgs.man-db ];
environment.pathsToLink = [ "/share/man" ];
diff --git a/nixos/modules/programs/tmux.nix b/nixos/modules/programs/tmux.nix
index 4220a2e17b3..cadf8d4ae10 100644
--- a/nixos/modules/programs/tmux.nix
+++ b/nixos/modules/programs/tmux.nix
@@ -5,8 +5,57 @@ let
cfg = config.programs.tmux;
-in
-{
+ defaultKeyMode = "emacs";
+ defaultResize = 5;
+ defaultShortcut = "b";
+ defaultTerminal = "screen";
+
+ boolToStr = value: if value then "on" else "off";
+
+ tmuxConf = ''
+ set -g default-terminal "${cfg.terminal}"
+ set -g base-index ${toString cfg.baseIndex}
+ setw -g pane-base-index ${toString cfg.baseIndex}
+
+ ${if cfg.newSession then "new-session" else ""}
+
+ ${if cfg.reverseSplit then ''
+ bind v split-window -h
+ bind s split-window -v
+ '' else ""}
+
+ set -g status-keys ${cfg.keyMode}
+ set -g mode-keys ${cfg.keyMode}
+
+ ${if cfg.keyMode == "vi" then ''
+ bind h select-pane -L
+ bind j select-pane -D
+ bind k select-pane -U
+ bind l select-pane -R
+
+ bind -r H resize-pane -L ${toString cfg.resizeAmount}
+ bind -r J resize-pane -D ${toString cfg.resizeAmount}
+ bind -r K resize-pane -U ${toString cfg.resizeAmount}
+ bind -r L resize-pane -R ${toString cfg.resizeAmount}
+ '' else ""}
+
+ ${if (cfg.shortcut != defaultShortcut) then ''
+ # rebind main key: C-${cfg.shortcut}
+ unbind C-${defaultShortcut}
+ set -g prefix C-${cfg.shortcut}
+ bind ${cfg.shortcut} send-prefix
+ bind C-${cfg.shortcut} last-window
+ '' else ""}
+
+ setw -g aggressive-resize ${boolToStr cfg.aggressiveResize}
+ setw -g clock-mode-style ${if cfg.clock24 then "24" else "12"}
+ set -s escape-time ${toString cfg.escapeTime}
+ set -g history-limit ${toString cfg.historyLimit}
+
+ ${cfg.extraTmuxConf}
+ '';
+
+in {
###### interface
options = {
@@ -14,13 +63,92 @@ in
enable = mkEnableOption "tmux - a screen replacement.";
- tmuxconf = mkOption {
+ aggressiveResize = mkOption {
+ default = false;
+ example = true;
+ type = types.bool;
+ description = ''
+ Resize the window to the size of the smallest session for which it is the current window.
+ '';
+ };
+
+ baseIndex = mkOption {
+ default = 0;
+ example = 1;
+ type = types.int;
+ description = "Base index for windows and panes.";
+ };
+
+ clock24 = mkOption {
+ default = false;
+ example = true;
+ type = types.bool;
+ description = "Use 24 hour clock.";
+ };
+
+ escapeTime = mkOption {
+ default = 500;
+ example = 0;
+ type = types.int;
+ description = "Time in milliseconds for which tmux waits after an escape is input.";
+ };
+
+ extraTmuxConf = mkOption {
default = "";
description = ''
- The contents of /etc/tmux.conf
+ Additional contents of /etc/tmux.conf
'';
type = types.lines;
};
+
+ historyLimit = mkOption {
+ default = 2000;
+ example = 5000;
+ type = types.int;
+ description = "Maximum number of lines held in window history.";
+ };
+
+ keyMode = mkOption {
+ default = defaultKeyMode;
+ example = "vi";
+ type = types.enum [ "emacs" "vi" ];
+ description = "VI or Emacs style shortcuts.";
+ };
+
+ newSession = mkOption {
+ default = false;
+ example = true;
+ type = types.bool;
+ description = "Automatically spawn a session if trying to attach and none are running.";
+ };
+
+ reverseSplit = mkOption {
+ default = false;
+ example = true;
+ type = types.bool;
+ description = "Reverse the window split shortcuts.";
+ };
+
+ resizeAmount = mkOption {
+ default = defaultResize;
+ example = 10;
+ type = types.int;
+ description = "Number of lines/columns when resizing.";
+ };
+
+ shortcut = mkOption {
+ default = defaultShortcut;
+ example = "a";
+ type = types.str;
+ description = "Ctrl following by this key is used as the main shortcut.";
+ };
+
+ terminal = mkOption {
+ default = defaultTerminal;
+ example = "screen-256color";
+ type = types.str;
+ description = "Set the $TERM variable.";
+ };
};
};
@@ -28,8 +156,13 @@ in
config = mkIf cfg.enable {
environment = {
+ etc."tmux.conf".text = tmuxConf;
+
systemPackages = [ pkgs.tmux ];
- etc."tmux.conf".text = cfg.tmuxconf;
+
+ variables = {
+ TMUX_TMPDIR = ''''${XDG_RUNTIME_DIR:-"/run/user/\$(id -u)"}'';
+ };
};
};
}
diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix
index 2f37f180c7e..3440261c396 100644
--- a/nixos/modules/rename.nix
+++ b/nixos/modules/rename.nix
@@ -34,6 +34,8 @@ with lib;
# Old Grub-related options.
(mkRenamedOptionModule [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ])
(mkRenamedOptionModule [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ])
+ (mkRenamedOptionModule [ "boot" "loader" "grub" "timeout" ] [ "boot" "loader" "timeout" ])
+ (mkRenamedOptionModule [ "boot" "loader" "gummiboot" "timeout" ] [ "boot" "loader" "timeout" ])
# smartd
(mkRenamedOptionModule [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ])
diff --git a/nixos/modules/security/setuid-wrappers.nix b/nixos/modules/security/setuid-wrappers.nix
index 7d69f9b1183..99dd514feea 100644
--- a/nixos/modules/security/setuid-wrappers.nix
+++ b/nixos/modules/security/setuid-wrappers.nix
@@ -96,7 +96,7 @@ in
}:
''
- if ! source=${if source != "" then source else "$(PATH=$SETUID_PATH type -tP ${program})"}; then
+ if ! source=${if source != "" then source else "$(readlink -f $(PATH=$SETUID_PATH type -tP ${program}))"}; then
# If we can't find the program, fall back to the
# system profile.
source=/nix/var/nix/profiles/default/bin/${program}
diff --git a/nixos/modules/services/computing/slurm/slurm.nix b/nixos/modules/services/computing/slurm/slurm.nix
index ad8836f4009..ee38a42199e 100644
--- a/nixos/modules/services/computing/slurm/slurm.nix
+++ b/nixos/modules/services/computing/slurm/slurm.nix
@@ -40,7 +40,7 @@ in
defaultText = "pkgs.slurm-llnl";
example = literalExample "pkgs.slurm-llnl-full";
description = ''
- The packge to use for slurm binaries.
+ The package to use for slurm binaries.
'';
};
@@ -111,7 +111,7 @@ in
builder = pkgs.writeText "builder.sh" ''
source $stdenv/setup
mkdir -p $out/bin
- find ${cfg.package}/bin -type f -executable | while read EXE
+ find ${getBin cfg.package}/bin -type f -executable | while read EXE
do
exename="$(basename $EXE)"
wrappername="$out/bin/$exename"
diff --git a/nixos/modules/services/databases/redis.nix b/nixos/modules/services/databases/redis.nix
index 6323d2c8ce4..480e1184ffa 100644
--- a/nixos/modules/services/databases/redis.nix
+++ b/nixos/modules/services/databases/redis.nix
@@ -68,6 +68,22 @@ in
description = "The port for Redis to listen to.";
};
+ vmOverCommit = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Set vm.overcommit_memory to 1 (Suggested for Background Saving: http://redis.io/topics/faq)
+ '';
+ };
+
+ openFirewall = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to open ports in the firewall for the server.
+ '';
+ };
+
bind = mkOption {
type = with types; nullOr str;
default = null; # All interfaces
@@ -193,6 +209,14 @@ in
config = mkIf config.services.redis.enable {
+ boot.kernel.sysctl = mkIf cfg.vmOverCommit {
+ "vm.overcommit_memory" = "1";
+ };
+
+ networking.firewall = mkIf cfg.openFirewall {
+ allowedTCPPorts = [ cfg.port ];
+ };
+
users.extraUsers.redis =
{ name = cfg.user;
uid = config.ids.uids.redis;
diff --git a/nixos/modules/services/desktops/gnome3/gnome-keyring.nix b/nixos/modules/services/desktops/gnome3/gnome-keyring.nix
index a8f1bcc28fb..a36643a1cfb 100644
--- a/nixos/modules/services/desktops/gnome3/gnome-keyring.nix
+++ b/nixos/modules/services/desktops/gnome3/gnome-keyring.nix
@@ -36,7 +36,7 @@ in
environment.systemPackages = [ gnome3.gnome_keyring ];
- services.dbus.packages = [ gnome3.gnome_keyring ];
+ services.dbus.packages = [ gnome3.gnome_keyring gnome3.gcr ];
};
diff --git a/nixos/modules/services/mail/opensmtpd.nix b/nixos/modules/services/mail/opensmtpd.nix
index 42a1244cde5..e773cdedaea 100644
--- a/nixos/modules/services/mail/opensmtpd.nix
+++ b/nixos/modules/services/mail/opensmtpd.nix
@@ -107,7 +107,16 @@ in {
wantedBy = [ "multi-user.target" ];
wants = [ "network.target" ];
after = [ "network.target" ];
- preStart = "mkdir -p /var/spool";
+ preStart = ''
+ mkdir -p /var/spool/smtpd
+
+ mkdir -p /var/spool/smtpd/offline
+ chown root.smtpq /var/spool/smtpd/offline
+ chmod 770 /var/spool/smtpd/offline
+
+ mkdir -p /var/spool/smtpd/purge
+ chmod 700 /var/spool/smtpd/purge
+ '';
serviceConfig.ExecStart = "${opensmtpd}/sbin/smtpd -d -f ${conf} ${args}";
environment.OPENSMTPD_PROC_PATH = "${procEnv}/libexec/opensmtpd";
};
diff --git a/nixos/modules/services/network-filesystems/diod.nix b/nixos/modules/services/network-filesystems/diod.nix
index 7de7acaa4a0..556fad4d8ab 100644
--- a/nixos/modules/services/network-filesystems/diod.nix
+++ b/nixos/modules/services/network-filesystems/diod.nix
@@ -153,7 +153,7 @@ in
after = [ "network.target" ];
serviceConfig = {
ExecStart = "${pkgs.diod}/sbin/diod -f -c ${diodConfig}";
- Capabilities = "cap_net_bind_service+=ep";
+ CapabilityBoundingSet = "cap_net_bind_service+=ep";
};
};
};
diff --git a/nixos/modules/services/networking/chrony.nix b/nixos/modules/services/networking/chrony.nix
index 1cd678e7c62..a38142b4a08 100644
--- a/nixos/modules/services/networking/chrony.nix
+++ b/nixos/modules/services/networking/chrony.nix
@@ -64,7 +64,7 @@ in
###### implementation
- config = mkIf config.services.chrony.enable {
+ config = mkIf cfg.enable {
# Make chronyc available in the system path
environment.systemPackages = [ pkgs.chrony ];
@@ -101,12 +101,14 @@ in
home = stateDir;
};
- systemd.services.ntpd.enable = false;
+ systemd.services.ntpd.enable = mkForce false;
systemd.services.chronyd =
{ description = "chrony NTP daemon";
wantedBy = [ "multi-user.target" ];
+ wants = [ "time-sync.target" ];
+ before = [ "time-sync.target" ];
after = [ "network.target" ];
conflicts = [ "ntpd.service" "systemd-timesyncd.service" ];
diff --git a/nixos/modules/services/networking/dnscrypt-proxy.nix b/nixos/modules/services/networking/dnscrypt-proxy.nix
index bb0dc756ba4..2a6161ee873 100644
--- a/nixos/modules/services/networking/dnscrypt-proxy.nix
+++ b/nixos/modules/services/networking/dnscrypt-proxy.nix
@@ -90,7 +90,7 @@ 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 = "07kbbisrvrqdxif3061hxj3whin3llg4nh50ln7prisi2vbd76xd";
+ sha256 = "0lac20qhcgjxxiiz8jzcn3hkqj4ywl58hahp5n2i6vf9akfyqp7c";
};
defaultText = "pkgs.fetchurl { url = ...; sha256 = ...; }";
};
diff --git a/nixos/modules/services/networking/mosquitto.nix b/nixos/modules/services/networking/mosquitto.nix
new file mode 100644
index 00000000000..f926cd710c8
--- /dev/null
+++ b/nixos/modules/services/networking/mosquitto.nix
@@ -0,0 +1,219 @@
+{ config, lib, pkgs, ...}:
+
+with lib;
+
+let
+ cfg = config.services.mosquitto;
+
+ listenerConf = optionalString cfg.ssl.enable ''
+ listener ${toString cfg.ssl.port} ${cfg.ssl.host}
+ cafile ${cfg.ssl.cafile}
+ certfile ${cfg.ssl.certfile}
+ keyfile ${cfg.ssl.keyfile}
+ '';
+
+ mosquittoConf = pkgs.writeText "mosquitto.conf" ''
+ pid_file /run/mosquitto/pid
+ acl_file ${aclFile}
+ persistence true
+ allow_anonymous ${if cfg.allowAnonymous then "true" else "false"}
+ bind_address ${cfg.host}
+ port ${toString cfg.port}
+ ${listenerConf}
+ ${cfg.extraConf}
+ '';
+
+ userAcl = (concatStringsSep "\n\n" (mapAttrsToList (n: c:
+ "user ${n}\n" + (concatStringsSep "\n" c.acl)) cfg.users
+ ));
+
+ aclFile = pkgs.writeText "mosquitto.acl" ''
+ ${cfg.aclExtraConf}
+ ${userAcl}
+ '';
+
+in
+
+{
+
+ ###### Interface
+
+ options = {
+ services.mosquitto = {
+ enable = mkEnableOption "Enable the MQTT Mosquitto broker.";
+
+ host = mkOption {
+ default = "127.0.0.1";
+ example = "0.0.0.0";
+ type = types.string;
+ description = ''
+ Host to listen on without SSL.
+ '';
+ };
+
+ port = mkOption {
+ default = 1883;
+ example = 1883;
+ type = types.int;
+ description = ''
+ Port on which to listen without SSL.
+ '';
+ };
+
+ ssl = {
+ enable = mkEnableOption "Enable SSL listener.";
+
+ cafile = mkOption {
+ type = types.nullOr types.path;
+ default = null;
+ description = "Path to PEM encoded CA certificates.";
+ };
+
+ certfile = mkOption {
+ type = types.nullOr types.path;
+ default = null;
+ description = "Path to PEM encoded server certificate.";
+ };
+
+ keyfile = mkOption {
+ type = types.nullOr types.path;
+ default = null;
+ description = "Path to PEM encoded server key.";
+ };
+
+ host = mkOption {
+ default = "0.0.0.0";
+ example = "localhost";
+ type = types.string;
+ description = ''
+ Host to listen on with SSL.
+ '';
+ };
+
+ port = mkOption {
+ default = 8883;
+ example = 8883;
+ type = types.int;
+ description = ''
+ Port on which to listen with SSL.
+ '';
+ };
+ };
+
+ dataDir = mkOption {
+ default = "/var/lib/mosquitto";
+ type = types.path;
+ description = ''
+ The data directory.
+ '';
+ };
+
+ users = mkOption {
+ type = types.attrsOf (types.submodule {
+ options = {
+ password = mkOption {
+ type = with types; uniq (nullOr str);
+ default = null;
+ description = ''
+ Specifies the (clear text) password for the MQTT User.
+ '';
+ };
+
+ hashedPassword = mkOption {
+ type = with types; uniq (nullOr str);
+ default = null;
+ description = ''
+ Specifies the hashed password for the MQTT User.
+ overrides .
+ To generate hashed password install mkpasswd
+ package and run mkpasswd -m sha-512.
+ '';
+ };
+
+ acl = mkOption {
+ type = types.listOf types.string;
+ example = [ "topic read A/B" "topic A/#" ];
+ description = ''
+ Control client access to topics on the broker.
+ '';
+ };
+ };
+ });
+ example = { john = { password = "123456"; acl = [ "topic readwrite john/#" ]; }; };
+ description = ''
+ A set of users and their passwords and ACLs.
+ '';
+ };
+
+ allowAnonymous = mkOption {
+ default = false;
+ example = true;
+ type = types.bool;
+ description = ''
+ Allow clients to connect without authentication.
+ '';
+ };
+
+ extraConf = mkOption {
+ default = "";
+ type = types.lines;
+ description = ''
+ Extra config to append to `mosquitto.conf` file.
+ '';
+ };
+
+ aclExtraConf = mkOption {
+ default = "";
+ type = types.lines;
+ description = ''
+ Extra config to prepend to the ACL file.
+ '';
+ };
+
+ };
+ };
+
+
+ ###### Implementation
+
+ config = mkIf cfg.enable {
+
+ systemd.services.mosquitto = {
+ description = "Mosquitto MQTT Broker Daemon";
+ wantedBy = [ "multi-user.target" ];
+ after = [ "network.target" ];
+ serviceConfig = {
+ Type = "forking";
+ User = "mosquitto";
+ Group = "mosquitto";
+ RuntimeDirectory = "mosquitto";
+ WorkingDirectory = cfg.dataDir;
+ Restart = "on-failure";
+ ExecStart = "${pkgs.mosquitto}/bin/mosquitto -c ${mosquittoConf} -d";
+ ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
+ PIDFile = "/run/mosquitto/pid";
+ };
+ preStart = ''
+ rm -f ${cfg.dataDir}/passwd
+ touch ${cfg.dataDir}/passwd
+ '' + concatStringsSep "\n" (
+ mapAttrsToList (n: c:
+ if c.hashedPassword != null then
+ "echo '${n}:${c.hashedPassword}' > ${cfg.dataDir}/passwd"
+ else optionalString (c.password != null)
+ "${pkgs.mosquitto}/bin/mosquitto_passwd -b ${cfg.dataDir}/passwd ${n} ${c.password}"
+ ) cfg.users);
+ };
+
+ users.extraUsers.mosquitto = {
+ description = "Mosquitto MQTT Broker Daemon owner";
+ group = "mosquitto";
+ uid = config.ids.uids.mosquitto;
+ home = cfg.dataDir;
+ createHome = true;
+ };
+
+ users.extraGroups.mosquitto.gid = config.ids.gids.mosquitto;
+
+ };
+}
diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix
index e9eea6a2cae..9912ad9ae3f 100644
--- a/nixos/modules/services/networking/networkmanager.nix
+++ b/nixos/modules/services/networking/networkmanager.nix
@@ -114,12 +114,10 @@ in {
# Ugly hack for using the correct gnome3 packageSet
basePackages = mkOption {
type = types.attrsOf types.package;
- default = { inherit modemmanager wpa_supplicant
+ default = { inherit networkmanager modemmanager wpa_supplicant
networkmanager_openvpn networkmanager_vpnc
networkmanager_openconnect
- networkmanager_pptp networkmanager_l2tp;
- networkmanager = networkmanager.out;
- };
+ networkmanager_pptp networkmanager_l2tp; };
internal = true;
};
@@ -189,7 +187,7 @@ in {
boot.kernelModules = [ "ppp_mppe" ]; # Needed for most (all?) PPTP VPN connections.
- environment.etc = with mapAttrs (name: getBin) cfg.basePackages; [
+ environment.etc = with cfg.basePackages; [
{ source = ipUpScript;
target = "NetworkManager/dispatcher.d/01nixos-ip-up";
}
diff --git a/nixos/modules/services/networking/ntpd.nix b/nixos/modules/services/networking/ntpd.nix
index 5256fc9bc07..c8a08567928 100644
--- a/nixos/modules/services/networking/ntpd.nix
+++ b/nixos/modules/services/networking/ntpd.nix
@@ -82,6 +82,8 @@ in
{ description = "NTP Daemon";
wantedBy = [ "multi-user.target" ];
+ wants = [ "time-sync.target" ];
+ before = [ "time-sync.target" ];
preStart =
''
diff --git a/nixos/modules/services/networking/openntpd.nix b/nixos/modules/services/networking/openntpd.nix
index e53fc574fbe..a8625fa2fa9 100644
--- a/nixos/modules/services/networking/openntpd.nix
+++ b/nixos/modules/services/networking/openntpd.nix
@@ -64,7 +64,8 @@ in
systemd.services.openntpd = {
description = "OpenNTP Server";
wantedBy = [ "multi-user.target" ];
- wants = [ "network-online.target" ];
+ wants = [ "network-online.target" "time-sync.target" ];
+ before = [ "time-sync.target" ];
after = [ "dnsmasq.service" "bind.service" "network-online.target" ];
serviceConfig.ExecStart = "${package}/sbin/ntpd -d -f ${cfgFile} ${cfg.extraOptions}";
};
diff --git a/nixos/modules/services/networking/syncthing.nix b/nixos/modules/services/networking/syncthing.nix
index 514c17c6e5d..ef05e71ce07 100644
--- a/nixos/modules/services/networking/syncthing.nix
+++ b/nixos/modules/services/networking/syncthing.nix
@@ -121,7 +121,7 @@ in
User = cfg.user;
Group = cfg.group;
PermissionsStartOnly = true;
- ExecStart = "${pkgs.syncthing}/bin/syncthing -no-browser -home=${cfg.dataDir}";
+ ExecStart = "${cfg.package}/bin/syncthing -no-browser -home=${cfg.dataDir}";
};
};
};
@@ -129,7 +129,7 @@ in
systemd.user.services = {
syncthing = header // {
serviceConfig = service // {
- ExecStart = "${pkgs.syncthing}/bin/syncthing -no-browser";
+ ExecStart = "${cfg.package}/bin/syncthing -no-browser";
};
};
};
diff --git a/nixos/modules/services/networking/toxvpn.nix b/nixos/modules/services/networking/toxvpn.nix
new file mode 100644
index 00000000000..c38424c8e27
--- /dev/null
+++ b/nixos/modules/services/networking/toxvpn.nix
@@ -0,0 +1,54 @@
+{ config, stdenv, pkgs, lib, ... }:
+
+with lib;
+
+{
+ options = {
+ services.toxvpn = {
+ enable = mkEnableOption "enable toxvpn running on startup";
+
+ localip = mkOption {
+ type = types.string;
+ default = "10.123.123.1";
+ description = "your ip on the vpn";
+ };
+
+ port = mkOption {
+ type = types.int;
+ default = 33445;
+ description = "udp port for toxcore, port-forward to help with connectivity if you run many nodes behind one NAT";
+ };
+ };
+ };
+
+ config = mkIf config.services.toxvpn.enable {
+ systemd.services.toxvpn = {
+ description = "toxvpn daemon";
+
+ requires = [ "network-online.target" ]; # consider replacing by NetworkManager-wait-online.service
+ wantedBy = [ "multi-user.target" ];
+
+ preStart = ''
+ mkdir -p /run/toxvpn || true
+ chown toxvpn /run/toxvpn
+ '';
+
+ serviceConfig = {
+ ExecStart = "${pkgs.toxvpn}/bin/toxvpn -i ${config.services.toxvpn.localip} -l /run/toxvpn/control -u toxvpn -p ${toString config.services.toxvpn.port}";
+ KillMode = "process";
+ Restart = "on-success";
+ Type = "notify";
+ };
+
+ restartIfChanged = false; # Likely to be used for remote admin
+ };
+
+ users.extraUsers = {
+ toxvpn = {
+ uid = config.ids.uids.toxvpn;
+ home = "/var/lib/toxvpn";
+ createHome = true;
+ };
+ };
+ };
+}
diff --git a/nixos/modules/services/networking/unbound.nix b/nixos/modules/services/networking/unbound.nix
index 89762fe5248..0dd24478f40 100644
--- a/nixos/modules/services/networking/unbound.nix
+++ b/nixos/modules/services/networking/unbound.nix
@@ -106,8 +106,10 @@ in
preStart = ''
mkdir -m 0755 -p ${stateDir}/dev/
cp ${confFile} ${stateDir}/unbound.conf
+ ${optionalString cfg.enableRootTrustAnchor ''
${pkgs.unbound}/bin/unbound-anchor -a ${rootTrustAnchorFile}
chown unbound ${stateDir} ${rootTrustAnchorFile}
+ ''}
touch ${stateDir}/dev/random
${pkgs.utillinux}/bin/mount --bind -n /dev/random ${stateDir}/dev/random
'';
diff --git a/nixos/modules/services/security/fail2ban.nix b/nixos/modules/services/security/fail2ban.nix
index 33c4910fc0c..22e3bb0066c 100644
--- a/nixos/modules/services/security/fail2ban.nix
+++ b/nixos/modules/services/security/fail2ban.nix
@@ -102,7 +102,7 @@ in
partOf = optional config.networking.firewall.enable "firewall.service";
restartTriggers = [ fail2banConf jailConf ];
- path = [ pkgs.fail2ban pkgs.iptables ];
+ path = [ pkgs.fail2ban pkgs.iptables pkgs.iproute ];
preStart =
''
diff --git a/nixos/modules/services/system/dbus.nix b/nixos/modules/services/system/dbus.nix
index 434211aaac4..5583a1bcb3a 100644
--- a/nixos/modules/services/system/dbus.nix
+++ b/nixos/modules/services/system/dbus.nix
@@ -110,7 +110,7 @@ in
};
services.dbus.packages = [
- pkgs.dbus
+ pkgs.dbus.out
config.system.path
];
diff --git a/nixos/modules/services/torrent/transmission.nix b/nixos/modules/services/torrent/transmission.nix
index 32203a522b0..5154aaca3bc 100644
--- a/nixos/modules/services/torrent/transmission.nix
+++ b/nixos/modules/services/torrent/transmission.nix
@@ -113,22 +113,22 @@ in
#include
#include
- ${pkgs.glibc.out}/lib/*.so mr,
- ${pkgs.libevent.out}/lib/libevent*.so* mr,
- ${pkgs.curl.out}/lib/libcurl*.so* mr,
- ${pkgs.openssl.out}/lib/libssl*.so* mr,
- ${pkgs.openssl.out}/lib/libcrypto*.so* mr,
- ${pkgs.zlib.out}/lib/libz*.so* mr,
- ${pkgs.libssh2.out}/lib/libssh2*.so* mr,
- ${pkgs.systemd}/lib/libsystemd*.so* mr,
- ${pkgs.xz.out}/lib/liblzma*.so* mr,
- ${pkgs.libgcrypt.out}/lib/libgcrypt*.so* mr,
- ${pkgs.libgpgerror.out}/lib/libgpg-error*.so* mr,
- ${pkgs.nghttp2.lib}/lib/libnghttp2*.so* mr,
- ${pkgs.c-ares.out}/lib/libcares*.so* mr,
- ${pkgs.libcap.lib}/lib/libcap*.so* mr,
- ${pkgs.attr.out}/lib/libattr*.so* mr,
- ${pkgs.lz4}/lib/liblz4*.so* mr,
+ ${getLib pkgs.glibc}/lib/*.so mr,
+ ${getLib pkgs.libevent}/lib/libevent*.so* mr,
+ ${getLib pkgs.curl}/lib/libcurl*.so* mr,
+ ${getLib pkgs.openssl}/lib/libssl*.so* mr,
+ ${getLib pkgs.openssl}/lib/libcrypto*.so* mr,
+ ${getLib pkgs.zlib}/lib/libz*.so* mr,
+ ${getLib pkgs.libssh2}/lib/libssh2*.so* mr,
+ ${getLib pkgs.systemd}/lib/libsystemd*.so* mr,
+ ${getLib pkgs.xz}/lib/liblzma*.so* mr,
+ ${getLib pkgs.libgcrypt}/lib/libgcrypt*.so* mr,
+ ${getLib pkgs.libgpgerror}/lib/libgpg-error*.so* mr,
+ ${getLib pkgs.nghttp2}/lib/libnghttp2*.so* mr,
+ ${getLib pkgs.c-ares}/lib/libcares*.so* mr,
+ ${getLib pkgs.libcap}/lib/libcap*.so* mr,
+ ${getLib pkgs.attr}/lib/libattr*.so* mr,
+ ${getLib pkgs.lz4}/lib/liblz4*.so* mr,
@{PROC}/sys/kernel/random/uuid r,
@{PROC}/sys/vm/overcommit_memory r,
diff --git a/nixos/modules/services/web-servers/apache-httpd/mediawiki.nix b/nixos/modules/services/web-servers/apache-httpd/mediawiki.nix
index 0fe8d1a89cf..b4b5a6fdc07 100644
--- a/nixos/modules/services/web-servers/apache-httpd/mediawiki.nix
+++ b/nixos/modules/services/web-servers/apache-httpd/mediawiki.nix
@@ -43,7 +43,7 @@ let
# Paths to external programs.
$wgDiff3 = "${pkgs.diffutils}/bin/diff3";
$wgDiff = "${pkgs.diffutils}/bin/diff";
- $wgImageMagickConvertCommand = "${pkgs.imagemagick}/bin/convert";
+ $wgImageMagickConvertCommand = "${pkgs.imagemagick.out}/bin/convert";
#$wgDebugLogFile = "/tmp/mediawiki_debug_log.txt";
diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix
index 16996b9f96c..b8d19eb80c8 100644
--- a/nixos/modules/services/x11/desktop-managers/gnome3.nix
+++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix
@@ -44,7 +44,7 @@ let
${cfg.extraGSettingsOverrides}
EOF
- ${pkgs.glib}/bin/glib-compile-schemas $out/share/gsettings-schemas/nixos-gsettings-overrides/glib-2.0/schemas/
+ ${pkgs.glib.dev}/bin/glib-compile-schemas $out/share/gsettings-schemas/nixos-gsettings-overrides/glib-2.0/schemas/
'';
};
diff --git a/nixos/modules/services/x11/display-managers/default.nix b/nixos/modules/services/x11/display-managers/default.nix
index 376f9f4b46b..862ddc1d13f 100644
--- a/nixos/modules/services/x11/display-managers/default.nix
+++ b/nixos/modules/services/x11/display-managers/default.nix
@@ -32,6 +32,12 @@ let
''
#! ${pkgs.bash}/bin/bash
+ ${optionalString cfg.displayManager.logToJournal ''
+ if [ -z "$_DID_SYSTEMD_CAT" ]; then
+ _DID_SYSTEMD_CAT=1 exec ${config.systemd.package}/bin/systemd-cat -t xsession -- "$0" "$1"
+ fi
+ ''}
+
. /etc/profile
cd "$HOME"
@@ -39,7 +45,7 @@ let
sessionType="$1"
if [ "$sessionType" = default ]; then sessionType=""; fi
- ${optionalString (!cfg.displayManager.job.logsXsession) ''
+ ${optionalString (!cfg.displayManager.job.logsXsession && !cfg.displayManager.logToJournal) ''
exec > ~/.xsession-errors 2>&1
''}
@@ -83,6 +89,8 @@ let
# .local/share doesn't exist yet.
mkdir -p $HOME/.local/share
+ unset _DID_SYSTEMD_CAT
+
${cfg.displayManager.sessionCommands}
# Allow the user to execute commands at the beginning of the X session.
@@ -278,6 +286,16 @@ in
};
+ logToJournal = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ By default, the stdout/stderr of sessions is written
+ to ~/.xsession-errors. When this option
+ is enabled, it will instead be written to the journal.
+ '';
+ };
+
};
};
diff --git a/nixos/modules/services/x11/display-managers/kdm.nix b/nixos/modules/services/x11/display-managers/kdm.nix
index 9b937ff7ee1..d9f7f8f0dfc 100644
--- a/nixos/modules/services/x11/display-managers/kdm.nix
+++ b/nixos/modules/services/x11/display-managers/kdm.nix
@@ -139,7 +139,7 @@ in
mkdir -m 0755 -p /var/lib/kdm
chown kdm /var/lib/kdm
${(optionalString (config.system.boot.loader.id == "grub" && config.system.build.grub != null) "PATH=${config.system.build.grub}/sbin:$PATH ") +
- "KDEDIRS=/run/current-system/sw exec ${kdebase_workspace}/bin/kdm -config ${kdmrc} -nodaemon"}
+ "KDEDIRS=/run/current-system/sw exec ${kdebase_workspace}/bin/kdm -config ${kdmrc} -nodaemon -logfile /dev/stderr"}
'';
logsXsession = true;
};
diff --git a/nixos/modules/services/x11/hardware/synaptics.nix b/nixos/modules/services/x11/hardware/synaptics.nix
index 2981e7545e8..e74b19c8e71 100644
--- a/nixos/modules/services/x11/hardware/synaptics.nix
+++ b/nixos/modules/services/x11/hardware/synaptics.nix
@@ -169,10 +169,10 @@ in {
config = mkIf cfg.enable {
- services.xserver.modules = [ pkg ];
+ services.xserver.modules = [ pkg.out ];
environment.etc."${etcFile}".source =
- "${pkg}/share/X11/xorg.conf.d/50-synaptics.conf";
+ "${pkg.out}/share/X11/xorg.conf.d/50-synaptics.conf";
environment.systemPackages = [ pkg ];
diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix
index 9cb9c8de31d..82d3e31e2a0 100644
--- a/nixos/modules/services/x11/xserver.nix
+++ b/nixos/modules/services/x11/xserver.nix
@@ -16,6 +16,7 @@ let
virtualbox = { modules = [ kernelPackages.virtualboxGuestAdditions ]; driverName = "vboxvideo"; };
ati = { modules = with pkgs.xorg; [ xf86videoati glamoregl ]; };
intel = { modules = with pkgs.xorg; [ xf86videointel glamoregl ]; };
+ modesetting = { modules = []; };
};
fontsForXServer =
@@ -519,6 +520,7 @@ in
serviceConfig = {
Restart = "always";
RestartSec = "200ms";
+ SyslogIdentifier = "display-manager";
};
};
@@ -526,10 +528,11 @@ in
[ "-terminate"
"-config ${configFile}"
"-xkbdir" "${cfg.xkbDir}"
+ # Log at the default verbosity level to stderr rather than /var/log/X.*.log.
+ "-verbose" "3" "-logfile" "/dev/null"
] ++ optional (cfg.display != null) ":${toString cfg.display}"
++ optional (cfg.tty != null) "vt${toString cfg.tty}"
++ optional (cfg.dpi != null) "-dpi ${toString cfg.dpi}"
- ++ optionals (cfg.display != null) [ "-logfile" "/var/log/X.${toString cfg.display}.log" ]
++ optional (!cfg.enableTCP) "-nolisten tcp";
services.xserver.modules =
diff --git a/nixos/modules/system/boot/initrd-ssh.nix b/nixos/modules/system/boot/initrd-ssh.nix
index a881459bed1..3e2805a8c34 100644
--- a/nixos/modules/system/boot/initrd-ssh.nix
+++ b/nixos/modules/system/boot/initrd-ssh.nix
@@ -85,6 +85,10 @@ in
};
config = mkIf (config.boot.initrd.network.enable && cfg.enable) {
+ assertions = [ {
+ assertion = cfg.hostRSAKey != null || cfg.hostDSSKey != null || cfg.hostECDSAKey != null;
+ message = "You should specify at least one host key for initrd SSH";
+ } ];
boot.initrd.extraUtilsCommands = ''
copy_bin_and_libs ${pkgs.dropbear}/bin/dropbear
diff --git a/nixos/modules/system/boot/loader/grub/grub.nix b/nixos/modules/system/boot/loader/grub/grub.nix
index 815852f2ab2..cf1a32bb1ef 100644
--- a/nixos/modules/system/boot/loader/grub/grub.nix
+++ b/nixos/modules/system/boot/loader/grub/grub.nix
@@ -48,12 +48,13 @@ let
bootPath = args.path;
storePath = config.boot.loader.grub.storePath;
bootloaderId = if args.efiBootloaderId == null then "NixOS${efiSysMountPoint'}" else args.efiBootloaderId;
+ timeout = if config.boot.loader.timeout == null then -1 else config.boot.loader.timeout;
inherit efiSysMountPoint;
inherit (args) devices;
inherit (efi) canTouchEfiVariables;
inherit (cfg)
version extraConfig extraPerEntryConfig extraEntries
- extraEntriesBeforeNixOS extraPrepareConfig configurationLimit copyKernels timeout
+ extraEntriesBeforeNixOS extraPrepareConfig configurationLimit copyKernels
default fsIdentifier efiSupport gfxmodeEfi gfxmodeBios;
path = (makeBinPath ([
pkgs.coreutils pkgs.gnused pkgs.gnugrep pkgs.findutils pkgs.diffutils pkgs.btrfs-progs
@@ -313,14 +314,6 @@ in
'';
};
- timeout = mkOption {
- default = if (config.boot.loader.timeout != null) then config.boot.loader.timeout else -1;
- type = types.int;
- description = ''
- Timeout (in seconds) until GRUB boots the default menu item.
- '';
- };
-
default = mkOption {
default = 0;
type = types.int;
diff --git a/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix b/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix
index 69ad2c6d44f..aec697da4a1 100644
--- a/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix
+++ b/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix
@@ -16,7 +16,7 @@ let
nix = config.nix.package.out;
- timeout = if cfg.timeout != null then cfg.timeout else "";
+ timeout = if config.boot.loader.timeout != null then config.boot.loader.timeout else "";
inherit (efi) efiSysMountPoint canTouchEfiVariables;
};
@@ -29,20 +29,6 @@ in {
description = "Whether to enable the gummiboot UEFI boot manager";
};
-
- timeout = mkOption {
- default = if config.boot.loader.timeout == null then 10000 else config.boot.loader.timeout;
-
- example = 4;
-
- type = types.nullOr types.int;
-
- description = ''
- Timeout (in seconds) for how long to show the menu (null if none).
- Note that even with no timeout the menu can be forced if the space
- key is pressed during bootup
- '';
- };
};
config = mkIf cfg.enable {
diff --git a/nixos/modules/system/boot/luksroot.nix b/nixos/modules/system/boot/luksroot.nix
index 77a82547031..8dad09c8920 100644
--- a/nixos/modules/system/boot/luksroot.nix
+++ b/nixos/modules/system/boot/luksroot.nix
@@ -5,7 +5,7 @@ with lib;
let
luks = config.boot.initrd.luks;
- openCommand = { name, device, header, keyFile, keyFileSize, allowDiscards, yubikey, ... }: ''
+ openCommand = name': { name, device, header, keyFile, keyFileSize, allowDiscards, yubikey, ... }: assert name' == name; ''
# Wait for luksRoot to appear, e.g. if on a usb drive.
# XXX: copied and adapted from stage-1-init.sh - should be
# available as a function.
@@ -192,9 +192,8 @@ let
''}
'';
- isPreLVM = f: f.preLVM;
- preLVM = filter isPreLVM luks.devices;
- postLVM = filter (f: !(isPreLVM f)) luks.devices;
+ preLVM = filterAttrs (n: v: v.preLVM) luks.devices;
+ postLVM = filterAttrs (n: v: !v.preLVM) luks.devices;
in
{
@@ -228,31 +227,31 @@ in
};
boot.initrd.luks.devices = mkOption {
- default = [ ];
- example = literalExample ''[ { name = "luksroot"; device = "/dev/sda3"; preLVM = true; } ]'';
+ default = { };
+ example = { "luksroot".device = "/dev/disk/by-uuid/430e9eff-d852-4f68-aa3b-2fa3599ebe08"; };
description = ''
- The list of devices that should be decrypted using LUKS before trying to mount the
- root partition. This works for both LVM-over-LUKS and LUKS-over-LVM setups.
-
- The devices are decrypted to the device mapper names defined.
-
- Make sure that initrd has the crypto modules needed for decryption.
+ The encrypted disk that should be opened before the root
+ filesystem is mounted. Both LVM-over-LUKS and LUKS-over-LVM
+ setups are sypported. The unencrypted devices can be accessed as
+ /dev/mapper/name.
'';
- type = types.listOf types.optionSet;
+ type = types.loaOf types.optionSet;
- options = {
+ options = { name, ... }: { options = {
name = mkOption {
+ visible = false;
+ default = name;
example = "luksroot";
type = types.str;
- description = "Named to be used for the generated device in /dev/mapper.";
+ description = "Name of the unencrypted device in /dev/mapper.";
};
device = mkOption {
- example = "/dev/sda2";
+ example = "/dev/disk/by-uuid/430e9eff-d852-4f68-aa3b-2fa3599ebe08";
type = types.str;
- description = "Path of the underlying block device.";
+ description = "Path of the underlying encrypted block device.";
};
header = mkOption {
@@ -289,6 +288,7 @@ in
'';
};
+ # FIXME: get rid of this option.
preLVM = mkOption {
default = true;
type = types.bool;
@@ -394,7 +394,7 @@ in
};
};
- };
+ }; };
};
boot.initrd.luks.yubikeySupport = mkOption {
@@ -408,7 +408,7 @@ in
};
};
- config = mkIf (luks.devices != []) {
+ config = mkIf (luks.devices != {}) {
# actually, sbp2 driver is the one enabling the DMA attack, but this needs to be tested
boot.blacklistedKernelModules = optionals luks.mitigateDMAAttacks
@@ -438,7 +438,7 @@ in
copy_bin_and_libs ${pkgs.ykpers}/bin/ykinfo
copy_bin_and_libs ${pkgs.openssl.bin}/bin/openssl
- cc -O3 -I${pkgs.openssl}/include -L${pkgs.openssl.out}/lib ${./pbkdf2-sha512.c} -o pbkdf2-sha512 -lcrypto
+ cc -O3 -I${pkgs.openssl.dev}/include -L${pkgs.openssl.out}/lib ${./pbkdf2-sha512.c} -o pbkdf2-sha512 -lcrypto
strip -s pbkdf2-sha512
copy_bin_and_libs pbkdf2-sha512
@@ -463,8 +463,8 @@ in
''}
'';
- boot.initrd.preLVMCommands = concatMapStrings openCommand preLVM;
- boot.initrd.postDeviceCommands = concatMapStrings openCommand postLVM;
+ boot.initrd.preLVMCommands = concatStrings (mapAttrsToList openCommand preLVM);
+ boot.initrd.postDeviceCommands = concatStrings (mapAttrsToList openCommand postLVM);
environment.systemPackages = [ pkgs.cryptsetup ];
};
diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix
index e7f89294531..076bbca850d 100644
--- a/nixos/modules/system/boot/systemd.nix
+++ b/nixos/modules/system/boot/systemd.nix
@@ -753,13 +753,6 @@ in
"TMPFS_XATTR" "SECCOMP"
];
- environment.shellAliases =
- { start = "systemctl start";
- stop = "systemctl stop";
- restart = "systemctl restart";
- status = "systemctl status";
- };
-
users.extraGroups.systemd-journal.gid = config.ids.gids.systemd-journal;
users.extraUsers.systemd-journal-gateway.uid = config.ids.uids.systemd-journal-gateway;
users.extraGroups.systemd-journal-gateway.gid = config.ids.gids.systemd-journal-gateway;
diff --git a/nixos/modules/tasks/cpu-freq.nix b/nixos/modules/tasks/cpu-freq.nix
index 70bbee8474e..1f4d1db33ce 100644
--- a/nixos/modules/tasks/cpu-freq.nix
+++ b/nixos/modules/tasks/cpu-freq.nix
@@ -38,7 +38,7 @@ in
description = "CPU Frequency Governor Setup";
after = [ "systemd-modules-load.service" ];
wantedBy = [ "multi-user.target" ];
- path = [ cpupower ];
+ path = [ cpupower config.system.sbin.modprobe ];
unitConfig.ConditionVirtualization = false;
serviceConfig = {
Type = "oneshot";
diff --git a/nixos/modules/testing/test-instrumentation.nix b/nixos/modules/testing/test-instrumentation.nix
index f0f56b17f20..e216351b434 100644
--- a/nixos/modules/testing/test-instrumentation.nix
+++ b/nixos/modules/testing/test-instrumentation.nix
@@ -113,6 +113,16 @@ let kernel = config.boot.kernelPackages.kernel; in
# Make it easy to log in as root when running the test interactively.
users.extraUsers.root.initialHashedPassword = mkOverride 150 "";
+ services.xserver.displayManager.logToJournal = true;
+
+ # Bump kdm's X server start timeout to account for heavily loaded
+ # VM host systems.
+ services.xserver.displayManager.kdm.extraConfig =
+ ''
+ [X-:*-Core]
+ ServerTimeout=240
+ '';
+
};
}
diff --git a/nixos/modules/virtualisation/amazon-image.nix b/nixos/modules/virtualisation/amazon-image.nix
index 5d99bccb0e9..9e8417cde1d 100644
--- a/nixos/modules/virtualisation/amazon-image.nix
+++ b/nixos/modules/virtualisation/amazon-image.nix
@@ -32,8 +32,8 @@ let cfg = config.ec2; in
# Generate a GRUB menu. Amazon's pv-grub uses this to boot our kernel/initrd.
boot.loader.grub.version = if cfg.hvm then 2 else 1;
boot.loader.grub.device = if cfg.hvm then "/dev/xvda" else "nodev";
- boot.loader.grub.timeout = 0;
boot.loader.grub.extraPerEntryConfig = mkIf (!cfg.hvm) "root (hd0)";
+ boot.loader.timeout = 0;
boot.initrd.postDeviceCommands =
''
diff --git a/nixos/modules/virtualisation/azure-common.nix b/nixos/modules/virtualisation/azure-common.nix
index eedf115ee15..70a3d752f6d 100644
--- a/nixos/modules/virtualisation/azure-common.nix
+++ b/nixos/modules/virtualisation/azure-common.nix
@@ -10,10 +10,10 @@ with lib;
boot.kernelParams = [ "console=ttyS0" "earlyprintk=ttyS0" "rootdelay=300" "panic=1" "boot.panic_on_fail" ];
boot.initrd.kernelModules = [ "hv_vmbus" "hv_netvsc" "hv_utils" "hv_storvsc" ];
- # Generate a GRUB menu.
+ # Generate a GRUB menu.
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.version = 2;
- boot.loader.grub.timeout = 0;
+ boot.loader.timeout = 0;
# Don't put old configurations in the GRUB menu. The user has no
# way to select them anyway.
diff --git a/nixos/modules/virtualisation/brightbox-image.nix b/nixos/modules/virtualisation/brightbox-image.nix
index bcafc06e47c..456a19fc251 100644
--- a/nixos/modules/virtualisation/brightbox-image.nix
+++ b/nixos/modules/virtualisation/brightbox-image.nix
@@ -94,7 +94,7 @@ in
# Generate a GRUB menu. Amazon's pv-grub uses this to boot our kernel/initrd.
boot.loader.grub.device = "/dev/vda";
- boot.loader.grub.timeout = 0;
+ boot.loader.timeout = 0;
# Don't put old configurations in the GRUB menu. The user has no
# way to select them anyway.
diff --git a/nixos/modules/virtualisation/containers.nix b/nixos/modules/virtualisation/containers.nix
index fca21a8610b..13ecb8e25ed 100644
--- a/nixos/modules/virtualisation/containers.nix
+++ b/nixos/modules/virtualisation/containers.nix
@@ -309,6 +309,10 @@ in
touch "$root/etc/os-release"
fi
+ if ! [ -e "$root/etc/machine-id" ]; then
+ touch "$root/etc/machine-id"
+ fi
+
mkdir -p -m 0755 \
"/nix/var/nix/profiles/per-container/$INSTANCE" \
"/nix/var/nix/gcroots/per-container/$INSTANCE"
@@ -338,7 +342,7 @@ in
fi
''}
-
+ rm -f $root/var/lib/private/host-notify
# Run systemd-nspawn without startup notification (we'll
# wait for the container systemd to signal readiness).
diff --git a/nixos/modules/virtualisation/google-compute-image.nix b/nixos/modules/virtualisation/google-compute-image.nix
index 38417315df5..2b522dbe266 100644
--- a/nixos/modules/virtualisation/google-compute-image.nix
+++ b/nixos/modules/virtualisation/google-compute-image.nix
@@ -102,7 +102,7 @@ in
# Generate a GRUB menu. Amazon's pv-grub uses this to boot our kernel/initrd.
boot.loader.grub.device = "/dev/sda";
- boot.loader.grub.timeout = 0;
+ boot.loader.timeout = 0;
# Don't put old configurations in the GRUB menu. The user has no
# way to select them anyway.
diff --git a/nixos/modules/virtualisation/nova-image.nix b/nixos/modules/virtualisation/nova-image.nix
index 13e36e7888b..7971212b47c 100644
--- a/nixos/modules/virtualisation/nova-image.nix
+++ b/nixos/modules/virtualisation/nova-image.nix
@@ -27,7 +27,7 @@ with lib;
boot.kernelParams = [ "console=ttyS0" ];
boot.loader.grub.device = "/dev/vda";
- boot.loader.grub.timeout = 0;
+ boot.loader.timeout = 0;
# Allow root logins
services.openssh.enable = true;
diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix
index 8aa64368755..9d9b725a805 100644
--- a/nixos/modules/virtualisation/qemu-vm.nix
+++ b/nixos/modules/virtualisation/qemu-vm.nix
@@ -465,7 +465,7 @@ in
});
swapDevices = mkVMOverride [ ];
- boot.initrd.luks.devices = mkVMOverride [];
+ boot.initrd.luks.devices = mkVMOverride {};
# Don't run ntpd in the guest. It should get the correct time from KVM.
services.ntp.enable = false;
diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix
index c8c4df5c913..f275291c716 100644
--- a/nixos/release-combined.nix
+++ b/nixos/release-combined.nix
@@ -69,6 +69,7 @@ in rec {
(all nixos.tests.boot.uefiUsb)
(all nixos.tests.boot-stage1)
(all nixos.tests.ipv6)
+ (all nixos.tests.i3wm)
(all nixos.tests.kde4)
#(all nixos.tests.lightdm)
(all nixos.tests.login)
diff --git a/nixos/tests/boot.nix b/nixos/tests/boot.nix
index af7db5aa816..3ea0df65c8b 100644
--- a/nixos/tests/boot.nix
+++ b/nixos/tests/boot.nix
@@ -12,7 +12,6 @@ let
modules =
[ ../modules/installer/cd-dvd/installation-cd-minimal.nix
../modules/testing/test-instrumentation.nix
- { key = "serial"; }
];
}).config.system.build.isoImage;
@@ -30,20 +29,25 @@ let
'';
};
in {
+
biosCdrom = makeBootTest "bios-cdrom" ''
cdrom => glob("${iso}/iso/*.iso")
'';
+
biosUsb = makeBootTest "bios-usb" ''
usb => glob("${iso}/iso/*.iso")
'';
+
uefiCdrom = makeBootTest "uefi-cdrom" ''
cdrom => glob("${iso}/iso/*.iso"),
bios => '${pkgs.OVMF}/FV/OVMF.fd'
'';
+
uefiUsb = makeBootTest "uefi-usb" ''
usb => glob("${iso}/iso/*.iso"),
bios => '${pkgs.OVMF}/FV/OVMF.fd'
'';
+
netboot = let
config = (import ../lib/eval-config.nix {
inherit system;
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index 0b0e53ee732..3fdf6510953 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -360,14 +360,8 @@ in {
"mount LABEL=boot /mnt/boot",
);
'';
- # XXX: Currently, generate-config doesn't detect LUKS yet.
extraConfig = ''
boot.kernelParams = lib.mkAfter [ "console=tty0" ];
- boot.initrd.luks.devices = lib.singleton {
- name = "cryptroot";
- device = "/dev/vda3";
- preLVM = true;
- };
'';
enableOCR = true;
preBootCommands = ''
@@ -403,8 +397,6 @@ in {
"mkdir /mnt/boot",
"mount LABEL=boot /mnt/boot",
"udevadm settle",
- "mdadm --verbose -W /dev/md0", # wait for sync to finish; booting off an unsynced device tends to fail
- "mdadm --verbose -W /dev/md1",
);
'';
preBootCommands = ''
diff --git a/nixos/tests/virtualbox.nix b/nixos/tests/virtualbox.nix
index da4c0bddc34..e9bc14a6cdb 100644
--- a/nixos/tests/virtualbox.nix
+++ b/nixos/tests/virtualbox.nix
@@ -11,7 +11,7 @@ let
#!${pkgs.stdenv.shell} -xe
export PATH="${pkgs.coreutils}/bin:${pkgs.utillinux}/bin"
- mkdir -p /etc/dbus-1 /var/run/dbus
+ mkdir -p /var/run/dbus
cat > /etc/passwd <succeed(ru "VirtualBox &");
- $machine->waitForWindow(qr/Oracle VM VirtualBox Manager/);
+ $machine->waitUntilSucceeds(
+ ru "xprop -name 'Oracle VM VirtualBox Manager'"
+ );
$machine->sleep(5);
$machine->screenshot("gui_manager_started");
$machine->sendKeys("ret");
diff --git a/pkgs/applications/audio/audacious/default.nix b/pkgs/applications/audio/audacious/default.nix
index 4046d839f7d..193b9c1e790 100644
--- a/pkgs/applications/audio/audacious/default.nix
+++ b/pkgs/applications/audio/audacious/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, pkgconfig, glib, gtk3, libmowgli, libmcs
, gettext, dbus_glib, libxml2, libmad, xorg, alsaLib, libogg
, libvorbis, libcdio, libcddb, flac, ffmpeg, makeWrapper
-, mpg123, neon, faad2
+, mpg123, neon, faad2, gnome3
}:
let version = "3.5.2"; in
@@ -22,7 +22,7 @@ stdenv.mkDerivation {
buildInputs =
[ gettext pkgconfig glib gtk3 libmowgli libmcs libxml2 dbus_glib
libmad xorg.libXcomposite libogg libvorbis flac alsaLib libcdio
- libcddb ffmpeg makeWrapper mpg123 neon faad2
+ libcddb ffmpeg makeWrapper mpg123 neon faad2 gnome3.defaultIconTheme
];
# Here we build bouth audacious and audacious-plugins in one
@@ -48,8 +48,11 @@ stdenv.mkDerivation {
(
source $stdenv/setup
# gsettings schemas for file dialogues
+ # XDG_ICON_DIRS is set by hook for gnome3.defaultIconTheme
for file in "$out/bin/"*; do
- wrapProgram "$file" --prefix XDG_DATA_DIRS : "$XDG_ADD:$GSETTINGS_SCHEMAS_PATH"
+ wrapProgram "$file" \
+ --prefix XDG_DATA_DIRS : "$XDG_ADD:$GSETTINGS_SCHEMAS_PATH" \
+ --suffix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
done
)
'';
diff --git a/pkgs/applications/audio/groovebasin/default.nix b/pkgs/applications/audio/groovebasin/default.nix
index 5a5f8c30da2..0bbf2baf105 100644
--- a/pkgs/applications/audio/groovebasin/default.nix
+++ b/pkgs/applications/audio/groovebasin/default.nix
@@ -1,9 +1,10 @@
-{ stdenv, fetchFromGitHub, makeWrapper, callPackage, libgroove, python, utillinux }:
+{ stdenv, fetchFromGitHub, makeWrapper, callPackage, libgroove, python, utillinux, nodejs }:
with stdenv.lib;
let
nodePackages = callPackage (import ../../../top-level/node-packages.nix) {
+ inherit nodejs;
neededNatives = [ libgroove python utillinux ];
self = nodePackages;
generated = ./package.nix;
diff --git a/pkgs/applications/audio/mp3splt/default.nix b/pkgs/applications/audio/mp3splt/default.nix
index 08d91498cc0..0fa9022f67b 100644
--- a/pkgs/applications/audio/mp3splt/default.nix
+++ b/pkgs/applications/audio/mp3splt/default.nix
@@ -1,20 +1,27 @@
-{ fetchurl, stdenv, libmp3splt, pkgconfig }:
+{ stdenv, fetchurl, pkgconfig, libmp3splt }:
stdenv.mkDerivation rec {
- name = "mp3splt-2.6.1";
+ pname = "mp3splt";
+ version = "2.6.2";
+ name = "${pname}-${version}";
+
src = fetchurl {
- url = "http://prdownloads.sourceforge.net/mp3splt/${name}.tar.gz";
- sha256 = "783a903fafbcf47f06673136a78b78d32a8e616a6ae06b79b459a32090dd14f7";
+ url = "mirror://sourceforge/${pname}/${name}.tar.gz";
+ sha256 = "1aiv20gypb6r84qabz8gblk8vi42cg3x333vk2pi3fyqvl82phry";
};
- buildInputs = [ libmp3splt pkgconfig ];
+ configureFlags = [ "--enable-oggsplt-symlink" "--enable-flacsplt-symlink" ];
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ libmp3splt ];
- meta = {
- description = "utility to split mp3, ogg vorbis and FLAC files without decoding";
+ outputs = [ "out" "man" ];
+
+ meta = with stdenv.lib; {
+ description = "Utility to split mp3, ogg vorbis and FLAC files without decoding";
homepage = http://sourceforge.net/projects/mp3splt/;
- license = stdenv.lib.licenses.gpl2;
- maintainers = [ stdenv.lib.maintainers.bosu ];
- platforms = stdenv.lib.platforms.unix;
+ license = licenses.gpl2;
+ maintainers = [ maintainers.bosu ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/applications/audio/pithos/default.nix b/pkgs/applications/audio/pithos/default.nix
index ac42fc71642..55b9435baaa 100644
--- a/pkgs/applications/audio/pithos/default.nix
+++ b/pkgs/applications/audio/pithos/default.nix
@@ -6,8 +6,6 @@ pythonPackages.buildPythonApplication rec {
version = "1.1.2";
name = "${pname}-${version}";
- namePrefix = "";
-
src = fetchFromGitHub {
owner = pname;
repo = pname;
@@ -15,6 +13,9 @@ pythonPackages.buildPythonApplication rec {
sha256 = "0zk9clfawsnwmgjbk7y5d526ksxd1pkh09ln6sb06v4ygaiifcxp";
};
+ # No tests in repo
+ doCheck = false;
+
postPatch = ''
substituteInPlace setup.py --replace "/usr/share" "$out/share"
'';
diff --git a/pkgs/applications/audio/QmidiNet/default.nix b/pkgs/applications/audio/qmidinet/default.nix
similarity index 100%
rename from pkgs/applications/audio/QmidiNet/default.nix
rename to pkgs/applications/audio/qmidinet/default.nix
diff --git a/pkgs/applications/audio/qmmp/default.nix b/pkgs/applications/audio/qmmp/default.nix
index 5bec7aa6dd0..d0d37fb15a1 100644
--- a/pkgs/applications/audio/qmmp/default.nix
+++ b/pkgs/applications/audio/qmmp/default.nix
@@ -28,11 +28,11 @@
# handle that.
stdenv.mkDerivation rec {
- name = "qmmp-0.8.4";
+ name = "qmmp-0.9.9";
src = fetchurl {
url = "http://qmmp.ylsoftware.com/files/${name}.tar.bz2";
- sha256 = "1ld69xypyak3lzwmfvzbxsyd4fl841aaq0gmkfa7jpavbdlggydf";
+ sha256 = "1wv4kbjq50xflhrl1jjf1hm3rrw599xkd72dwm4rscm0sdvzhnc1";
};
buildInputs =
diff --git a/pkgs/applications/display-managers/slim/default.nix b/pkgs/applications/display-managers/slim/default.nix
index c7710262988..fca84199e51 100644
--- a/pkgs/applications/display-managers/slim/default.nix
+++ b/pkgs/applications/display-managers/slim/default.nix
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
cmakeFlags = [ "-DUSE_PAM=1" ];
- NIX_CFLAGS_COMPILE = "-I${freetype}/include/freetype -std=c++11";
+ NIX_CFLAGS_COMPILE = "-I${freetype.dev}/include/freetype -std=c++11";
enableParallelBuilding = true;
diff --git a/pkgs/applications/editors/emacs-25/default.nix b/pkgs/applications/editors/emacs-25/default.nix
index e591a48781a..47e6a3eb76a 100644
--- a/pkgs/applications/editors/emacs-25/default.nix
+++ b/pkgs/applications/editors/emacs-25/default.nix
@@ -64,7 +64,7 @@ stdenv.mkDerivation rec {
"--with-gif=no" "--with-tiff=no" ];
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (stdenv.isDarwin && withX)
- "-I${cairo}/include/cairo";
+ "-I${cairo.dev}/include/cairo";
preBuild = ''
find . -name '*.elc' -delete
diff --git a/pkgs/applications/editors/emacs-modes/elpa-generated.nix b/pkgs/applications/editors/emacs-modes/elpa-generated.nix
index 15b20cd6c03..8f829b8fdf7 100644
--- a/pkgs/applications/editors/emacs-modes/elpa-generated.nix
+++ b/pkgs/applications/editors/emacs-modes/elpa-generated.nix
@@ -81,10 +81,10 @@
aggressive-indent = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "aggressive-indent";
- version = "1.7";
+ version = "1.8.1";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/aggressive-indent-1.7.el";
- sha256 = "0z2zsw0qnzcabsz2frfsjhfg7qa4nbmprrd41yjfxq62d12wg70m";
+ url = "https://elpa.gnu.org/packages/aggressive-indent-1.8.1.el";
+ sha256 = "07d311dwg6rpzydh9bw9dn1djf4x4f00ma41jmsl35mcd2m0bpz8";
};
packageRequires = [ cl-lib emacs ];
meta = {
@@ -95,10 +95,10 @@
ahungry-theme = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "ahungry-theme";
- version = "1.1.0";
+ version = "1.2.0";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/ahungry-theme-1.1.0.tar";
- sha256 = "1jy2h4r72fr26yavs0s8dy1xnkxvaf2hsrlm63f6sng81njj9dgx";
+ url = "https://elpa.gnu.org/packages/ahungry-theme-1.2.0.tar";
+ sha256 = "04z9d8xszgsl6p02gf3yixgj8kwwb6rfc6bq1b3sz95n3v9wmg9d";
};
packageRequires = [ emacs ];
meta = {
@@ -162,10 +162,10 @@
}) {};
async = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild {
pname = "async";
- version = "1.6";
+ version = "1.9";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/async-1.6.tar";
- sha256 = "17psvz75n42x33my967wkgi7r0blx46n3jdv510j0z5jswv66039";
+ url = "https://elpa.gnu.org/packages/async-1.9.tar";
+ sha256 = "1ip5nc8xyln5szvqwp6wqva9xr84pn8ssn3nnphrszr19y4js2bm";
};
packageRequires = [];
meta = {
@@ -566,10 +566,10 @@
}) {};
el-search = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild {
pname = "el-search";
- version = "0.1.3";
+ version = "0.2";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/el-search-0.1.3.el";
- sha256 = "1iwglpzs78zy07k3ijbwgv9781bs5cpf088giyz6bn5amfpp1jks";
+ url = "https://elpa.gnu.org/packages/el-search-0.2.el";
+ sha256 = "1ps4p79xrvsdys9yh1wyk4zdly6c55agbqa6f8q3xkwc9sva9lw9";
};
packageRequires = [ emacs ];
meta = {
@@ -850,8 +850,8 @@
pname = "javaimp";
version = "0.6";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/javaimp-0.6.el";
- sha256 = "00a37jv9wbzy521a15vk7a66rsf463zzr57adc8ii2m4kcyldpqh";
+ url = "https://elpa.gnu.org/packages/javaimp-0.6.tar";
+ sha256 = "015kchx6brsjk7q6lz9y44a18n5imapd95czx50hqdscjczmj2ff";
};
packageRequires = [];
meta = {
@@ -1505,6 +1505,19 @@
license = lib.licenses.free;
};
}) {};
+ smart-yank = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild {
+ pname = "smart-yank";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://elpa.gnu.org/packages/smart-yank-0.1.1.el";
+ sha256 = "1v7hbn8pl4bzal31m132dn04rgsgjjcc7k2knd1jqzk1wq6azpdn";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://elpa.gnu.org/packages/smart-yank.html";
+ license = lib.licenses.free;
+ };
+ }) {};
sml-mode = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild {
pname = "sml-mode";
version = "6.7";
@@ -1905,10 +1918,10 @@
xelb = callPackage ({ cl-generic, elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "xelb";
- version = "0.6";
+ version = "0.7";
src = fetchurl {
- url = "https://elpa.gnu.org/packages/xelb-0.6.tar";
- sha256 = "1m91af5srxq8zs9w4gb44kl4bgka8fq7k33h7f2yn213h23kvvvh";
+ url = "https://elpa.gnu.org/packages/xelb-0.7.tar";
+ sha256 = "0i4336a8xns6zp82dj77w5gjgv3mfngcjsw7ghyf7bb7flh8ipw1";
};
packageRequires = [ cl-generic emacs ];
meta = {
diff --git a/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix b/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix
index 850041ccfc7..b4fb8d1937d 100644
--- a/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix
+++ b/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix
@@ -19,11 +19,11 @@ stdenv.mkDerivation rec {
patchPhase = ''
sed -i "w3m.el" \
-e 's|defcustom w3m-command nil|defcustom w3m-command "${w3m}/bin/w3m"|g ;
- s|(w3m-which-command "display")|"${imagemagick}/bin/display"|g'
+ s|(w3m-which-command "display")|"${imagemagick.out}/bin/display"|g'
sed -i "w3m-image.el" \
- -e 's|(w3m-which-command "convert")|"${imagemagick}/bin/convert"|g ;
- s|(w3m-which-command "identify")|"${imagemagick}/bin/identify"|g'
+ -e 's|(w3m-which-command "convert")|"${imagemagick.out}/bin/convert"|g ;
+ s|(w3m-which-command "identify")|"${imagemagick.out}/bin/identify"|g'
'';
configureFlags = [
diff --git a/pkgs/applications/editors/emacs-modes/melpa-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-generated.nix
index 3b78ff4d9eb..363f4ecc827 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-generated.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-generated.nix
@@ -10,7 +10,7 @@
sha256 = "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/0blayout";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/0blayout";
sha256 = "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92";
name = "_0blayout";
};
@@ -30,7 +30,7 @@
sha256 = "1p9qn9n8mfb4z62h1s94mlg0vshpzafbhsxgzvx78sqlf6bfc80l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/2048-game";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/2048-game";
sha256 = "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0";
name = "_2048-game";
};
@@ -51,7 +51,7 @@
sha256 = "1fybicg46fc5jjqv7g2d3dnj1x9n58m2fg9x6qxn9l8qlzk9yxkq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/4clojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/4clojure";
sha256 = "09bmdxkkp676sn1sbbly44k99i47w83yznq950nkxv6x8753ifgk";
name = "_4clojure";
};
@@ -72,7 +72,7 @@
sha256 = "0d7q0fhcw4cvy9140hwxp8zdh0g37zhfsq6kmsdngxdx7lw3wryi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aa-edit-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aa-edit-mode";
sha256 = "00b99ik04xx4b2a1cm1z8dl42hjnb5r32qypjyyx8924n1dhxzgn";
name = "aa-edit-mode";
};
@@ -93,7 +93,7 @@
sha256 = "1h4gwp2gyd4jhbkb8ai1zbzhhmlhmihbwzr0wsxg5yq074n72ifs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/abc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/abc-mode";
sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx";
name = "abc-mode";
};
@@ -114,7 +114,7 @@
sha256 = "09hy7rj27h7xbvasd87146di4vhpg5cmqc9f39fy0ihmv9gy56za";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/abl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/abl-mode";
sha256 = "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb";
name = "abl-mode";
};
@@ -135,7 +135,7 @@
sha256 = "1yr6cqycd7ljkqzfp4prz9ilcpjq8wxg5yf645m24gy9v4w365ia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/abyss-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/abyss-theme";
sha256 = "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c";
name = "abyss-theme";
};
@@ -156,7 +156,7 @@
sha256 = "19msfx3f3px1maj41bzh139s6sv2pjk9vm3bphn7758fqhzyin0f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-alchemist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-alchemist";
sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0";
name = "ac-alchemist";
};
@@ -177,7 +177,7 @@
sha256 = "092m8y38h4irh2ig6n6510gw2scjjxah37zim6mk92jzn1xv06d0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-anaconda";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-anaconda";
sha256 = "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf";
name = "ac-anaconda";
};
@@ -198,7 +198,7 @@
sha256 = "1z6rj15p5gjv0jwnnck8789n9csf1pwxfvsz37graihgfy2khj0y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-c-headers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-c-headers";
sha256 = "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv";
name = "ac-c-headers";
};
@@ -219,7 +219,7 @@
sha256 = "1llpnb9vy612sg214i76rxnzcl3qx8pqnixczc5pik9kd3fdaz5f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-cake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-cake";
sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl";
name = "ac-cake";
};
@@ -240,7 +240,7 @@
sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-cake2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-cake2";
sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy";
name = "ac-cake2";
};
@@ -261,7 +261,7 @@
sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-capf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-capf";
sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm";
name = "ac-capf";
};
@@ -282,7 +282,7 @@
sha256 = "0j8bbliijycnvpqbl1x3a0nbixhr57czfch2s8phn7v3zzdr8k3h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-cider";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-cider";
sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6";
name = "ac-cider";
};
@@ -303,7 +303,7 @@
sha256 = "0n9zagwh3rz7b76irj4ya8wskffns9v1c1pivsdqgpd76spvl7n5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-clang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-clang";
sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4";
name = "ac-clang";
};
@@ -321,7 +321,7 @@
sha256 = "0q0lbhdng5s5hqa342yyvg02hf2bfbwq513lj1rlaqz4ykvpd7fh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-dabbrev";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-dabbrev";
sha256 = "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh";
name = "ac-dabbrev";
};
@@ -342,7 +342,7 @@
sha256 = "1hlijh415wgl450ry16a1072jjrkqqqkk862hfhswfr2l6rjfw98";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-dcd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-dcd";
sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r";
name = "ac-dcd";
};
@@ -363,7 +363,7 @@
sha256 = "1lkhqmfkjga7qi4r1m7mjax3pyf9m6minsn57cbzm2z2kvkhq22g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-emmet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-emmet";
sha256 = "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x";
name = "ac-emmet";
};
@@ -384,7 +384,7 @@
sha256 = "19981mzxnqqdb8dsdizy2i8byb8sx9138x3nrvi6ap2qbcsabjmz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-emoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-emoji";
sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw";
name = "ac-emoji";
};
@@ -405,7 +405,7 @@
sha256 = "140i02b2ipyfmki945l1xd1nsqdpganhmi3bmwj1h9w8cg078bd4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-etags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-etags";
sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb";
name = "ac-etags";
};
@@ -426,7 +426,7 @@
sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-geiser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-geiser";
sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx";
name = "ac-geiser";
};
@@ -447,7 +447,7 @@
sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-haskell-process";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-haskell-process";
sha256 = "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw";
name = "ac-haskell-process";
};
@@ -468,7 +468,7 @@
sha256 = "1fyikdwn0gzng7pbmfg7zb7jphjv228776vsjc12j7g1aqz92n4l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-helm";
sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq";
name = "ac-helm";
};
@@ -489,7 +489,7 @@
sha256 = "1sip87j4wvlf9pfnpr0zyyhys1dd9smh6hy3zs08ihbdh98krgs5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-html";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-html";
sha256 = "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa";
name = "ac-html";
};
@@ -510,7 +510,7 @@
sha256 = "1v3ia439h4n2i204n0sazzbwwm0l5k6j31gq58iv2rqrq2ysikny";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-html-angular";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-html-angular";
sha256 = "05rbxf5kbr4jlskrhvfvhf82qvb55zl5cb6z1ymfh9l3h9j9xk3s";
name = "ac-html-angular";
};
@@ -531,7 +531,7 @@
sha256 = "0ry398awbsyswc87v275x4mdyv64kr0s647y6nagqg1h3n3jhvsq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-html-bootstrap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-html-bootstrap";
sha256 = "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1";
name = "ac-html-bootstrap";
};
@@ -552,7 +552,7 @@
sha256 = "0swbw62zh5rjjf73pvmp8brrrmk6bp061k793z4z83v7ic0cicrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-html-csswatcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-html-csswatcher";
sha256 = "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn";
name = "ac-html-csswatcher";
};
@@ -573,7 +573,7 @@
sha256 = "0xdqk0qr1mmm5q3049ldwlmrcfgz6rzk4yxc8qgz6kll27kciia0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-inf-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-inf-ruby";
sha256 = "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr";
name = "ac-inf-ruby";
};
@@ -594,7 +594,7 @@
sha256 = "1cq73bdv3lkn8v3nx6aznygqaac9s5i7pvirl8wz9ib31hsgwpbk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-ispell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-ispell";
sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67";
name = "ac-ispell";
};
@@ -615,7 +615,7 @@
sha256 = "0yn9333rjs2pzb1wk1japclsqagdcl28j0yjl3q5b70g5gi5vx7k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-js2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-js2";
sha256 = "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa";
name = "ac-js2";
};
@@ -636,7 +636,7 @@
sha256 = "0p5cdaw9v8jgnmjqpb95bxy4khwbdgg19wzg8jkr2j2p55dpfbd6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-math";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-math";
sha256 = "02c821zabxp9qkwx252pxjmssdbmas0iwanw09r03bmiby9d4nsl";
name = "ac-math";
};
@@ -657,7 +657,7 @@
sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-mozc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-mozc";
sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f";
name = "ac-mozc";
};
@@ -678,7 +678,7 @@
sha256 = "16bg2zg08223x7q54rmfjziaccgm64h9vc8z59sjljkw1bgx9m7q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-octave";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-octave";
sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z";
name = "ac-octave";
};
@@ -699,7 +699,7 @@
sha256 = "14krd0n21cls2lbbhcq0zmwjwizyapfmzngmcckrizzjlxq0zjzi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-php";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-php";
sha256 = "1dlz4cv54ynl4ql5l2sa5lazlzq6rrlbz61k20l5lcljjwvj5xja";
name = "ac-php";
};
@@ -722,15 +722,15 @@
ac-racer = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, racer }:
melpaBuild {
pname = "ac-racer";
- version = "20150831.441";
+ version = "20160518.120";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-ac-racer";
- rev = "2708b0a49afc89fb99a6d74a016cff6b94138ed0";
- sha256 = "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl";
+ rev = "eef0de84bd61136d2ed46da08537c9a89da8bd57";
+ sha256 = "0p0220axf7c0ga4bkd8d2lcwdgwz08xqglw56lnwzdlksgqhsgyf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-racer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-racer";
sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp";
name = "ac-racer";
};
@@ -751,7 +751,7 @@
sha256 = "1nvz0jfz4x99xc5ywspl8fdpyqns5zd0j7i4bwzlwplmy3qakjwm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-skk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-skk";
sha256 = "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z";
name = "ac-skk";
};
@@ -772,7 +772,7 @@
sha256 = "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-slime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-slime";
sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg";
name = "ac-slime";
};
@@ -793,7 +793,7 @@
sha256 = "0mif35chyj4ai1bj4gq8qi38dyfsp72yi1xchhzy9zi2plpvqa7a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-sly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-sly";
sha256 = "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx";
name = "ac-sly";
};
@@ -814,7 +814,7 @@
sha256 = "1msj0dbzfan0jax5wh5rmv4l7cp5zhrp5wy5k1n9s7xdgz2dprzj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-flyspell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-flyspell";
sha256 = "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd";
name = "ace-flyspell";
};
@@ -835,7 +835,7 @@
sha256 = "02i3gxk7kfv3a0pcc82z69hgvjw8bvn40y8h7d59chg8bixcwbyr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-isearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-isearch";
sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm";
name = "ace-isearch";
};
@@ -856,7 +856,7 @@
sha256 = "1y2rl4faj1nfjqbh393yp460cbv24simllak31ag1ischpcbqjy4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-jump-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-buffer";
sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi";
name = "ace-jump-buffer";
};
@@ -877,7 +877,7 @@
sha256 = "1d4bxxcnjbdr6cjr3jmz2zrnzjv5pwrypbp4xqgqyv9rz02n7ac1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-jump-helm-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-helm-line";
sha256 = "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9";
name = "ace-jump-helm-line";
};
@@ -898,7 +898,7 @@
sha256 = "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-jump-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-mode";
sha256 = "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6";
name = "ace-jump-mode";
};
@@ -919,7 +919,7 @@
sha256 = "0z0rblr41r94l4b2gh9fcw50nk82ifxrr3ilxqzbb8wmvil54gh4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-jump-zap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-zap";
sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb";
name = "ace-jump-zap";
};
@@ -940,7 +940,7 @@
sha256 = "0qcj6farhin29q359v9yrzvs2vxda1dk4xdai57bda81bf2fha3a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-link";
sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5";
name = "ace-link";
};
@@ -961,7 +961,7 @@
sha256 = "1zgmqgh5dff914dw7i8s142znd849gv4xh86f8q8agx5r7almx14";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-mc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-mc";
sha256 = "1kca6ha2glhv7lkamqx3sxp7dy05c7f6xxy3lr3v2bik8r50jss8";
name = "ace-mc";
};
@@ -982,7 +982,7 @@
sha256 = "0q91f52v57qgfn245z3xsskqj9p9lpmxpj3py0vcx8r9br0ykagq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-pinyin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/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 = "20160126.731";
+ version = "20160522.819";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "ace-popup-menu";
- rev = "3e771b470b0c633d7633dceec054fc05beac81f0";
- sha256 = "1qiiivkwa95bhyym8ly7fnwwglc9dcifkyr314bsq8m4rp1mgry4";
+ rev = "ada7b1d006cd6e73fe2642bbbe5bbfc47d80d25c";
+ sha256 = "07bbcbzxnbxmddkhkm7ykxsdxp0c6yysnfanh90q34h1f009hrca";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-popup-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-popup-menu";
sha256 = "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s";
name = "ace-popup-menu";
};
@@ -1024,7 +1024,7 @@
sha256 = "1afc0f8ax334gv644zdrrp55754gxa353iijvmfzxmlr67v23j96";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-window";
sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa";
name = "ace-window";
};
@@ -1044,7 +1044,7 @@
sha256 = "0zjncby2884cv8nz2ss7i0p17l15lsk88zwvb7b0gr3apbfpcpa3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/achievements";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/achievements";
sha256 = "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr";
name = "achievements";
};
@@ -1065,7 +1065,7 @@
sha256 = "02ba4d8qkvgy52g0zcbyfvsnhr9685gq569nkwa2as30xdcq3khm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ack-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ack-menu";
sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9";
name = "ack-menu";
};
@@ -1086,7 +1086,7 @@
sha256 = "1rxx2j7kkzjdsk06zgisiydg8dc18vqll4wl6q9mfhrg2y12lq94";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/actionscript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/actionscript-mode";
sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq";
name = "actionscript-mode";
};
@@ -1107,7 +1107,7 @@
sha256 = "0dk7hyp7cs0ws4w7i32g7di5aqkkxlxkvmrllg43bi5ivlji7pvn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/addressbook-bookmark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/addressbook-bookmark";
sha256 = "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r";
name = "addressbook-bookmark";
};
@@ -1128,7 +1128,7 @@
sha256 = "199da15f6p84809z33w3m35lrk9bgx8qpgnxsxgisli373mpzvd8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/adoc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/adoc-mode";
sha256 = "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15";
name = "adoc-mode";
};
@@ -1149,7 +1149,7 @@
sha256 = "1p90yv2xl1hhpjm0mmhdjyf1jagf79610hkzhw8nycy2p1y4gvl6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aes";
sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v";
name = "aes";
};
@@ -1170,7 +1170,7 @@
sha256 = "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/afternoon-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/afternoon-theme";
sha256 = "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj";
name = "afternoon-theme";
};
@@ -1191,7 +1191,7 @@
sha256 = "1hwjd1ln99595xwakynhgr3azs4h8rziy75kfz8k5b7i3hns7z08";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ag";
sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g";
name = "ag";
};
@@ -1212,7 +1212,7 @@
sha256 = "05lci7hpla4f0z124zr58aj282pgmabqkzgcqadf0hbnqbz2jwcs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aggressive-fill-paragraph";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aggressive-fill-paragraph";
sha256 = "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja";
name = "aggressive-fill-paragraph";
};
@@ -1225,15 +1225,15 @@
aggressive-indent = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "aggressive-indent";
- version = "20160501.2211";
+ version = "20160518.1914";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "aggressive-indent-mode";
- rev = "c0a1e24ef39e2b0f388135c2ed8f8b419346337c";
- sha256 = "0wm8qp8d961ic1jr7g29m3vk807rq2xgi7zbk31b82ghakdvdy3j";
+ rev = "e49252fcb56982fd9b1d215d5477c80fc2a98ec9";
+ sha256 = "1mymm68126nhv7fss1vlkyy20qw7f2mdsz2cskcjiv1crzpvkz4i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aggressive-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aggressive-indent";
sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2";
name = "aggressive-indent";
};
@@ -1252,7 +1252,7 @@
sha256 = "0w5wqanw2spxxhmlxgxyp4rb9i1y6kqhfb8cyv5fz01i8b8p5faw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ahg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ahg";
sha256 = "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4";
name = "ahg";
};
@@ -1273,7 +1273,7 @@
sha256 = "07qpwa990bgs9028rqqk344c3z4hnr1jkfzcx9fi4z5k756zmw3b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ahk-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ahk-mode";
sha256 = "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni";
name = "ahk-mode";
};
@@ -1286,15 +1286,15 @@
ahungry-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ahungry-theme";
- version = "20160208.2332";
+ version = "20160516.2358";
src = fetchFromGitHub {
owner = "ahungry";
repo = "color-theme-ahungry";
- rev = "1ce5a659e968af25122b46a3fc3b04b30b5ebdd5";
- sha256 = "1436i7vdzaqykimfrm2y1s3dw2q398dzv1hyr9mr5z4kxa5f0rjj";
+ rev = "f4163526c6f603b9dea1d8a3253d31c135fd8876";
+ sha256 = "0y17ilvpqivzrd1hvdwi6w0j5bb2d87v54c54ibnf92aryndvyqy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ahungry-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ahungry-theme";
sha256 = "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy";
name = "ahungry-theme";
};
@@ -1315,7 +1315,7 @@
sha256 = "0blrpqn8wy9pwzikgzb0v6x4hk7axv93j4byfci62fh1905zfkkb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/airline-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/airline-themes";
sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih";
name = "airline-themes";
};
@@ -1336,7 +1336,7 @@
sha256 = "1lxpfswp1bjrz192px79f155dycf2kazpr7dfrcr1gyshlgxkpf7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/airplay";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/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 = "20160427.357";
+ version = "20160519.1424";
src = fetchFromGitHub {
owner = "tonini";
repo = "alchemist.el";
- rev = "f61cb55616e8441f23f07dbf70bd74e4f89178b2";
- sha256 = "02399ggk8yihddak0dycgdaq0my1xp5dk0w8h40gl4fyxapxhcws";
+ rev = "561e9e17901215b214453d96e9a433a31395cac7";
+ sha256 = "1i0xgiq3d8nffpb6ai6ijhl4qinzbgh547c40g4yh03jyn6sq9c6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/alchemist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alchemist";
sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369";
name = "alchemist";
};
@@ -1378,7 +1378,7 @@
sha256 = "1bzw713rvih6p2h7c6vw6iyjyiqrrgwr46p5r0l57zklj279m37r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/alda-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alda-mode";
sha256 = "0vpxiw3k0qxp6s19n93qkkyrr44rbw38ygriqdrfpp84pa09wprh";
name = "alda-mode";
};
@@ -1399,7 +1399,7 @@
sha256 = "1g9fai2i8izswiih4ba0l2wamhfl6pvmkq7is8x0wr45waldcga9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/alect-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alect-themes";
sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8";
name = "alect-themes";
};
@@ -1420,7 +1420,7 @@
sha256 = "1p6969wq2n26jvbh8p2gwc0hw38h4xq4rs299i7yzviq2hwvg8r1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alert";
sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118";
name = "alert";
};
@@ -1441,7 +1441,7 @@
sha256 = "0l2rgs0rd4nmv4v7m10zhf2znzfvdifv1vlhpa3zbppg0fj8zph1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/align-cljlet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/align-cljlet";
sha256 = "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih";
name = "align-cljlet";
};
@@ -1462,7 +1462,7 @@
sha256 = "0xxdy53ln0x61zxlc9l941qwjszva1f0nakwzblqnx49pm8z591r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/all-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/all-ext";
sha256 = "0vmpa5p7likg2xgck18sa0jvmvnhjs9v1fbl82sxx7qy2f3cggql";
name = "all-ext";
};
@@ -1483,7 +1483,7 @@
sha256 = "090qmjg3jf7m0cvx5pi5fmrkjfanwg60wiimcli7kq4gxpjvzwp9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/amd-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/amd-mode";
sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06";
name = "amd-mode";
};
@@ -1513,7 +1513,7 @@
sha256 = "17kdv4447dyjaz2chi1f8hlrry8pgvjgxivvk48r9yzi1crjd1zj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ample-regexps";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ample-regexps";
sha256 = "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2";
name = "ample-regexps";
};
@@ -1534,7 +1534,7 @@
sha256 = "0x72czw5rmz89w5fa27z54bz8qirrr882g0r37pb8li04j1hk7kw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ample-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ample-theme";
sha256 = "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry";
name = "ample-theme";
};
@@ -1555,7 +1555,7 @@
sha256 = "18z9jl5d19a132k6g1dvwqfbbdh5cx66b2qxlcjsfiqxlxglc2sa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ample-zen-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ample-zen-theme";
sha256 = "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3";
name = "ample-zen-theme";
};
@@ -1576,7 +1576,7 @@
sha256 = "0p51c8vvm8j11bzf8a64xvmpvbajs0r72m34x80zgcfkg4wij8b6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anaconda-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anaconda-mode";
sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r";
name = "anaconda-mode";
};
@@ -1597,7 +1597,7 @@
sha256 = "1ym43y0wqifkzpkm7ayf8cq2wz8pc2wgg9zvdyi0cn9lr9mwpbav";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anaphora";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anaphora";
sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2";
name = "anaphora";
};
@@ -1616,7 +1616,7 @@
sha256 = "1hklypbp79pgaf1yklbm3qx4skm3xlml0cm1r9b9js3dbqyha651";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anchored-transpose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anchored-transpose";
sha256 = "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w";
name = "anchored-transpose";
};
@@ -1637,7 +1637,7 @@
sha256 = "1cg35nb4hhibsk9d6daszs2khadqb3gzyzaxjsykxsgmpfh27ikv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/android-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/android-mode";
sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc";
name = "android-mode";
};
@@ -1658,7 +1658,7 @@
sha256 = "1m0c7ns7aiycg86cgglir8bkw730fslyg1n15m9ki0da4cnmm97a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/angry-police-captain";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/angry-police-captain";
sha256 = "00r3dx33h0wjxj0687ln8nbl1ff2badm3mk3r3bplfrd61z2qzld";
name = "angry-police-captain";
};
@@ -1679,7 +1679,7 @@
sha256 = "04kg2x0lif91knmkkh05mj42xw3dkzsnysjda6ian95v57wfg377";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/angular-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/angular-mode";
sha256 = "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i";
name = "angular-mode";
};
@@ -1700,7 +1700,7 @@
sha256 = "0hdm1a323mzxjfdply8ri3addk146f21d8cmpd18r7dw3j3cdfrn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/angular-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/angular-snippets";
sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c";
name = "angular-snippets";
};
@@ -1721,7 +1721,7 @@
sha256 = "08gs96r9mbdg0s5l504yp6i5nmi9qr4nwxq3xprsbx9bdzv5l2dx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/annotate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/annotate";
sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy";
name = "annotate";
};
@@ -1731,6 +1731,27 @@
license = lib.licenses.free;
};
}) {};
+ annotate-depth = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "annotate-depth";
+ version = "20160520.1640";
+ src = fetchFromGitHub {
+ owner = "netromdk";
+ repo = "annotate-depth";
+ rev = "fcb24fa36287250e40d195590c4ca4a8a696277b";
+ sha256 = "18cav5wl3d0yq15273rqmdwvrgw96lmqiq9x5fxhf3wjb543mifl";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/annotate-depth";
+ sha256 = "1j1pwnj7k6gl1p4npxsgrib0j1rzisq40pkm2wchjh86j3ybv2l4";
+ name = "annotate-depth";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/annotate-depth";
+ license = lib.licenses.free;
+ };
+ }) {};
annoying-arrows-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "annoying-arrows-mode";
@@ -1742,7 +1763,7 @@
sha256 = "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/annoying-arrows-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/annoying-arrows-mode";
sha256 = "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7";
name = "annoying-arrows-mode";
};
@@ -1763,7 +1784,7 @@
sha256 = "19k71dj83kvc8mks6zhl45vsrsb61via53dqxjv9bny1ybh2av85";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ansi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ansi";
sha256 = "0b5xnv6z471jm53g37njxin6l8yflsgm80y4wxahfgy8apipcq89";
name = "ansi";
};
@@ -1784,7 +1805,7 @@
sha256 = "0k927pwhmn1cfl6jqs7ww1g6f64nq5i8f6a732d4q2rbl3aqzbdi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ansible";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ansible";
sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g";
name = "ansible";
};
@@ -1805,7 +1826,7 @@
sha256 = "1h3rqrjrl8wx7xvvd631jkbbczq3srd4mgz7y9wh3cvz1njdpy62";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ansible-doc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ansible-doc";
sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w";
name = "ansible-doc";
};
@@ -1826,7 +1847,7 @@
sha256 = "0jb5vl3cq5m3r23fjhcxgxl4g011zkjkkyn5mqqxx22a1sydsvab";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ant";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ant";
sha256 = "06028xjic14yv3rfqyc3k6jyjgm6fqfrf1mv8lvbh2sri2d5ifqa";
name = "ant";
};
@@ -1847,7 +1868,7 @@
sha256 = "06xa29hq2qgg8hx1igj5hq7c16yj674mlnd3sgj40pwk88j5jp88";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anti-zenburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anti-zenburn-theme";
sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk";
name = "anti-zenburn-theme";
};
@@ -1868,7 +1889,7 @@
sha256 = "0fzxzar8m9qznfxv3wr7vfj9y2110wf6mm5cj55k3sd5djdjhmf1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anx-api";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anx-api";
sha256 = "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r";
name = "anx-api";
};
@@ -1889,7 +1910,7 @@
sha256 = "0qy5q4rq68nb21k7w3xpil8k8k5awcpjrjlxjwnhcklwb83w3dhf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anybar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anybar";
sha256 = "0prnr8wjhishpf2zmn4b7054vfahk10w05nzsg2p6whaxywcachm";
name = "anybar";
};
@@ -1910,7 +1931,7 @@
sha256 = "05lq0bllgn44zs85mgnfdcyjasm6j8m70jdcxksf798i0qdqnk7n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anyins";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anyins";
sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c";
name = "anyins";
};
@@ -1930,7 +1951,7 @@
sha256 = "0sc64kmykfkcxfs4zd4anxvvdiiyajd9vz9byb7a8ncyc22fs3g9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anything";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything";
sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj";
name = "anything";
};
@@ -1951,7 +1972,7 @@
sha256 = "0dbf510gcd0m191samih0r4lx6d7sgk0ls0sx2jrdkyacy82ridy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anything-exuberant-ctags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-exuberant-ctags";
sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk";
name = "anything-exuberant-ctags";
};
@@ -1972,7 +1993,7 @@
sha256 = "0gj0p7420wx5c186kdccjb9icn656sg5b0zwnwy3fjvhsbbvrb2r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anything-git-files";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-git-files";
sha256 = "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw";
name = "anything-git-files";
};
@@ -1993,7 +2014,7 @@
sha256 = "06fyvk7cjz1aag6fj52qraqmr23b0fqwml41yyid8gjxl4ygmkpv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anything-git-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-git-grep";
sha256 = "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl";
name = "anything-git-grep";
};
@@ -2014,7 +2035,7 @@
sha256 = "1jw6gqwcl3fx1m7w0a15w2pnzzlqyr1fbg0m81ay358s4w3jn6v7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anything-milkode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-milkode";
sha256 = "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan";
name = "anything-milkode";
};
@@ -2035,7 +2056,7 @@
sha256 = "16a7i01q8qqkgph1s3jnwdr2arjq3cm3jpv5bk5sqs29c003q0pp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anything-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-project";
sha256 = "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr";
name = "anything-project";
};
@@ -2056,7 +2077,7 @@
sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anything-prosjekt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-prosjekt";
sha256 = "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8";
name = "anything-prosjekt";
};
@@ -2077,7 +2098,7 @@
sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anything-replace-string";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-replace-string";
sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71";
name = "anything-replace-string";
};
@@ -2098,7 +2119,7 @@
sha256 = "08xr6fkk1r4r5jqh349d4dfal9nbs2a8y2fp8zn3zlrj2cd0g80k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anything-sage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-sage";
sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3";
name = "anything-sage";
};
@@ -2119,7 +2140,7 @@
sha256 = "1l0frc62i542avx8mmirdbwp6x3iy2ysdpwycpradmx4hsriin2c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anzu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anzu";
sha256 = "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i";
name = "anzu";
};
@@ -2137,7 +2158,7 @@
sha256 = "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aok";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aok";
sha256 = "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46";
name = "aok";
};
@@ -2158,7 +2179,7 @@
sha256 = "0528z3axjmplg2fdbv4jxgy1p39vr4rnsm4a3ps2fanf8bwsyx3l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aozora-view";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aozora-view";
sha256 = "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w";
name = "aozora-view";
};
@@ -2176,7 +2197,7 @@
sha256 = "1jndhcjvj6s1clmyyphl5ss5267c7b5a58fz8gbp1ffk1d9ylfik";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/apache-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apache-mode";
sha256 = "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44";
name = "apache-mode";
};
@@ -2197,7 +2218,7 @@
sha256 = "1aywxk77vfgr1mk7j4pygy9hl4q7lbbx4iik1rs9frkmw6sb8qni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/apel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apel";
sha256 = "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y";
name = "apel";
};
@@ -2218,7 +2239,7 @@
sha256 = "0br0jl6xnajdx37s5cvs13srn9lldg58y9587a11s3s651xjdq0z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/apples-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apples-mode";
sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s";
name = "apples-mode";
};
@@ -2238,7 +2259,7 @@
sha256 = "0n3y0314ajqhn5hzih09gl72110ifw4vzcgdxm8n6npjbx7irbml";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/applescript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/applescript-mode";
sha256 = "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611";
name = "applescript-mode";
};
@@ -2259,7 +2280,7 @@
sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aproject";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aproject";
sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2";
name = "aproject";
};
@@ -2278,7 +2299,7 @@
sha256 = "0wc9zg30a48cj2ssfj9wc7ga0ip9igcxcdbn1wr0qmndzxxa7x5k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/apropos-fn+var";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apropos-fn+var";
sha256 = "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x";
name = "apropos-fn-plus-var";
};
@@ -2299,7 +2320,7 @@
sha256 = "0j0k5ak5pzh3n2grf7b6b7ajxsp4ssv2l5gmg08kmbdwscavzc4r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/apropospriate-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apropospriate-theme";
sha256 = "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9";
name = "apropospriate-theme";
};
@@ -2317,7 +2338,7 @@
sha256 = "1xbvky0mspmbi8ghqhqhgbjn70acipwf0qwn6s5zdarwch10nljj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/apu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apu";
sha256 = "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2";
name = "apu";
};
@@ -2338,7 +2359,7 @@
sha256 = "03pmwgvlxxlp4wh0sg5czpx1i88i43lz8lwdbfa6l28g1sv0f264";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/archive-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/archive-region";
sha256 = "1aiz6a0vdc2zm2q5r80cj5xixqfhsgmr7ldj9ff40k4sf3z5xny3";
name = "archive-region";
};
@@ -2359,7 +2380,7 @@
sha256 = "1yvaqjc9hadbnnay5fprnh890xsp53kidad1zpb4a5z4a5z61n3c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/arduino-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/arduino-mode";
sha256 = "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx";
name = "arduino-mode";
};
@@ -2379,7 +2400,7 @@
sha256 = "1z6smlc5cpf6kswbibhwwx3h5khsbj38a371lsjjhgmharg7a4r7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aria2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aria2";
sha256 = "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc";
name = "aria2";
};
@@ -2400,7 +2421,7 @@
sha256 = "0vh9wfc3657sd12ybjcrxpg6f757x2ghkcl1lw01szmyy5vmj27h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ariadne";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ariadne";
sha256 = "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p";
name = "ariadne";
};
@@ -2421,7 +2442,7 @@
sha256 = "0p8k6sxmvmf535sawis6rn6lfyl5ph263i1phf2d5wl3dzs0xj5x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/arjen-grey-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/arjen-grey-theme";
sha256 = "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7";
name = "arjen-grey-theme";
};
@@ -2442,7 +2463,7 @@
sha256 = "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/artbollocks-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/artbollocks-mode";
sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp";
name = "artbollocks-mode";
};
@@ -2463,7 +2484,7 @@
sha256 = "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/arview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/arview";
sha256 = "0d935lj0x3rbar94l7288xrgbcp1wmz6r2l0b7i89r5piczyiy1y";
name = "arview";
};
@@ -2481,7 +2502,7 @@
sha256 = "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ascii";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ascii";
sha256 = "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r";
name = "ascii";
};
@@ -2502,7 +2523,7 @@
sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/asilea";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/asilea";
sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j";
name = "asilea";
};
@@ -2523,7 +2544,7 @@
sha256 = "0h18x9nh152dnyqjv5b1zjksl8wb75s8zmx3v8vvmwqyy6ql8gcj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/asn1-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/asn1-mode";
sha256 = "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy";
name = "asn1-mode";
};
@@ -2536,15 +2557,15 @@
assess = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, m-buffer, melpaBuild }:
melpaBuild {
pname = "assess";
- version = "20160507.510";
+ version = "20160518.1757";
src = fetchFromGitHub {
owner = "phillord";
repo = "assess";
- rev = "cd394f309f0fc59e4e737ca8f4b5f1462f971a6b";
- sha256 = "1gqk7kxhcs6vk0x5s1x2ai5f5nrgrd8z75bgr8h1vnr8fficmmlf";
+ rev = "387e5cfe2f010fb3da7f1b670fc27c19ace99b4a";
+ sha256 = "1qfrrw6vgz93xiyy0xiaw0hh97lmv3365gm6a9cr5g0h4012z8pq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/assess";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/assess";
sha256 = "0xj3f48plwxmibax00qn15ya7s0h560xzwr8nkwl5r151v1mc9rr";
name = "assess";
};
@@ -2565,7 +2586,7 @@
sha256 = "0w1cf78074is9n7wyfnyf1xjyydpyrbppf2xbvs9f1knmdajsph3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/async";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/async";
sha256 = "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f";
name = "async";
};
@@ -2586,7 +2607,7 @@
sha256 = "0rnnvr8x1czphbinby2z2dga7ikwgd13d7zhgmp3ggamzyaz6nf1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/@";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/@";
sha256 = "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz";
name = "at";
};
@@ -2607,7 +2628,7 @@
sha256 = "0jfpzv8dmvl4nr6kvq5aii830s5h632bq2q3jbnfc4zdql7id464";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/atom-dark-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/atom-dark-theme";
sha256 = "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f";
name = "atom-dark-theme";
};
@@ -2620,15 +2641,15 @@
atom-one-dark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "atom-one-dark-theme";
- version = "20160516.842";
+ version = "20160521.1506";
src = fetchFromGitHub {
owner = "jonathanchu";
repo = "atom-one-dark-theme";
- rev = "eee26756b54164b0dad309816954b48eaa7ebc38";
- sha256 = "12cljyq97b5v21pz4cf3zk4fn3asjcsy6bpykhmds7pvbq14dgkr";
+ rev = "807679bfe9ddc53a0cd6cfcdcd851b4496c707e3";
+ sha256 = "07gbnm0bbgbqvmzhwmfpnxfkirrldr4dvvvq5plv923hbqzayiih";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/atom-one-dark-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/atom-one-dark-theme";
sha256 = "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw";
name = "atom-one-dark-theme";
};
@@ -2641,15 +2662,15 @@
auctex-latexmk = callPackage ({ auctex, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auctex-latexmk";
- version = "20160307.652";
+ version = "20160522.5";
src = fetchFromGitHub {
owner = "tom-tan";
repo = "auctex-latexmk";
- rev = "fa1953f72c9f4d5cb6c2de6ca471523dd9d11aac";
- sha256 = "0fa39mzgw8sc7rn31jsfg9pwr05hyk8jjrkk6qa6r91r02ksac8k";
+ rev = "ef067ff644d9e62b3b20d0ed92c8a264548c8da5";
+ sha256 = "0vs7i8iam92q3ijyjyy92rqf8d94aayv1rvqv3c6ably71gf720k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auctex-latexmk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auctex-latexmk";
sha256 = "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327";
name = "auctex-latexmk";
};
@@ -2670,7 +2691,7 @@
sha256 = "0lgfgvnaln5rhhwgcrzwrhbj0gz8sgaf6xxdl7njf3sa6bfgngsz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auctex-lua";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auctex-lua";
sha256 = "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf";
name = "auctex-lua";
};
@@ -2691,7 +2712,7 @@
sha256 = "0q79kblcbz5vlzj0f49vpc1902767ydmvkmwwjs60x3w2f3aq3cm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/audio-notes-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/audio-notes-mode";
sha256 = "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h";
name = "audio-notes-mode";
};
@@ -2712,7 +2733,7 @@
sha256 = "0dqr1yrzf7a8655dsbcch4622rc75j9yjbn9zhkyikqjicddnlda";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aurel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aurel";
sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl";
name = "aurel";
};
@@ -2733,7 +2754,7 @@
sha256 = "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aurora-config-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aurora-config-mode";
sha256 = "1hpjwidqmjxanijsc1imc7ww9abbylmkin1p0846fbz1hz3a603c";
name = "aurora-config-mode";
};
@@ -2754,7 +2775,7 @@
sha256 = "1z2n6gd63mgj2wj45n6g1gmfrk0iwzlrzb6g1rdd9r9a03c03qi6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aurora-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aurora-theme";
sha256 = "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5";
name = "aurora-theme";
};
@@ -2775,7 +2796,7 @@
sha256 = "1b6g7qvrxv6gkl4izq1y7k0x0l7izyfnpki10di5vdv3jp6xg9b2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auth-password-store";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auth-password-store";
sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5";
name = "auth-password-store";
};
@@ -2796,7 +2817,7 @@
sha256 = "17nv8rqjh3ynbk1r0njwjb5hd7sgii0vncsa1q19jyp3h30rj4in";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-async-byte-compile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-async-byte-compile";
sha256 = "0ks6xsxzayiyd0jl8m36xlc5p57p21qbhgq2mmz50a2lhpxxfiyg";
name = "auto-async-byte-compile";
};
@@ -2817,7 +2838,7 @@
sha256 = "1whbvqylwnxg8d8gn55kcky39rgyc49rakyxlbkplh813lk6lxb7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-auto-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-auto-indent";
sha256 = "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7";
name = "auto-auto-indent";
};
@@ -2835,7 +2856,7 @@
sha256 = "0xywyfpsi64g9lihm5ncmjrj06iq9s6pp9fmsgj1hdf9y0z65lg0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-capitalize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-capitalize";
sha256 = "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0";
name = "auto-capitalize";
};
@@ -2856,7 +2877,7 @@
sha256 = "05crb8cm7s1nggrqq0xcs2xiabjw3vh44fnkdiilq1c5cnajdcrj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-compile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-compile";
sha256 = "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks";
name = "auto-compile";
};
@@ -2877,7 +2898,7 @@
sha256 = "19sdjwnjryzaq1rpjkvr3mjz9mg7cqzrrx5mqzic3aklgg71d53j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete";
sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3";
name = "auto-complete";
};
@@ -2898,7 +2919,7 @@
sha256 = "1wri8q5llpy1q1h4ac4kjnnkgj6fby8i9vrpr6mrb13d4gnk4gr2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-auctex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-auctex";
sha256 = "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh";
name = "auto-complete-auctex";
};
@@ -2919,7 +2940,7 @@
sha256 = "12mzi6bwg702sp0f0wd1ag555blbpk252rr9rqs03bn8pkw89h4n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-c-headers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-c-headers";
sha256 = "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7";
name = "auto-complete-c-headers";
};
@@ -2940,7 +2961,7 @@
sha256 = "1zhbpxpl443ghpkl9i68jcjfcw1vnf8ky06pf5qjjmqbxlcyd9li";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-chunk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-chunk";
sha256 = "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3";
name = "auto-complete-chunk";
};
@@ -2961,7 +2982,7 @@
sha256 = "12y6f47xbjl4gy14j2f5wlisy5vl6rhx74n27w61pjv38m0a7mi1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-clang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-clang";
sha256 = "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva";
name = "auto-complete-clang";
};
@@ -2982,7 +3003,7 @@
sha256 = "1sw0wxrjcjqk0w1llfj376g6axa5bnk2lq2vv66746bkz14h0s8f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-clang-async";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-clang-async";
sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh";
name = "auto-complete-clang-async";
};
@@ -3003,7 +3024,7 @@
sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-exuberant-ctags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-exuberant-ctags";
sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd";
name = "auto-complete-exuberant-ctags";
};
@@ -3024,7 +3045,7 @@
sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-nxml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-nxml";
sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a";
name = "auto-complete-nxml";
};
@@ -3045,7 +3066,7 @@
sha256 = "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-pcmp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-pcmp";
sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna";
name = "auto-complete-pcmp";
};
@@ -3066,7 +3087,7 @@
sha256 = "107svb82cgfns9kcrmy3hh56cab81782jkbz5i9959ms81xizfb8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-rst";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-rst";
sha256 = "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6";
name = "auto-complete-rst";
};
@@ -3087,7 +3108,7 @@
sha256 = "139in1jgxg43v7ji4i1qmxbgspr71h95lzlz0fvdk78vkxc5842b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-sage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-sage";
sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1";
name = "auto-complete-sage";
};
@@ -3108,7 +3129,7 @@
sha256 = "0rfjx0x2an28821shgb4v5djza4kwn5nnrsl2cvh3px4wrvw3izp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-dictionary";
sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16";
name = "auto-dictionary";
};
@@ -3129,7 +3150,7 @@
sha256 = "0lqfnv8wqnbb5ddwmh9svphc3bgmwdpwx40qw9sgqdzpj3xh7v8g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-dim-other-buffers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-dim-other-buffers";
sha256 = "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh";
name = "auto-dim-other-buffers";
};
@@ -3150,7 +3171,7 @@
sha256 = "0jfiax1qqnyznhlnqkjsr9nnv7fpjywvfhj9jq59460j0nbrgs5c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-highlight-symbol";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-highlight-symbol";
sha256 = "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66";
name = "auto-highlight-symbol";
};
@@ -3171,7 +3192,7 @@
sha256 = "1ya7lnlgrxwrbaxlkl0bbz2m8pic6yjln0dm1mcmr9mjglp8kh6y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-indent-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-indent-mode";
sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz";
name = "auto-indent-mode";
};
@@ -3189,7 +3210,7 @@
sha256 = "043pb2wk7jh0jgxphdl4848rjyabna26gj0vlhpiyd8zc361pg9d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-install";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-install";
sha256 = "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk";
name = "auto-install";
};
@@ -3210,7 +3231,7 @@
sha256 = "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-package-update";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-package-update";
sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k";
name = "auto-package-update";
};
@@ -3231,7 +3252,7 @@
sha256 = "1pxhqwvg059pslin6z87jd8d0q44ljwvdn6y23ffrz9kfpn3m5m2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-pause";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-pause";
sha256 = "0cdak2kicxylj5f161kia0bzzqad426y8cj4zf04gcl0nndijyrc";
name = "auto-pause";
};
@@ -3252,7 +3273,7 @@
sha256 = "10aw3bpvawkqj1l8brvzq057wx3mkzpxs4zc3yhppkhq2cpvx7i2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-save-buffers-enhanced";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-save-buffers-enhanced";
sha256 = "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb";
name = "auto-save-buffers-enhanced";
};
@@ -3273,7 +3294,7 @@
sha256 = "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-shell-command";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-shell-command";
sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j";
name = "auto-shell-command";
};
@@ -3294,7 +3315,7 @@
sha256 = "1ya5rn55sclh2w5bjy4b2b75gd6bgavfqmhdisz6afp8w4l4a2bv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-virtualenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-virtualenv";
sha256 = "0xv51g74l5pxa3s185867dpc98m6y26xbj5wgz7f9177qchvdbhk";
name = "auto-virtualenv";
};
@@ -3315,7 +3336,7 @@
sha256 = "13g0vc0wsq7yn4qgxy3g64pdm30dafi75z6bsxnf3iq77zkqai0p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-yasnippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-yasnippet";
sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa";
name = "auto-yasnippet";
};
@@ -3336,7 +3357,7 @@
sha256 = "1kb6h37qlhzxk3v45bn0m38bp244c3fpxr3lzr7f6rsy8bpc8w67";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/autobookmarks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autobookmarks";
sha256 = "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp";
name = "autobookmarks";
};
@@ -3357,7 +3378,7 @@
sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/autodisass-java-bytecode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autodisass-java-bytecode";
sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc";
name = "autodisass-java-bytecode";
};
@@ -3378,7 +3399,7 @@
sha256 = "1fq4h5fmamyh7z8nq6pigx74p5v8k3qfm64k66vwsm8bl5jdkw17";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/autodisass-llvm-bitcode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autodisass-llvm-bitcode";
sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01";
name = "autodisass-llvm-bitcode";
};
@@ -3397,7 +3418,7 @@
sha256 = "1af45z1w69dkdk4mzjphwn420m9rrkc3djv5kpp6lzbxxnmswbqw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/autofit-frame";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autofit-frame";
sha256 = "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw";
name = "autofit-frame";
};
@@ -3418,7 +3439,7 @@
sha256 = "02nnyncfh6g0xizy7wa8721ahpnwk451kngd6n0y0249f50p3962";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/automargin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/automargin";
sha256 = "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8";
name = "automargin";
};
@@ -3439,7 +3460,7 @@
sha256 = "09p56vi5zgm2djglimwyhv4n4gyydjndzn46vg9qzzlxvvmw66i1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/autopair";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autopair";
sha256 = "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28";
name = "autopair";
};
@@ -3460,7 +3481,7 @@
sha256 = "184ghdi2m4hagddi71c1pmc408fad1cmw0q2n4k737w6j8537hph";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/autotest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autotest";
sha256 = "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy";
name = "autotest";
};
@@ -3481,7 +3502,7 @@
sha256 = "162zay36mmkkpbfvp0lagv2js4cr1z75dc1z5l2505814m5sx3az";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/autotetris-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autotetris-mode";
sha256 = "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb";
name = "autotetris-mode";
};
@@ -3502,7 +3523,7 @@
sha256 = "1lip7282g41ghn64dvx2ab437s83cj9l8ps1rd8rbhqyz4bx5wb9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/autumn-light-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autumn-light-theme";
sha256 = "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a";
name = "autumn-light-theme";
};
@@ -3515,15 +3536,15 @@
avy = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "avy";
- version = "20160515.115";
+ version = "20160519.836";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "avy";
- rev = "58bc417c55f7b5d2fa14a8e55b899fa1655ca9fc";
- sha256 = "1184v7sz59vmn7zy04a36mxpbwlapamd8m11fdxy34d1f32fxb41";
+ rev = "33af738ae777c01fd527a69fe088b52450bb427a";
+ sha256 = "0q5sz6vnbd3fjrqbcyy6f5p33bjxmrgb50madr5nmyjixq3az4kv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/avy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy";
sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag";
name = "avy";
};
@@ -3544,7 +3565,7 @@
sha256 = "1a6h44a6id4ash8kp0a59f34658p7czcl2d3i1880k8hckhy445j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/avy-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy-menu";
sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw";
name = "avy-menu";
};
@@ -3557,15 +3578,15 @@
avy-migemo = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, migemo }:
melpaBuild {
pname = "avy-migemo";
- version = "20160504.749";
+ version = "20160521.926";
src = fetchFromGitHub {
owner = "momomo5717";
repo = "avy-migemo";
- rev = "5a4a4a204ece75405028e059f0cc943a33d33778";
- sha256 = "1jkld876m15gqbbdprhpna31lp3pcr23n3zkq6l9f0b44i14ddar";
+ rev = "dbff540eddd2eb2e64c43eec346cc64db2b1bcbe";
+ sha256 = "0akllwdn1qn4v4b7hj5if11v87ppx6dr8spzmlmkav8ls4z8zhgf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/avy-migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy-migemo";
sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296";
name = "avy-migemo";
};
@@ -3586,7 +3607,7 @@
sha256 = "0nv6y9jwy2z4rlnd6qklhqww367kaqjc5id7yr4hsmxmxw2jj43p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/avy-zap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy-zap";
sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx";
name = "avy-zap";
};
@@ -3604,7 +3625,7 @@
sha256 = "1r1vbi1r3rdbkyb2naciqwja7hxigjhqfxsfcinnygabsi7fw9aw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/awk-it";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/awk-it";
sha256 = "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw";
name = "awk-it";
};
@@ -3617,15 +3638,15 @@
aws-ec2 = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, tablist }:
melpaBuild {
pname = "aws-ec2";
- version = "20160515.317";
+ version = "20160518.1010";
src = fetchFromGitHub {
owner = "Yuki-Inoue";
repo = "aws.el";
- rev = "eb1edf6c0df99fa4e8ec70d6395ef04e5ba3363c";
- sha256 = "0d3xl68ma3v4xv2dqzbghn670kmnqlic0hiyhj0k07hxk4c33cw4";
+ rev = "14ff97cc3479cc871937d8f09a5a9b8746016cc8";
+ sha256 = "0sgza6p6m1fssf0qmdi3s9apzqzb69bsmwh7ynh30x31yswwmrdm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aws-ec2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aws-ec2";
sha256 = "040c69g8rhpcmrdjjg4avdmqarxx3dfzylmz62yxhfpn02qh48xd";
name = "aws-ec2";
};
@@ -3645,7 +3666,7 @@
sha256 = "0z15n7cpprbhiamq26240g5bqsiw5mgyzdisi7j6hpybyk2zyl9q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/axiom-environment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/axiom-environment";
sha256 = "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66";
name = "axiom-environment";
};
@@ -3666,7 +3687,7 @@
sha256 = "140lbpqq4qz45ykycdn8nvcn8pv0xqfwpapgprvyg8z5fjkyc4sg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/babel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/babel";
sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c";
name = "babel";
};
@@ -3687,7 +3708,7 @@
sha256 = "0sp0ja0346k401q5zpx3zl4pnxp4ml2jqkgk7z8i08rhdbp0c4nr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/babel-repl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/babel-repl";
sha256 = "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x";
name = "babel-repl";
};
@@ -3708,7 +3729,7 @@
sha256 = "0rj6a8rdwa0h2ckz7h4d91hnxqcin98l4ikbfyak2whfb47z909l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/back-button";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/back-button";
sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85";
name = "back-button";
};
@@ -3733,7 +3754,7 @@
sha256 = "0b9vvi2m0fdv36wj8mvawl951gjmg3pypg08a8n6rzn3rwg0fwz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/backup-each-save";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/backup-each-save";
sha256 = "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337";
name = "backup-each-save";
};
@@ -3754,7 +3775,7 @@
sha256 = "0z4d8x9lkad50720lgvr8f85p1ligv07865i30lgr9ck0q04w68v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/backup-walker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/backup-walker";
sha256 = "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd";
name = "backup-walker";
};
@@ -3775,7 +3796,7 @@
sha256 = "0g8smx6pi2wqv78mhxfgwg51mx5msqsgcc55xcz29aq0q3naw4z1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/badger-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/badger-theme";
sha256 = "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf";
name = "badger-theme";
};
@@ -3788,15 +3809,15 @@
badwolf-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "badwolf-theme";
- version = "20160516.1334";
+ version = "20160521.755";
src = fetchFromGitHub {
owner = "bkruczyk";
repo = "badwolf-emacs";
- rev = "13b1a208dde1f5776dccd00de059657d2074e389";
- sha256 = "0600f92mp14lfcakjsqqbnmmlwr81wymi1wd8ydnmd47kmbg8m5d";
+ rev = "44c2994a5a7574d5bfa882f0bbe3f6080f9d0fc3";
+ sha256 = "06l5b1dnz8gggqf1lsmw8x4mlra9pvpxzykjw06qaassfjjhaql2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/badwolf-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/badwolf-theme";
sha256 = "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41";
name = "badwolf-theme";
};
@@ -3817,7 +3838,7 @@
sha256 = "024gpdjr1lbqjg6md526g4wz2shpgfpdrrd2m1bn4fissbzj70i1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/baidu-life";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/baidu-life";
sha256 = "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19";
name = "baidu-life";
};
@@ -3838,7 +3859,7 @@
sha256 = "16240dj0hvxkljas9973wjdgkbx213sqws77j167yr5xf761dlsr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/base16-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/base16-theme";
sha256 = "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs";
name = "base16-theme";
};
@@ -3859,7 +3880,7 @@
sha256 = "06c42531dy5ngscwfvg8rksg6jcsakfn7104hmlg1jp4kvfiy1kg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bash-completion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bash-completion";
sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj";
name = "bash-completion";
};
@@ -3880,7 +3901,7 @@
sha256 = "1pbnw6ccphxynbhnc4g687jfcg33p1sa7a0mfxc2ai0i3z59gn78";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/basic-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/basic-theme";
sha256 = "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27";
name = "basic-theme";
};
@@ -3898,7 +3919,7 @@
sha256 = "1aa611jrzw4svmxvw1ghgh53x4nry0sl7mxmp4kxiaybqqvz6a1p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/batch-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/batch-mode";
sha256 = "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x";
name = "batch-mode";
};
@@ -3919,7 +3940,7 @@
sha256 = "1ikb4rb20ng1yq95g3ydwpk37axmiw38rjzn1av9m4cs81qby4jv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bats-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bats-mode";
sha256 = "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w";
name = "bats-mode";
};
@@ -3940,7 +3961,7 @@
sha256 = "17ip24fk13aj9zldn2qsr4naa8anqhm484m1an5l5i9m9awfiyn7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbcode-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbcode-mode";
sha256 = "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89";
name = "bbcode-mode";
};
@@ -3959,7 +3980,7 @@
sha256 = "09ib71b669sccp0x5lf2ic4gzdqcmmdx918n870lhabqhn0gw3g2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbdb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb";
sha256 = "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j";
name = "bbdb";
};
@@ -3980,7 +4001,7 @@
sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbdb-";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-";
sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf";
name = "bbdb-";
};
@@ -4001,7 +4022,7 @@
sha256 = "0m80k87dahzdpfa4snbl4p9zm5d5anc8s91535mwzsnfbr98qmhm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbdb-android";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-android";
sha256 = "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3";
name = "bbdb-android";
};
@@ -4022,7 +4043,7 @@
sha256 = "07plwm5nh58qya03l8z0iaqh8bmyhywx7qiffkf803n8wwjb3kdn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbdb-china";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-china";
sha256 = "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b";
name = "bbdb-china";
};
@@ -4043,7 +4064,7 @@
sha256 = "1h9vi9wb3dzzjrw5zfypk60afzzshxa3qmnbc24ypby5dr7qy91l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbdb-csv-import";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-csv-import";
sha256 = "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm";
name = "bbdb-csv-import";
};
@@ -4064,7 +4085,7 @@
sha256 = "1ydf89mmp3zjfqdymnrwg18wclyf7psarz9f2k82pl58h0khh71g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbdb-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-ext";
sha256 = "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li";
name = "bbdb-ext";
};
@@ -4085,7 +4106,7 @@
sha256 = "04yxky7qxh0s4y4addry85qd1074l97frhp0hw77xd1bc7n5zzg0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbdb-handy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-handy";
sha256 = "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z";
name = "bbdb-handy";
};
@@ -4106,7 +4127,7 @@
sha256 = "1zlf9xhpirln72xr7v6kgndkg5wyz5ipsl4gpq9lbmp92jlgbwlj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbdb-vcard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-vcard";
sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj";
name = "bbdb-vcard";
};
@@ -4127,7 +4148,7 @@
sha256 = "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbdb2erc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb2erc";
sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd";
name = "bbdb2erc";
};
@@ -4148,7 +4169,7 @@
sha256 = "1cdm4d6fjf3m495phynq0dzvv0wc0gfsw6fdq4d47iyxs0p4q2dl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbyac";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbyac";
sha256 = "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170";
name = "bbyac";
};
@@ -4169,7 +4190,7 @@
sha256 = "0d5b7zyl2vg621w1ll2lw3kjz5hx6lqxc0jivh0i449gckk5pzkm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bdo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bdo";
sha256 = "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl";
name = "bdo";
};
@@ -4190,7 +4211,7 @@
sha256 = "0b3d4zi6c53s69sl4di6scf5s9wik0qxqc4g5wd42af85b7yfnva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/beacon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/beacon";
sha256 = "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq";
name = "beacon";
};
@@ -4211,7 +4232,7 @@
sha256 = "0ki9q3ylssjabh15dr49k7dxv88snpj4564g0myp3c61qzyy82lk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/beeminder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/beeminder";
sha256 = "1cb8xmgsv23b464hpchm9f9i64p3fyf7aillrwk1aa2l1008kyww";
name = "beeminder";
};
@@ -4232,7 +4253,7 @@
sha256 = "1hyiz7iwnzbg1616q0w7fndllbnx4m98kakgxn04bsqib5fqk78p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/beginend";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/beginend";
sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq";
name = "beginend";
};
@@ -4253,7 +4274,7 @@
sha256 = "058mic9jkwiqvmp3k9sfd6gb70ysdphnb1iynlszhixbrz5w7zs2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/benchmark-init";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/benchmark-init";
sha256 = "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal";
name = "benchmark-init";
};
@@ -4274,7 +4295,7 @@
sha256 = "06izbc0ksyhgh4gsjiifhj11v0gx9x5xjx9aqci5mc4kc6mg05sf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bert";
sha256 = "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7";
name = "bert";
};
@@ -4295,7 +4316,7 @@
sha256 = "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/better-defaults";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/better-defaults";
sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm";
name = "better-defaults";
};
@@ -4313,7 +4334,7 @@
sha256 = "05dlhhvd1m9q642gqqj6klif13shbinqi6bi72fldidi1z6wcqlh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/better-registers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/better-registers";
sha256 = "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx";
name = "better-registers";
};
@@ -4334,7 +4355,7 @@
sha256 = "02b2m0cq04ynjcmr4j8gpdzjv9mpf1fysn736xv724xgaymj396n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bf-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bf-mode";
sha256 = "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9";
name = "bf-mode";
};
@@ -4355,7 +4376,7 @@
sha256 = "1y9fxs1nbf0xsn8mw45m9ghmji3h64wdbfnyr1npmf5fb27rmd17";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bfbuilder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bfbuilder";
sha256 = "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7";
name = "bfbuilder";
};
@@ -4376,7 +4397,7 @@
sha256 = "0mlbpmf6l9hvdw2pdx1qbad6q54r8zjb514d89znd461vs9ipjya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/biblio";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/biblio";
sha256 = "0ym7xvcfd7hh3qdpfb8zpa7w8s4lpg0vngh9d0ns3s3lnhz4mi0g";
name = "biblio";
};
@@ -4397,7 +4418,7 @@
sha256 = "0mlbpmf6l9hvdw2pdx1qbad6q54r8zjb514d89znd461vs9ipjya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/biblio-core";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/biblio-core";
sha256 = "0zpfamrb2gka41h834a05hxdbw4h55777kh6rhjikjfmy765nl97";
name = "biblio-core";
};
@@ -4418,7 +4439,7 @@
sha256 = "0rwy4k06nd9a31hpyqs0fxp45dpddbvbhwcw1gzx4f73qmgawq9b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bibretrieve";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bibretrieve";
sha256 = "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii";
name = "bibretrieve";
};
@@ -4439,7 +4460,7 @@
sha256 = "077shjz9sd0k0akvxzzgjd8a626ck650xxlhp2ws4gs7rjd7a823";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bibslurp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bibslurp";
sha256 = "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp";
name = "bibslurp";
};
@@ -4460,7 +4481,7 @@
sha256 = "1qf45s53vcbd90v2d2brynv3xmp8sy9w9jp611cf0dzfl1k7x8p8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bibtex-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bibtex-utils";
sha256 = "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l";
name = "bibtex-utils";
};
@@ -4481,7 +4502,7 @@
sha256 = "06jsa0scvf12kznm0ngv76y726rzh93prc7ymw3fvknvg0xivb8v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bind-chord";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bind-chord";
sha256 = "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb";
name = "bind-chord";
};
@@ -4502,7 +4523,7 @@
sha256 = "19vc1hblbqlns2c28aqwjpmj8k35ih7akqi04wrqv1b6pljfy3jg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bind-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bind-key";
sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm";
name = "bind-key";
};
@@ -4523,7 +4544,7 @@
sha256 = "126pjiiwhz500l60dvf6a9ixgda2sqv0rbj5f2a7g3pssh5yjh12";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bind-map";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bind-map";
sha256 = "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358";
name = "bind-map";
};
@@ -4544,7 +4565,7 @@
sha256 = "1cv2gx3wpk360a0s80pnd2h2xnbfz5cgsln2kij36dvjbxkrzjz8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bing-dict";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bing-dict";
sha256 = "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1";
name = "bing-dict";
};
@@ -4565,7 +4586,7 @@
sha256 = "1n5icy29ks5rxrxp7v4sf0523z7wxn0fh9lx4y6jb7ppdjnff12s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/birds-of-paradise-plus-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/birds-of-paradise-plus-theme";
sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m";
name = "birds-of-paradise-plus-theme";
};
@@ -4586,7 +4607,7 @@
sha256 = "0iccafawm9ah62f7qq1k77kjpafhcpjcaiqh5xjig1wxnpc43ck7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bison-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bison-mode";
sha256 = "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66";
name = "bison-mode";
};
@@ -4607,7 +4628,7 @@
sha256 = "14dsjbw4ss3i6ydynm121v5j3idvy85sk1vqbr5r871d32179xan";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bitbake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bitbake";
sha256 = "1k2n1i8g0jc78sp1icm64rlhi1q0vqar2a889nldp134a1l7bfah";
name = "bitbake";
};
@@ -4628,7 +4649,7 @@
sha256 = "0mccvpf8f87i7rqga3s4slrqz80rp3kyj071rrimhzpx8pnsrxx9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bitlbee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bitlbee";
sha256 = "1lmbmlshr8b645qsb88rswmbbcbbawzl04xdjlygq4dnpkxc8w0f";
name = "bitlbee";
};
@@ -4649,7 +4670,7 @@
sha256 = "09blh9cbcbqr3pdaiwm9fmh5kzqm1v9mffy623z3jn87g5wadrmb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bitly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bitly";
sha256 = "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247";
name = "bitly";
};
@@ -4667,7 +4688,7 @@
sha256 = "1wdplnmdllbydwr9gyyq4fbkxl5xjh7220vd4iajyv74pg2jkkkv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/blank-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/blank-mode";
sha256 = "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87";
name = "blank-mode";
};
@@ -4688,7 +4709,7 @@
sha256 = "1pslwyaq18d1z7fay2ih3n27i6b49ss62drqqb095l1jxk42xxm0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/blgrep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/blgrep";
sha256 = "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm";
name = "blgrep";
};
@@ -4709,7 +4730,7 @@
sha256 = "0dn0i3nxrqd82b9d17p1v0ddlpxnlfclkc8sqzrwq6cf19wcrmdr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bliss-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bliss-theme";
sha256 = "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh";
name = "bliss-theme";
};
@@ -4730,7 +4751,7 @@
sha256 = "111i897dnkbx4xq62jfkqq4li4gm16lxbgkgg2gn13zv0f0lzgvy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/blockdiag-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/blockdiag-mode";
sha256 = "0v48w4slzx8baxrf10jrzcpqmcv9d3z2pz0xqn8czlzm2f6id3ya";
name = "blockdiag-mode";
};
@@ -4743,15 +4764,15 @@
blog-admin = callPackage ({ ctable, f, fetchFromGitHub, fetchurl, lib, melpaBuild, names, s }:
melpaBuild {
pname = "blog-admin";
- version = "20160515.1205";
+ version = "20160521.1454";
src = fetchFromGitHub {
owner = "CodeFalling";
repo = "blog-admin";
- rev = "c7c6df6f1e856c588956762339d9ccf58f01d66e";
- sha256 = "0fwv263qpd2l1v8mbas8h5xkv26ggyqfrf2ai9lpdlpdwxhyd6jc";
+ rev = "7ae75fff0b1fb424355aced594ac5d914373d72d";
+ sha256 = "11hi1ymsqv64kg6hnhzn4s0f12gf4a1kivqds4glf3zds2992ipx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/blog-admin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/blog-admin";
sha256 = "03wnci5903c6jikkvlzc2vfma9h9qk673cc3wm756rx94jxinmyk";
name = "blog-admin";
};
@@ -4772,7 +4793,7 @@
sha256 = "1ggqg0lgvxg2adq91damvh55m36qsa23n3z6zyf5z6855ilzaa4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bm";
sha256 = "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g";
name = "bm";
};
@@ -4785,15 +4806,15 @@
bog = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bog";
- version = "20160307.5";
+ version = "20160517.2159";
src = fetchFromGitHub {
owner = "kyleam";
repo = "bog";
- rev = "18e2da1e27c4366cf0969225984f4c8cef7db006";
- sha256 = "04x0gw83x3y0xq2g2vkn27qmvqia04dvwq6yhjif0zz9jr2s7a10";
+ rev = "ee403848c65c6141888344144958bc979596f5d4";
+ sha256 = "0414kdwgvmz0bmbaaz7zxf83rdjzmzcvvk5b332c679hk0b9kxg7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bog";
sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl";
name = "bog";
};
@@ -4814,7 +4835,7 @@
sha256 = "109r51flzhva8npch6ykqkcd2j5jpffhw6ziq3rmlqb7yc04wghb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bongo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bongo";
sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv";
name = "bongo";
};
@@ -4835,7 +4856,7 @@
sha256 = "06cpbjbv8ysz81szwgglgy5r1aay8rrzw5k86wyqg9jdzwpmilpn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bonjourmadame";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bonjourmadame";
sha256 = "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn";
name = "bonjourmadame";
};
@@ -4856,7 +4877,7 @@
sha256 = "128xs1qznhbzicv0k7k80mwb68amjdgigm7qzqln5nfg8p1rwz50";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/boogie-friends";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/boogie-friends";
sha256 = "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7";
name = "boogie-friends";
};
@@ -4874,7 +4895,7 @@
sha256 = "06621js3bvslfmzmkphzzcrd8hbixin2nx30ammcqaa6572y14ad";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bookmark+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bookmark+";
sha256 = "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni";
name = "bookmark-plus";
};
@@ -4895,7 +4916,7 @@
sha256 = "0ab9wmm1i5ws77dfa6y21ds39gh28i2xw0xbqrf4mc147bsgfz4n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/boon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/boon";
sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb";
name = "boon";
};
@@ -4916,7 +4937,7 @@
sha256 = "0yzfxxv2bw4x320268bixfc7yf97851804bz3829vbdhnr4kp6y5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/borland-blue-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/borland-blue-theme";
sha256 = "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx";
name = "borland-blue-theme";
};
@@ -4937,7 +4958,7 @@
sha256 = "1gys5ri56s2s525wdji3m72sxzswmb8cmhmw5iha84v7hlqkrahb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/boron-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/boron-theme";
sha256 = "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81";
name = "boron-theme";
};
@@ -4958,7 +4979,7 @@
sha256 = "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/boxquote";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/boxquote";
sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s";
name = "boxquote";
};
@@ -4979,7 +5000,7 @@
sha256 = "0chmarbpqingdma54d6chbr6v6jg8lapbw56cpvcpbl04fz980r0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bpe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bpe";
sha256 = "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm";
name = "bpe";
};
@@ -5000,7 +5021,7 @@
sha256 = "10178l56ryfxsrxysy9qb6vg71q1xavfw1sbchh0mrb90x12vilz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bpr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bpr";
sha256 = "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2";
name = "bpr";
};
@@ -5021,7 +5042,7 @@
sha256 = "1l6j2zs12psc15cfhqq6hm1bg012jr49zd2i36cmappbsiax1l8m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bracketed-paste";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bracketed-paste";
sha256 = "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j";
name = "bracketed-paste";
};
@@ -5042,7 +5063,7 @@
sha256 = "1nzgjgzidyrplfs4jl8nikd5wwvb4rmrnm51qxmw9y2if0hpq0jd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/brainfuck-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/brainfuck-mode";
sha256 = "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd";
name = "brainfuck-mode";
};
@@ -5063,7 +5084,7 @@
sha256 = "0w6b9rxdciy1365kgf6fh3vgrjr8xd5ar6xcn0g4h56f2zg9hdmj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/broadcast";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/broadcast";
sha256 = "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib";
name = "broadcast";
};
@@ -5084,7 +5105,7 @@
sha256 = "12m24n9yif9km4b2sw6am1bdfhxg05wdrq2jnp56jy1i7cgjrm1c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/browse-at-remote";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/browse-at-remote";
sha256 = "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w";
name = "browse-at-remote";
};
@@ -5105,7 +5126,7 @@
sha256 = "0sndzhza9k4vcf70fzxsyzrfryaz92lm1y7bbb0dx10m65qljpbi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/browse-kill-ring";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/browse-kill-ring";
sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4";
name = "browse-kill-ring";
};
@@ -5124,7 +5145,7 @@
sha256 = "1z6pix1ml3s97jh34fwjj008ihlrz4hkipdh5yzcvc6nhrimjw2f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/browse-kill-ring+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/browse-kill-ring+";
sha256 = "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w";
name = "browse-kill-ring-plus";
};
@@ -5145,7 +5166,7 @@
sha256 = "1rcihwdxrzhgcz573rh1yp3770ihkwqjqvd39yhic1d3sgwxz2hy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/browse-url-dwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/browse-url-dwim";
sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf";
name = "browse-url-dwim";
};
@@ -5163,7 +5184,7 @@
sha256 = "1yslzlx54n17330sf6b2pynz01y6ifnkhipz4hggn1i55bz8hvrw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bs-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bs-ext";
sha256 = "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6";
name = "bs-ext";
};
@@ -5184,7 +5205,7 @@
sha256 = "022j0gw5qkxjz8f70vqjxysifv2mz6cigf9n5z03zmpvwwvxmx2z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/btc-ticker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/btc-ticker";
sha256 = "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1";
name = "btc-ticker";
};
@@ -5205,7 +5226,7 @@
sha256 = "1qgasaqhqm0birjmb6k6isd2f5pn58hva8db8qfhva9g5kg1f38w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bts";
sha256 = "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3";
name = "bts";
};
@@ -5226,7 +5247,7 @@
sha256 = "1sfr3j11jz4k9jnfa9i05bp4v5vkil38iyrgsp3kxf15797b9dg9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bts-github";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bts-github";
sha256 = "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln";
name = "bts-github";
};
@@ -5247,7 +5268,7 @@
sha256 = "1aha8rzilv4k300rr4l9qjfygydfwllkbw17lhm8jz0kh9w6bd28";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bubbleberry-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bubbleberry-theme";
sha256 = "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3";
name = "bubbleberry-theme";
};
@@ -5268,7 +5289,7 @@
sha256 = "1p5a29bpjqr1gs6sb6rr7y0j06nlva23wxkwfskap25zvjpgwbvq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/buffer-buttons";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-buttons";
sha256 = "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6";
name = "buffer-buttons";
};
@@ -5289,7 +5310,7 @@
sha256 = "0s43cvkr1za5sd2cvl55ig34wbp8xyjf85snmf67ps04swyyk92q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/buffer-flip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-flip";
sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098";
name = "buffer-flip";
};
@@ -5310,7 +5331,7 @@
sha256 = "1yzga2zs9flbarsh704hh7k4l3w09g4li9a7r3fsvl4kll80x393";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/buffer-move";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-move";
sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg";
name = "buffer-move";
};
@@ -5328,7 +5349,7 @@
sha256 = "0d87cl7a4rcd6plbjyf26vaar7imwd18z24xdi4dz734m9zbkg6r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/buffer-stack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-stack";
sha256 = "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn";
name = "buffer-stack";
};
@@ -5349,7 +5370,7 @@
sha256 = "1mnf0dgr6g58k0jyia7985jsinrla04vm5sjl2iajwphbhadjk8p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/buffer-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-utils";
sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2";
name = "buffer-utils";
};
@@ -5370,7 +5391,7 @@
sha256 = "1plh77xzpbhgmjdagm5rhqx6nkhc0g39ir0b6s5yh003wmx6r1hh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bufshow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bufshow";
sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h";
name = "bufshow";
};
@@ -5391,7 +5412,7 @@
sha256 = "0zr1raf0q5wi3vr66kglxcfxswlm8g2l501adm8c27clvqizpnrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bug-reference-github";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bug-reference-github";
sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6";
name = "bug-reference-github";
};
@@ -5412,7 +5433,7 @@
sha256 = "0gr4v6fmg0im17f6i3pw6h8l401n5l5lzxz0hgi8lrisvx73iqa5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bundler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bundler";
sha256 = "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4";
name = "bundler";
};
@@ -5433,7 +5454,7 @@
sha256 = "0mirb3yvs4aq6n53lx690k06zllyzr29ms0888v5svjirxjazvh8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bury-successful-compilation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bury-successful-compilation";
sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3";
name = "bury-successful-compilation";
};
@@ -5454,7 +5475,7 @@
sha256 = "1viq7cb41r8klr8i38c5zjrhdnww31gh4j51xdgy4v2lc3z321zi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/buster-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buster-mode";
sha256 = "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7";
name = "buster-mode";
};
@@ -5475,7 +5496,7 @@
sha256 = "11djqlw4qf3qs2rwiz7dn5q2zw5i8sykwdf4hg4awsgv8g0bbxn6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/buster-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buster-snippets";
sha256 = "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x";
name = "buster-snippets";
};
@@ -5496,7 +5517,7 @@
sha256 = "11z987frzswnsym8g3l0s9wwdly1zn5inl2l558m6kcvfy7g59cx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/busybee-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/busybee-theme";
sha256 = "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10";
name = "busybee-theme";
};
@@ -5517,7 +5538,7 @@
sha256 = "0pp604r2gzzdpfajw920607pklwflk842difdyl4hy9w87fgc0jg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/butler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/butler";
sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq";
name = "butler";
};
@@ -5538,7 +5559,7 @@
sha256 = "16r3qfva20blfxh54l4p85m2x4fq7hwj71rlblp5ipicna7zs4dn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/buttercup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buttercup";
sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb";
name = "buttercup";
};
@@ -5559,7 +5580,7 @@
sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/button-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/button-lock";
sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp";
name = "button-lock";
};
@@ -5580,7 +5601,7 @@
sha256 = "040mcq2cwzbrf96f9mghb4314cd8xwp7ki2ix9fxpmbwiy323ld5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/c-c-combo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/c-c-combo";
sha256 = "09rvh6n2hqls7qki5dc34s2hmcmlvdsbgzcxgglhcmrhwx5w4vxn";
name = "c-c-combo";
};
@@ -5601,7 +5622,7 @@
sha256 = "0mlm5f66541namqn04vx6csf14mxhsiknbm36yqdnp1lxb7knv7a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/c-eldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/c-eldoc";
sha256 = "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm";
name = "c-eldoc";
};
@@ -5622,7 +5643,7 @@
sha256 = "10k90r4ckkkdjn9pqcbfyp6ynvrd5k0ngqcn5d0v1qvkn6jifxjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/c0-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/c0-mode";
sha256 = "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4";
name = "c0-mode";
};
@@ -5643,7 +5664,7 @@
sha256 = "1h395hvia7r76zlgr10qdr9q2159qyrs89znhkp2czikwm8kjiqk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cabledolphin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cabledolphin";
sha256 = "04slrx0vkcm66q59158limn0cpxn18ghlqyx7z8nrn7frrc03z03";
name = "cabledolphin";
};
@@ -5664,7 +5685,7 @@
sha256 = "1hp6dk84vvgkmj5lzghvqlpq3axwzgx9c7gly2yx6497fgf9jlby";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cache";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cache";
sha256 = "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3";
name = "cache";
};
@@ -5685,7 +5706,7 @@
sha256 = "07kzhyqr8ycjvkknijqhsfr26zd5jc8wxm9sl8bp6pzn4jbs1dmx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cacoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cacoo";
sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z";
name = "cacoo";
};
@@ -5706,7 +5727,7 @@
sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cake";
sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr";
name = "cake";
};
@@ -5727,7 +5748,7 @@
sha256 = "0xq10jkbk3crdhbh4lab39xhfw6vvcqz3if5q3yy4gzhx7zp94i4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cake-inflector";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cake-inflector";
sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf";
name = "cake-inflector";
};
@@ -5748,7 +5769,7 @@
sha256 = "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cake2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cake2";
sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x";
name = "cake2";
};
@@ -5769,7 +5790,7 @@
sha256 = "03hi0ggq81nm1kd0mcf8fwnya4axzd80vfdjdbhgpxbkvnxldzpv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cal-china-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cal-china-x";
sha256 = "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka";
name = "cal-china-x";
};
@@ -5790,7 +5811,7 @@
sha256 = "0rhasr818qijd2pcgifi0j3q4fkbiw2ck1nivajk7m810p53bxbj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/calfw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/calfw";
sha256 = "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8";
name = "calfw";
};
@@ -5811,7 +5832,7 @@
sha256 = "14n5rci4bkbl7037xvkd69gfxnjlgvd2j1xzciqcgz92f06ir3xi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/calfw-gcal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/calfw-gcal";
sha256 = "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8";
name = "calfw-gcal";
};
@@ -5832,7 +5853,7 @@
sha256 = "0n6y4z3qg04qnlsrjysf8ldxl2f2bk7n8crijydwabyy672qxd9h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/calmer-forest-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/calmer-forest-theme";
sha256 = "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p";
name = "calmer-forest-theme";
};
@@ -5853,7 +5874,7 @@
sha256 = "0am8asrzjs3iwak9c86fxb4zwgx5smbb9ywp0zn4y7j37blygswj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/camcorder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/camcorder";
sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi";
name = "camcorder";
};
@@ -5872,7 +5893,7 @@
sha256 = "16qw82m87i1fcnsccqcvr9l6p2cy0jdhljsgaivq0q10hdmbgqdw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/caml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/caml";
sha256 = "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698";
name = "caml";
};
@@ -5893,7 +5914,7 @@
sha256 = "08cp45snhyir5w8gyp6xws1q7c54pz06q099l0m3zmwn9277g68z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/capture";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/capture";
sha256 = "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2";
name = "capture";
};
@@ -5906,15 +5927,15 @@
cargo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode }:
melpaBuild {
pname = "cargo";
- version = "20160516.139";
+ version = "20160521.1022";
src = fetchFromGitHub {
owner = "kwrooijen";
repo = "cargo.el";
- rev = "b18e5862e93eac7a1d61c0d9878e18996dec7c80";
- sha256 = "0cjvpmv6jbmzw1mdqrqnyixwwvwrhvvkarkggi22b5bsw5pqikj5";
+ rev = "9c6b85b86c1f2f99f3c3463f6db9d903ef36d9a4";
+ sha256 = "1zvjrd0yqaczri9bwxfa0k0791hvs9qmw2vkjps10wy2njh9s29k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cargo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cargo";
sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx";
name = "cargo";
};
@@ -5935,7 +5956,7 @@
sha256 = "055w1spba0q9rqqg4rjds0iakr9d8xg66959xahxq8268mq5446n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/caroline-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/caroline-theme";
sha256 = "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32";
name = "caroline-theme";
};
@@ -5956,7 +5977,7 @@
sha256 = "1cp9i69npvyn72fqv0w8q1hlkcawkhbah4jblc341ycxwxb48mkl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/caseformat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/caseformat";
sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk";
name = "caseformat";
};
@@ -5977,7 +5998,7 @@
sha256 = "17z5nbl7i6fiy74p98wv057ri8g9pmqmzivb0iq7k471qxbk9xqh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cask";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cask";
sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5";
name = "cask";
};
@@ -5998,7 +6019,7 @@
sha256 = "0gywc2mzdzq3ny0jjffa3151vi7zb9i8ddy5d63x4yhicf5sxlh1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cask-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cask-mode";
sha256 = "0fs9zyihipr3klnh3w22h43qz0wnxplm62x4kx7pm1chq9bc9kz6";
name = "cask-mode";
};
@@ -6019,7 +6040,7 @@
sha256 = "1m40s9q00l06fz525m3zrvwd6s60lggdqls5k5njkn671aa3h71s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cask-package-toolset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cask-package-toolset";
sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g";
name = "cask-package-toolset";
};
@@ -6040,7 +6061,7 @@
sha256 = "15sq5vrkhb7c5j6ny6wy4bkyl5pggch4l7zw46an29rzni3pffr3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/caskxy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/caskxy";
sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s";
name = "caskxy";
};
@@ -6061,7 +6082,7 @@
sha256 = "125d5i7ycdn2hgffc1l3jqcfzvk70m1ciywj4h53qakkl15r9m38";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cbm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cbm";
sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn";
name = "cbm";
};
@@ -6082,7 +6103,7 @@
sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ccc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ccc";
sha256 = "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq";
name = "ccc";
};
@@ -6103,7 +6124,7 @@
sha256 = "1a93cim1w96aaj81clhjv25r7v9bwqm9a818mn8lk4aj1bmhgc4c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cd-compile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cd-compile";
sha256 = "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv";
name = "cd-compile";
};
@@ -6124,7 +6145,7 @@
sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cdb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cdb";
sha256 = "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf";
name = "cdb";
};
@@ -6145,7 +6166,7 @@
sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cdlatex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cdlatex";
sha256 = "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64";
name = "cdlatex";
};
@@ -6166,7 +6187,7 @@
sha256 = "0aspci0zg8waa3l234l0f8fjfzm67z2gydfdwwpxksz49sm2s1jk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cdnjs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cdnjs";
sha256 = "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7";
name = "cdnjs";
};
@@ -6187,7 +6208,7 @@
sha256 = "1f8gdj3p54q3410c66716y3l7i7nnkmq6hqz0dg1a1sc6jwdij3v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cedit";
sha256 = "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m";
name = "cedit";
};
@@ -6208,7 +6229,7 @@
sha256 = "0974bxy85rcxia6dkfryas2g46nanjdf8fv90adbc7kyj07xsf7c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/celery";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/celery";
sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h";
name = "celery";
};
@@ -6227,7 +6248,7 @@
sha256 = "15psyizjz8wf9wfxwwcdmg1bxf8jbv0qy40rskz7si7vxin8hhxl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/centered-cursor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/centered-cursor-mode";
sha256 = "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl";
name = "centered-cursor-mode";
};
@@ -6248,7 +6269,7 @@
sha256 = "1i5ipll7jlrxqb0kcwq0rlrpfaxsyp663bwjdnhj84c50wlv052f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/centered-window-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/centered-window-mode";
sha256 = "08pmk3rqgbk5fzhxx1kd8rp2k5r5vd2jc9k2phrqg75pf89h3zf4";
name = "centered-window-mode";
};
@@ -6269,7 +6290,7 @@
sha256 = "0zqrpaq9c3lm12jxnvysh8f3m3193k22zaj0ycscdqd1jpq4wcgh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/centimacro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/centimacro";
sha256 = "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6";
name = "centimacro";
};
@@ -6290,7 +6311,7 @@
sha256 = "17jg5d5afh9zpnjx8wkys8bjllxq99j0yhz8j3fvkskisvhkz1im";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cerbere";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cerbere";
sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06";
name = "cerbere";
};
@@ -6307,11 +6328,11 @@
src = fetchFromGitHub {
owner = "cfengine";
repo = "core";
- rev = "f521dad289c84471a8ac4c9c5bdae3a81631bbff";
- sha256 = "00w1dv5prmsj6fsysziivjhl7pgvs75h6c6drbpa8wnd5l6k4d3a";
+ rev = "f845384263cb143c211b8a48bb7351418d353f2a";
+ sha256 = "1z0civ5vg72ns8333i3f1vf1wq6lvclgrf89kzj33nqyr04i61fz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cfengine-code-style";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cfengine-code-style";
sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a";
name = "cfengine-code-style";
};
@@ -6332,7 +6353,7 @@
sha256 = "019vqjmq6hb2f5lddqy0ya5q0fd47xix29cashlchz0r034rc32r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cff";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cff";
sha256 = "04b2ck1jkhsrka6dbyn6rpsmmc2bn13kpyhzibd781hj73d93jgc";
name = "cff";
};
@@ -6347,11 +6368,11 @@
version = "20160414.1009";
src = fetchsvn {
url = "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs";
- rev = "11563";
+ rev = "11602";
sha256 = "1ninfjra12s9agrzb115wrcphkb38flacnjgw1czw6sdqjjxcnp4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cg";
sha256 = "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh";
name = "cg";
};
@@ -6372,7 +6393,7 @@
sha256 = "1m9sq93bwajbld3lnlzkjbsby5zlm9sxjzqynryyvsb9zr1d0a9z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/change-inner";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/change-inner";
sha256 = "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj";
name = "change-inner";
};
@@ -6393,7 +6414,7 @@
sha256 = "0r3yja2ak3z62lav2s8vimmjyi4rd5s82fbs8r6p2k0shm6lj7hz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chapel-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chapel-mode";
sha256 = "0hmnsv8xf85fc4jqkaqz5j3sf56hgib4jp530vvyc2dl2sps6vzz";
name = "chapel-mode";
};
@@ -6414,7 +6435,7 @@
sha256 = "0jq5xicf0y7z1v68cgsg9vniw6pa793izz350a4wgdq8f5fcm24f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/char-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/char-menu";
sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l";
name = "char-menu";
};
@@ -6433,7 +6454,7 @@
sha256 = "0xvgxjyl6s6hds7m9brzly6vxj06m47hxkw5h2riscq6l4nwc9vz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/character-fold+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/character-fold+";
sha256 = "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3";
name = "character-fold-plus";
};
@@ -6454,7 +6475,7 @@
sha256 = "05k19q7iihvhi0gflmkpsg5q3ydkdlvf0xh7kjk4lx9yvi0am7m2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/charmap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/charmap";
sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84";
name = "charmap";
};
@@ -6475,7 +6496,7 @@
sha256 = "1r2s3fszblk5wa6v3hnbzsri550gi5qsmp2w1spvmf1726n900cb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chatwork";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chatwork";
sha256 = "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p";
name = "chatwork";
};
@@ -6496,7 +6517,7 @@
sha256 = "15kam5hf2f4nwp29nvxqm5bs8nyhqf5m44fdb21qljgbmjdlh38y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cheatsheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cheatsheet";
sha256 = "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq";
name = "cheatsheet";
};
@@ -6517,7 +6538,7 @@
sha256 = "0660ix17ksxy5a5v8yqy7adr9d4bs6p1mnkc6lpyw96k4pn62h45";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/checkbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/checkbox";
sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa";
name = "checkbox";
};
@@ -6538,7 +6559,7 @@
sha256 = "12m98afxlm14vvm8dksr7hai44l5nb970ny4dicwdbzp0xl4wway";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chee";
sha256 = "1njldlp9bnwq7izmdlz5a97kfgxxnycv43djrvx4b01j4v2yz4zv";
name = "chee";
};
@@ -6559,7 +6580,7 @@
sha256 = "1jdlp5cnsiza55vx4kxacqgk7yqg9fvd9swhwdxkczadb2d5l9p1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cheerilee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cheerilee";
sha256 = "15igjlnq35cg9nslyqa63i1inqipx3y8g7zg4r26m69k25simqrv";
name = "cheerilee";
};
@@ -6580,7 +6601,7 @@
sha256 = "1mnskri5r1lyzzcag60x7amn00613jyl7by7hd4sqm2a7zd4r5aa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chef-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chef-mode";
sha256 = "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr";
name = "chef-mode";
};
@@ -6601,7 +6622,7 @@
sha256 = "0m97xr6lddy2jdmd4bl4kbp2568p4n110yfa9k7fqc20ihq8jkyd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cherry-blossom-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cherry-blossom-theme";
sha256 = "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w";
name = "cherry-blossom-theme";
};
@@ -6622,7 +6643,7 @@
sha256 = "0j61lvr99viaharg4553whcppp7lxhimkk5lps0izz9mnd8y2wm5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chicken-scheme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chicken-scheme";
sha256 = "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr";
name = "chicken-scheme";
};
@@ -6643,7 +6664,7 @@
sha256 = "1vfyb8gfrvfrvaaw0p7c6xji2kz6cqm6km2cmjixw0qjikxxlkv1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chinese-conv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-conv";
sha256 = "1lqpq7pg0nqqqj29f8is6c724vl75wscmm1v08j480pfks3l8cnr";
name = "chinese-conv";
};
@@ -6664,7 +6685,7 @@
sha256 = "0j0a1aqpayyxlay0mfj5gv1h27pqa3lj4z4x790y5lkgnlmwzsc0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chinese-fonts-setup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-fonts-setup";
sha256 = "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5";
name = "chinese-fonts-setup";
};
@@ -6677,15 +6698,15 @@
chinese-pyim = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip }:
melpaBuild {
pname = "chinese-pyim";
- version = "20160513.1008";
+ version = "20160520.1933";
src = fetchFromGitHub {
owner = "tumashu";
repo = "chinese-pyim";
- rev = "f00ef269ae45846ae6122e077cebe832d57207dc";
- sha256 = "15mb79k0jg637jhp6xswfxg0mg8x5g7sgi8mx6kk9hm30ndhvnmx";
+ rev = "62acd9f66662516b93870894758cc1cc4f3156a9";
+ sha256 = "1k3riw9hcrl7x3k8j4plsalwgxchjcvdnaik0zsr6ys4cf57zrh3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chinese-pyim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-pyim";
sha256 = "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l";
name = "chinese-pyim";
};
@@ -6706,7 +6727,7 @@
sha256 = "06k13wk659qw40aczq3i9gj0nyz6vb9z1nwsz7c1bgjbl2lh6hcv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chinese-remote-input";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-remote-input";
sha256 = "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag";
name = "chinese-remote-input";
};
@@ -6727,7 +6748,7 @@
sha256 = "0cx1g6drkr8gyqqdxjf7j4wprxcbq30gam2racgnvdicgij0apwg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chinese-wbim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-wbim";
sha256 = "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb";
name = "chinese-wbim";
};
@@ -6748,7 +6769,7 @@
sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chinese-word-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-word-at-point";
sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4";
name = "chinese-word-at-point";
};
@@ -6769,7 +6790,7 @@
sha256 = "14yzmyzkf846yjrwnqrbzmvyhfav39qa5fr8jnb7lyz8rm7y9pnq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chinese-yasdcv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-yasdcv";
sha256 = "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm";
name = "chinese-yasdcv";
};
@@ -6787,7 +6808,7 @@
sha256 = "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chm-view";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chm-view";
sha256 = "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz";
name = "chm-view";
};
@@ -6808,7 +6829,7 @@
sha256 = "1mqdz3rvx0jm80fgzw3s3lqn448kqrlrifdwcg36cqq4qmkpalq4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chronos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chronos";
sha256 = "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d";
name = "chronos";
};
@@ -6829,7 +6850,7 @@
sha256 = "0gx0bd7j71rlniq64vw8k59yzl070mdia05ry18br8kpsbk3bhrl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chruby";
sha256 = "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk";
name = "chruby";
};
@@ -6842,15 +6863,15 @@
cider = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, queue, seq, spinner }:
melpaBuild {
pname = "cider";
- version = "20160513.1259";
+ version = "20160521.2312";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "cider";
- rev = "5ba5091b60d28e8cc8e6a266295efeba88769ad0";
- sha256 = "1f0czkpr31b7dnmian488y85zd09ipinf22r94ipq0bzff2qa2ji";
+ rev = "873206e155b1ad39ad3b775d58d751a664622f66";
+ sha256 = "021cs6m2wx0gi42ndjrzisvjqg7pbkydwykmbll0gbcci5n26gcg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cider";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider";
sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx";
name = "cider";
};
@@ -6871,7 +6892,7 @@
sha256 = "1w4y65s3m2irga4iqfqqkcmvl6ss24zmaxqzbfib8jmi84r4lpac";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cider-decompile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider-decompile";
sha256 = "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4";
name = "cider-decompile";
};
@@ -6892,7 +6913,7 @@
sha256 = "0g8yzfpaz1glxd0dxrd19bvk469pdjkr4b11xifcvamxa2slryij";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cider-eval-sexp-fu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider-eval-sexp-fu";
sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq";
name = "cider-eval-sexp-fu";
};
@@ -6913,7 +6934,7 @@
sha256 = "0lgq4p7rs4prqfqd83v1l36xxacrd65jsfzbp7q62b2pjqikpgk0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cider-profile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider-profile";
sha256 = "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs";
name = "cider-profile";
};
@@ -6934,7 +6955,7 @@
sha256 = "1x96f5wc916dcwb75a34b6x1mas20gdgy34c7rg59n91ydn1mfaf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cider-spy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider-spy";
sha256 = "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh";
name = "cider-spy";
};
@@ -6955,7 +6976,7 @@
sha256 = "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cil-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cil-mode";
sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y";
name = "cil-mode";
};
@@ -6976,7 +6997,7 @@
sha256 = "190n4kdcqdwglhnawnj9mqjarmcaqylxipc07whmrii0jv279kjw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cinspect";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cinspect";
sha256 = "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj";
name = "cinspect";
};
@@ -6989,15 +7010,15 @@
circe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "circe";
- version = "20160515.655";
+ version = "20160522.314";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "circe";
- rev = "2e4cc7d6a6c46702d13bb00ff897d7daece92c4f";
- sha256 = "1jggh5ca2azzwldfxp3rwyd0qc777afgghzjqk2ajv1q06yskkqa";
+ rev = "ea13b639568a6486aa77bb23e5db8318d9698bb1";
+ sha256 = "0xfip9hdvkyx18sxz40jkfrvsw6zrw5yz6d34sg4fg0ni0f3bsqb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/circe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/circe";
sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07";
name = "circe";
};
@@ -7018,7 +7039,7 @@
sha256 = "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cl-format";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cl-format";
sha256 = "1259ykj6z6m6gaqhkmj5f3q9vyk7idpvlvlma5likpknxj5f444v";
name = "cl-format";
};
@@ -7039,7 +7060,7 @@
sha256 = "1mc8kayw8fmvpl0z09v6i68s2lharlwpzff0cvcsfn0an2imj2d0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cl-lib-highlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cl-lib-highlight";
sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8";
name = "cl-lib-highlight";
};
@@ -7055,11 +7076,11 @@
version = "20151116.738";
src = fetchsvn {
url = "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format";
- rev = "269727";
+ rev = "270371";
sha256 = "1miz9ycxk0vvvnfi0hn0jl3sipvsyibc7j4cf59l4drz34zi8y5x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clang-format";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clang-format";
sha256 = "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah";
name = "clang-format";
};
@@ -7080,7 +7101,7 @@
sha256 = "1h6k6kzim1zb87y1kzpqjzk3ip9bmfxyg54kdh2sfp4xy0g5h3p0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clean-aindent-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clean-aindent-mode";
sha256 = "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4";
name = "clean-aindent-mode";
};
@@ -7101,7 +7122,7 @@
sha256 = "1gkxmsjabnr9g36srxihs1d5n7p8ckqcmzcgpgsbp6s1990gzcig";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clean-buffers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clean-buffers";
sha256 = "025sxrqxm24yg1wpfncrjw1nm91h0h7jy2xd5g20xqlinqqvdihj";
name = "clean-buffers";
};
@@ -7122,7 +7143,7 @@
sha256 = "0y5z2pfhzpv67w2lnw1q06mflww90sfcilj89kqx2jhhrnrnn2ka";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clear-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clear-text";
sha256 = "1cx2lbcbhd024pq9njan7xrlvj3k4c3wdsvgbz5qyna0k06ix8dv";
name = "clear-text";
};
@@ -7143,7 +7164,7 @@
sha256 = "19q6zbnl9fg4cwgi56d7p4qp6y3g0fdyihinpakby49xv2n2k8dx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clevercss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clevercss";
sha256 = "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0";
name = "clevercss";
};
@@ -7164,7 +7185,7 @@
sha256 = "0hbdk1xdh753g59dgyqjj6wgjkf3crsd6pzaq7p5ifbfhrph0qjl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/click-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/click-mode";
sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r";
name = "click-mode";
};
@@ -7185,7 +7206,7 @@
sha256 = "0h856l6rslawf3vg37xhsaw5w56r9qlwzbqapg751qg0v7wf0860";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cliphist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cliphist";
sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29";
name = "cliphist";
};
@@ -7206,7 +7227,7 @@
sha256 = "07a55q97j2vsqpha0akri2kq90v1l97mc1mgr97pq39gc1bbc5d3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clipmon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clipmon";
sha256 = "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i";
name = "clipmon";
};
@@ -7227,7 +7248,7 @@
sha256 = "0msmigzip7hpjxwkz0khhlc2lj9wgb2919i4k0kv8ppi9j2f9hjc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clippy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clippy";
sha256 = "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg";
name = "clippy";
};
@@ -7248,7 +7269,7 @@
sha256 = "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clips-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clips-mode";
sha256 = "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf";
name = "clips-mode";
};
@@ -7269,7 +7290,7 @@
sha256 = "0m13gd28b49h2vzbw1knhs8x1b26m5n7ys046hxsxzmlqd1z05kx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clj-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clj-refactor";
sha256 = "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz";
name = "clj-refactor";
};
@@ -7301,7 +7322,7 @@
sha256 = "0ydv2prnw1j3m5nk23fqn4iv202kjswr8z0ip4zacdm8bl0q25ln";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cljr-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cljr-helm";
sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc";
name = "cljr-helm";
};
@@ -7322,7 +7343,7 @@
sha256 = "0flnfivz6w3pkham3g08m3xzy3jg1rzvxfa00vkr7ll8iyv4ypqc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cljsbuild-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cljsbuild-mode";
sha256 = "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214";
name = "cljsbuild-mode";
};
@@ -7343,7 +7364,7 @@
sha256 = "152qf7i5bf7xvr35gyawl8abkh7v5dsz957zxslrbbnc8bb1k6bz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clmemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clmemo";
sha256 = "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs";
name = "clmemo";
};
@@ -7364,7 +7385,7 @@
sha256 = "1rflc00yrbb7xzfh8c54ajf4qnhsp3mq07gkr257gjyrwsdw762v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cloc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cloc";
sha256 = "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a";
name = "cloc";
};
@@ -7385,7 +7406,7 @@
sha256 = "0hz6a7gj0zfsdaifkhwf965c96rkjc3kivvqlf50zllsw0ysbnn0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clocker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clocker";
sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k";
name = "clocker";
};
@@ -7395,22 +7416,22 @@
license = lib.licenses.free;
};
}) {};
- clojars = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, request }:
+ clojars = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred }:
melpaBuild {
pname = "clojars";
- version = "20151215.1533";
+ version = "20160519.35";
src = fetchFromGitHub {
owner = "joshuamiller";
repo = "clojars.el";
- rev = "b500b243c92d4311c4041ff3ecbb6a1dbbf8090f";
- sha256 = "1r189c0xm6vh05k0y715i5ldj1pxzvwkxqbq0n85m489mjnf2wv6";
+ rev = "7243d901afa5c8d209df7c4e6a62fb2828703aaf";
+ sha256 = "15hnjxc7xczidn3fl88zkb8868r0v1892pvhgzpwkh3biailfq5h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clojars";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojars";
sha256 = "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1";
name = "clojars";
};
- packageRequires = [ cl-lib request ];
+ packageRequires = [ request-deferred ];
meta = {
homepage = "https://melpa.org/#/clojars";
license = lib.licenses.free;
@@ -7427,7 +7448,7 @@
sha256 = "0943fh8309mvg73paf97i2mfkrnl04x11gy8iz73c9622bkkmpcb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clojure-cheatsheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-cheatsheet";
sha256 = "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv";
name = "clojure-cheatsheet";
};
@@ -7440,15 +7461,15 @@
clojure-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clojure-mode";
- version = "20160513.1147";
+ version = "20160521.1409";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clojure-mode";
- rev = "31e4b2064f1cfb8c94e05e249ab0b01a54d6b233";
- sha256 = "1wpf8700fx30578zr68wd284acccdk9vj8dwc1kfw9nkn5nff38b";
+ rev = "cff06c48cba02fbb7de0a81dcdab596712ba54bb";
+ sha256 = "1py9s177qiqymw152fxypd0bs15zgsy1i0fv46y704rbg5dj4png";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clojure-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-mode";
sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np";
name = "clojure-mode";
};
@@ -7465,11 +7486,11 @@
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clojure-mode";
- rev = "31e4b2064f1cfb8c94e05e249ab0b01a54d6b233";
- sha256 = "1wpf8700fx30578zr68wd284acccdk9vj8dwc1kfw9nkn5nff38b";
+ rev = "cff06c48cba02fbb7de0a81dcdab596712ba54bb";
+ sha256 = "1py9s177qiqymw152fxypd0bs15zgsy1i0fv46y704rbg5dj4png";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clojure-mode-extra-font-locking";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-mode-extra-font-locking";
sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n";
name = "clojure-mode-extra-font-locking";
};
@@ -7490,7 +7511,7 @@
sha256 = "1vgahik2q2sn6vqm9wg5b9jc74mkbc1md8pl69apz4cg397kjkzr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clojure-quick-repls";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-quick-repls";
sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0";
name = "clojure-quick-repls";
};
@@ -7511,7 +7532,7 @@
sha256 = "08sswxmrb94an95cjxxcppn3f8gvy99jdr4cbwlwk2yswdrxdlg0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clojure-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-snippets";
sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij";
name = "clojure-snippets";
};
@@ -7532,7 +7553,7 @@
sha256 = "0wc2zv4xirw3whpgrdhw156mz0m6had3nwk1xm1zswzblkgv754w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clomacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clomacs";
sha256 = "1vfjzrzp58ap75i0dh5bwnlkb8qbpfmrd3fg9n6aaibvvd2m3hyh";
name = "clomacs";
};
@@ -7553,7 +7574,7 @@
sha256 = "1p251vyh8fc6xzaf0v7yvf4wkrvcfjdb3qr88ll4xcb61gj3vi3a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/closql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/closql";
sha256 = "0a8fqw8n03x9mygvzb95m8mmfqp3j8hynwafvryjsl0np0695b6l";
name = "closql";
};
@@ -7574,7 +7595,7 @@
sha256 = "0v0wdq0b5jz4x0d7dl3ilgf3aqp2hk375db366ij6gxwd0b9i3na";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/closure-lint-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/closure-lint-mode";
sha256 = "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy";
name = "closure-lint-mode";
};
@@ -7595,7 +7616,7 @@
sha256 = "07kvnb6p35swkyj92c4wymsqq4r2885wdpqhv7nhicvi6n658kpf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cloud-to-butt-erc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cloud-to-butt-erc";
sha256 = "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f";
name = "cloud-to-butt-erc";
};
@@ -7616,7 +7637,7 @@
sha256 = "0fnl3b62clg9llcs2l511sxp4yishan4pqk45sqp8ih4rdzvy7ar";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clues-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clues-theme";
sha256 = "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy";
name = "clues-theme";
};
@@ -7637,7 +7658,7 @@
sha256 = "1rwln3ms71fys3rdv3sx8w706aqn874im3kqcfrkxz86wiazm2d5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cm-mode";
sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x";
name = "cm-mode";
};
@@ -7658,7 +7679,7 @@
sha256 = "030kg3m546gcm6cf1k928ld51znsfrzhlpm005dvqap3gkcrg4sf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cmake-font-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-font-lock";
sha256 = "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0";
name = "cmake-font-lock";
};
@@ -7671,15 +7692,15 @@
cmake-ide = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, levenshtein, lib, melpaBuild, seq }:
melpaBuild {
pname = "cmake-ide";
- version = "20160429.1322";
+ version = "20160520.1010";
src = fetchFromGitHub {
owner = "atilaneves";
repo = "cmake-ide";
- rev = "9a4d9f62a6540b2091e420ab6be64c35030e702c";
- sha256 = "0nx7jp3dc9j1h38kw91gnwjzx04rb9rl2l0qhi2y1py5spfpybja";
+ rev = "ae854c545c398fa96983a8a5b375d0744a8c932b";
+ sha256 = "0nxfanlwi96lfkl5gvvwbwpw3n4sb1y4sqspp04x0915iqylqbxm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cmake-ide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-ide";
sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg";
name = "cmake-ide";
};
@@ -7696,11 +7717,11 @@
src = fetchFromGitHub {
owner = "Kitware";
repo = "CMake";
- rev = "d08281094948eaefb495040f4a7bb45cba17a5a7";
- sha256 = "02znl19d1az9c4hc5hb3f2ygp63j3gzragw4daq8c00qwm7f62i6";
+ rev = "52eeef3264897ae111015b41262ae785c06737b6";
+ sha256 = "1bgv9n682568zxdfrrjajzica4ikj0693bh2rdpp49grcxdn9n08";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cmake-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-mode";
sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7";
name = "cmake-mode";
};
@@ -7721,7 +7742,7 @@
sha256 = "0fyzi8xac80wnhnwwm1j6yxpvpg1n4diq2lcl3qkj8klvk5gpxr6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cmake-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-project";
sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3";
name = "cmake-project";
};
@@ -7739,7 +7760,7 @@
sha256 = "13r8pjxknsfd6ywzlgcy4bm7fvr768ba34k6b7y365y3c1asz6y3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cmds-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmds-menu";
sha256 = "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks";
name = "cmds-menu";
};
@@ -7760,7 +7781,7 @@
sha256 = "0xdcw329d2gssx86iajwrgpr7yv69b9nflmzjgb4jvg4pskj4pgx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cmm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmm-mode";
sha256 = "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h";
name = "cmm-mode";
};
@@ -7781,7 +7802,7 @@
sha256 = "1635k51ppivq6v2702fihq8dvi33445smds9zhqm0drnpv9rv5cr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cn-outline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cn-outline";
sha256 = "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz";
name = "cn-outline";
};
@@ -7802,7 +7823,7 @@
sha256 = "1sx8grp3j7zcma3nb7zj6kijkdqx166vw1qgmm29hvx48bys6vlp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cobra-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cobra-mode";
sha256 = "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89";
name = "cobra-mode";
};
@@ -7823,7 +7844,7 @@
sha256 = "0gc56pdyzcnv3q1a82c79i8w58q9r6ccfix9s1s6msjxzxkznap5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/code-library";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/code-library";
sha256 = "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj";
name = "code-library";
};
@@ -7844,7 +7865,7 @@
sha256 = "11v671c4338bsizbmm7ypp4x9s5hiwyddsg2ig6h157gfv2597pp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/codebug";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/codebug";
sha256 = "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj";
name = "codebug";
};
@@ -7865,7 +7886,7 @@
sha256 = "0ch3naqp3ji0q4blpjfr1xbzgzxhw10h08y2akik96kk1pnkwism";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/codesearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/codesearch";
sha256 = "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx";
name = "codesearch";
};
@@ -7886,7 +7907,7 @@
sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/codic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/codic";
sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn";
name = "codic";
};
@@ -7907,7 +7928,7 @@
sha256 = "010v886ak0rbbhqwxwj6m0mkgh19s232igy7wwbv07l2pdqszf3p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/coffee-fof";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coffee-fof";
sha256 = "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc";
name = "coffee-fof";
};
@@ -7920,15 +7941,15 @@
coffee-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "coffee-mode";
- version = "20160419.2247";
+ version = "20160520.446";
src = fetchFromGitHub {
owner = "defunkt";
repo = "coffee-mode";
- rev = "e1331a2b1f29fe54a0d8b4facfa02ab2e115b7b2";
- sha256 = "0fh04pg114ngx7c6gcasl3dqaw41mggn6cnilj43nl1mpk0hdm4s";
+ rev = "d0223a4e85bf8cf534b79112499bde38a35648af";
+ sha256 = "10l7as2z903y5bgqb4zr203rx254l62wrn9zx9863p7vzw1yhbpd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/coffee-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coffee-mode";
sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1";
name = "coffee-mode";
};
@@ -7947,7 +7968,7 @@
sha256 = "1fpkymmgv58b734d2rr7cfj2j2if1qkwgrpk3yp2ibw2n2567y0s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/col-highlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/col-highlight";
sha256 = "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i";
name = "col-highlight";
};
@@ -7968,7 +7989,7 @@
sha256 = "0jjj1miwc7hw2fbb1fnmfnydim81djswla8iy4waam9014yraqci";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/colemak-evil";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/colemak-evil";
sha256 = "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z";
name = "colemak-evil";
};
@@ -7989,7 +8010,7 @@
sha256 = "1k3sd07ffgpfhzg7d9mb1gc3n02zsvilxc30bgiycbjrbjgqq0i6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/colonoscopy-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/colonoscopy-theme";
sha256 = "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q";
name = "colonoscopy-theme";
};
@@ -8002,15 +8023,15 @@
color-identifiers-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "color-identifiers-mode";
- version = "20150602.2104";
+ version = "20160519.1446";
src = fetchFromGitHub {
owner = "ankurdave";
repo = "color-identifiers-mode";
- rev = "e35ee05588d84517193db07d94ce7f29ace10ef6";
- sha256 = "0m98i8w513zdzkskw9a96dd73lnfbfwvr947b0djsrazn8grh6hv";
+ rev = "536151410dbb198b328dc62b829d9692cec0b1bd";
+ sha256 = "1zwgyp65jivds9zvbp5k5q3gazffh3w0mvs739ddq93lkf165rwh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/color-identifiers-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-identifiers-mode";
sha256 = "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq";
name = "color-identifiers-mode";
};
@@ -8031,7 +8052,7 @@
sha256 = "1p1f30qz4nd5a8ym2iwrgp6vhws0dls2qlc0apblj9nj3b0ziv0x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/color-moccur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-moccur";
sha256 = "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq";
name = "color-moccur";
};
@@ -8051,7 +8072,7 @@
sha256 = "17bidzq9kiz250gal1fn9mg8gf8l749nz69z0awpc4x2222wxxiz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/color-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme";
sha256 = "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79";
name = "color-theme";
};
@@ -8072,7 +8093,7 @@
sha256 = "1b0ymwszqsjcihcbfp7s4fjam983ixh3yb7sdc0rmqlyric1zwxq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/color-theme-approximate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-approximate";
sha256 = "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1";
name = "color-theme-approximate";
};
@@ -8093,7 +8114,7 @@
sha256 = "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/color-theme-buffer-local";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-buffer-local";
sha256 = "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0";
name = "color-theme-buffer-local";
};
@@ -8114,7 +8135,7 @@
sha256 = "0apvqrva3f7valjrxpslln8460kpr82z4zazj3lg3j82k102zla9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/color-theme-modern";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-modern";
sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm";
name = "color-theme-modern";
};
@@ -8135,7 +8156,7 @@
sha256 = "0cw1al8dan7vglkm33wkznvmyma903ckd95l1ns6qmf1d55lnpig";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/color-theme-sanityinc-solarized";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-sanityinc-solarized";
sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf";
name = "color-theme-sanityinc-solarized";
};
@@ -8148,15 +8169,15 @@
color-theme-sanityinc-tomorrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "color-theme-sanityinc-tomorrow";
- version = "20160505.404";
+ version = "20160521.1825";
src = fetchFromGitHub {
owner = "purcell";
repo = "color-theme-sanityinc-tomorrow";
- rev = "4a579e00fd1ca2ac20568bd6b9a0fdfa178fdfc3";
- sha256 = "0rpq2y9kvrags2f32pnadvp08sg17p1mrvfj6bj5c9pkf6b1gn6m";
+ rev = "5ce58a5aaa177fee7210284f94913ba71d009009";
+ sha256 = "18rj02ykh0r13fj2dz374698i2inavm2129gb041066mg8c3danb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/color-theme-sanityinc-tomorrow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-sanityinc-tomorrow";
sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd";
name = "color-theme-sanityinc-tomorrow";
};
@@ -8177,7 +8198,7 @@
sha256 = "1yn0wacicf218212d9qgn67pf16i7x6bih67zdfcplq4i9lqbpg3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/color-theme-solarized";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-solarized";
sha256 = "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf";
name = "color-theme-solarized";
};
@@ -8198,7 +8219,7 @@
sha256 = "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/colorsarenice-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/colorsarenice-theme";
sha256 = "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi";
name = "colorsarenice-theme";
};
@@ -8219,7 +8240,7 @@
sha256 = "0ay4wrnyrdp4v3vjxr99hy8fpq6zsyh246c0gbp7bh63l5fx8nwr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/column-enforce-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/column-enforce-mode";
sha256 = "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg";
name = "column-enforce-mode";
};
@@ -8237,7 +8258,7 @@
sha256 = "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/column-marker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/column-marker";
sha256 = "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq";
name = "column-marker";
};
@@ -8258,7 +8279,7 @@
sha256 = "06hll2frlx4sg9fj13a7ipq9y24isbjkjm6034xswhak40m7g1ii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/command-log-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/command-log-mode";
sha256 = "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj";
name = "command-log-mode";
};
@@ -8279,7 +8300,7 @@
sha256 = "0216hzdl4h1jssw5g2y95z4yx7abqsaxpk1s78r35w5cnx7kplrc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/command-queue";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/command-queue";
sha256 = "1jaywdg8vcf1v6ayy1zd5mjs0x3s96845ig9ssb08397lfqasx1k";
name = "command-queue";
};
@@ -8300,7 +8321,7 @@
sha256 = "06y7ika4781gkh94ygdaz7a760s7ahrma6af6n7cqhgjyikz7lg1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/commander";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/commander";
sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393";
name = "commander";
};
@@ -8321,7 +8342,7 @@
sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/comment-dwim-2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/comment-dwim-2";
sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj";
name = "comment-dwim-2";
};
@@ -8342,7 +8363,7 @@
sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/commenter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/commenter";
sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3";
name = "commenter";
};
@@ -8363,7 +8384,7 @@
sha256 = "04bma9sdn7h8fjz62wlcwayzhr7lvzhidh48wc5rk195zlbgagwa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/commify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/commify";
sha256 = "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m";
name = "commify";
};
@@ -8384,7 +8405,7 @@
sha256 = "14giiif043yvdaykq700v3n12j295a2pw1aygrl6gr42a3srbnpl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/common-lisp-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/common-lisp-snippets";
sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl";
name = "common-lisp-snippets";
};
@@ -8405,7 +8426,7 @@
sha256 = "0kfbpfkzv0v6v66v2jd2dddiabfizd3vgbyflgcgamsbxkifrl63";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company";
sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4";
name = "company";
};
@@ -8426,7 +8447,7 @@
sha256 = "1vkh0angvi9aqfbn2n1f2kq9myq0zw0dk19hqb5x6gxxd5s8l7hb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-anaconda";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-anaconda";
sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl";
name = "company-anaconda";
};
@@ -8447,7 +8468,7 @@
sha256 = "06gh33qzglv40r62dsapzhxwparw8ciblv80g7h6y6ilyazwcidn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-ansible";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ansible";
sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d";
name = "company-ansible";
};
@@ -8468,7 +8489,7 @@
sha256 = "08766m35s0r2fyv32y0h3sns9d5jykbgg24d2z8czklnc8hay7jc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-arduino";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-arduino";
sha256 = "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws";
name = "company-arduino";
};
@@ -8497,7 +8518,7 @@
sha256 = "0mkyg9y1rhl6hdzhr51psnvy2q0zw4y29m9p0ivb7s643k3fjjp5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-auctex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-auctex";
sha256 = "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4";
name = "company-auctex";
};
@@ -8518,7 +8539,7 @@
sha256 = "0jh2j260x1smlm4362dvgfpfpba7kg6hqvszjirc6mpm74zdcnp8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-c-headers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-c-headers";
sha256 = "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a";
name = "company-c-headers";
};
@@ -8539,7 +8560,7 @@
sha256 = "0ll9dxzsgrpy4psz3dqhzny990lfccn63swcyfvl8mnqgwbrq8k0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-cabal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-cabal";
sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra";
name = "company-cabal";
};
@@ -8560,7 +8581,7 @@
sha256 = "0lnb3qf1xhb0nbqy6ry0bkz2xrzfgkvavb7a3cbllawyz5idhfg5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-coq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-coq";
sha256 = "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa";
name = "company-coq";
};
@@ -8581,7 +8602,7 @@
sha256 = "0jkshkh44cgahpz2d7lrwfyl4kmhinivlbp08yn4zz6hpcvz87x9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-dcd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-dcd";
sha256 = "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd";
name = "company-dcd";
};
@@ -8598,22 +8619,22 @@
license = lib.licenses.free;
};
}) {};
- company-dict = callPackage ({ company, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ company-dict = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-dict";
- version = "20160222.1040";
+ version = "20160521.1830";
src = fetchFromGitHub {
owner = "hlissner";
repo = "emacs-company-dict";
- rev = "94e648cb9fd0f98829d3fd1395fcf5f3d72b4402";
- sha256 = "1i1b0v2qwb8bmjs8xjahnizf68m1qf2kll39l84ska47vn7csc3c";
+ rev = "e791f48067880ea79ddb588f78be4008d2dfb7ad";
+ sha256 = "1hirr6fc1advnyhianvzviwglc55b91gyw7k760yiar2q9saim0b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-dict";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-dict";
sha256 = "1377b40f1j4rmw7lnhy1zsm6r234ds5zsn02v1ajm3bzrpkkmin0";
name = "company-dict";
};
- packageRequires = [ company ];
+ packageRequires = [ cl-lib company ];
meta = {
homepage = "https://melpa.org/#/company-dict";
license = lib.licenses.free;
@@ -8630,7 +8651,7 @@
sha256 = "0n2hvrfbybsp57w6m9mm7ywjq30fwwx9bzc2rllfr06d2ms7naai";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-edbi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-edbi";
sha256 = "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm";
name = "company-edbi";
};
@@ -8651,7 +8672,7 @@
sha256 = "1ipknikwyd6h2w72s5sn32mfql4p2cmgv868n13r3wg42c619blq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-emoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-emoji";
sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3";
name = "company-emoji";
};
@@ -8672,7 +8693,7 @@
sha256 = "1di3nndif2gkzwvs8bvqg994z422ql308lh47hbjdjnqm182mwy7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-flx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-flx";
sha256 = "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn";
name = "company-flx";
};
@@ -8693,7 +8714,7 @@
sha256 = "1mc7y4j772x54n2wc2dskb5wjc46r7sg2jwyvmnj44cyaasxqmck";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-ghc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ghc";
sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn";
name = "company-ghc";
};
@@ -8714,7 +8735,7 @@
sha256 = "02gq083lpbszy8pf7s5j61bjlm0hacv4md4g17n0q6448rix9yny";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-ghci";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ghci";
sha256 = "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq";
name = "company-ghci";
};
@@ -8731,11 +8752,11 @@
src = fetchFromGitHub {
owner = "nsf";
repo = "gocode";
- rev = "d527ffeea56e6e9001b36b78efa577beb659b8a1";
- sha256 = "0l99pdbbqkib7vmxb4sr20zpy1bxzpbgp9i9dcygviqazswb6c63";
+ rev = "15ca134d752c32e5eb27e2597cd2ee48f3a87639";
+ sha256 = "120bdalz29b5lvl0iqg00da194ihrwwbbib8gjga8w5gnnscm6nx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-go";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-go";
sha256 = "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29";
name = "company-go";
};
@@ -8756,7 +8777,7 @@
sha256 = "0fnv4rvvs9rqzrs86g23jcrpg0rcgk25299hm6jm08ia0kjjby1m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-inf-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-inf-ruby";
sha256 = "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm";
name = "company-inf-ruby";
};
@@ -8777,7 +8798,7 @@
sha256 = "15xv59c6pwdysr9hqvaj7jgsa9pnicy7cnn9dq53zngjh3f5mf83";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-irony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-irony";
sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km";
name = "company-irony";
};
@@ -8798,7 +8819,7 @@
sha256 = "1x2dfjmy86icyv2g1y5bjlr87w8rixqdcndkwm1sba6ha277wp9i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-irony-c-headers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-irony-c-headers";
sha256 = "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8";
name = "company-irony-c-headers";
};
@@ -8819,7 +8840,7 @@
sha256 = "0bpqswcc6a65wms0pdk9rsad9jiigmx2l1jaqr8bz4va945qdlhg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-jedi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-jedi";
sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj";
name = "company-jedi";
};
@@ -8840,7 +8861,7 @@
sha256 = "1fwb333p4yv02msx67p0n4bgzwa73d2zh78mwx79jani32m730ci";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-lua";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-lua";
sha256 = "13sm7ya2ndqxwdjarhxbmg7fvr3413c7p3n6yf1i4rabbliqsf2c";
name = "company-lua";
};
@@ -8861,7 +8882,7 @@
sha256 = "1xsk02ymgj0gfblz2f6pzwh96crgx4m524ia6m95kcxrd7y63004";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-math";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-math";
sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87";
name = "company-math";
};
@@ -8882,7 +8903,7 @@
sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-nand2tetris";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-nand2tetris";
sha256 = "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886";
name = "company-nand2tetris";
};
@@ -8903,7 +8924,7 @@
sha256 = "0cs79d3cz1lncnvrh9h4pyrm3rfbxd524psvx9sd6fhbf5914wix";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-ngram";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ngram";
sha256 = "1y9k9s8c248m91xld4f5l75j4swml333rpwq590bsx7mrsq131xx";
name = "company-ngram";
};
@@ -8924,7 +8945,7 @@
sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-nixos-options";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-nixos-options";
sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0";
name = "company-nixos-options";
};
@@ -8945,7 +8966,7 @@
sha256 = "0sl59b9wwnpz6p2kxsc87b3q28vvfxg7pwk67c51q8qyrl0c1klv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-qml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-qml";
sha256 = "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx";
name = "company-qml";
};
@@ -8966,7 +8987,7 @@
sha256 = "1b2v84ss5k43nnbsnvabgvb19ardsacbs1prn2h9i1k2d5mb8icw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-quickhelp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-quickhelp";
sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g";
name = "company-quickhelp";
};
@@ -8987,7 +9008,7 @@
sha256 = "1lk3fqsgbi6mg4hrpc9gy4hbfp9snyj4yvc0zh8iqqw5nx12dab4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-racer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-racer";
sha256 = "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4";
name = "company-racer";
};
@@ -9008,7 +9029,7 @@
sha256 = "04829y7510zxjww9pq8afvnzwyyv30c0b3a71mxwf6ympfxb9rx5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-restclient";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-restclient";
sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb";
name = "company-restclient";
};
@@ -9035,7 +9056,7 @@
sha256 = "097v261fp0j7sjg6fkxwywpqf1vg1i2gq3i7m34vxzvs9l7ahagl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-shell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-shell";
sha256 = "0my9jghf3s4idkgrpki8mj1lm5ichfvznb09lfwf07fjhg0q1apz";
name = "company-shell";
};
@@ -9052,11 +9073,11 @@
src = fetchFromGitHub {
owner = "nathankot";
repo = "company-sourcekit";
- rev = "14d503d96fe595a688a3f162ae5739e4b08da24b";
- sha256 = "1ynyxrpl9qd2l60dpn9kb04zxgq748fffb0yj8pxvm9q3abblf3m";
+ rev = "fa537304a0a6f90944d797ce58bc067603b6f987";
+ sha256 = "0b0qs398kqy6jsq22hahmfrlb6v8v3bcdgi3z2kamczb0a5k0zhf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-sourcekit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-sourcekit";
sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs";
name = "company-sourcekit";
};
@@ -9077,7 +9098,7 @@
sha256 = "0pdzr7sqpja3cr2mydx9b4813r1g9jilpin7n13sjbqyk8108xc6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-tern";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-tern";
sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh";
name = "company-tern";
};
@@ -9098,7 +9119,7 @@
sha256 = "1isnk2i64kppsr23nr6qm5kwxxwcp4xazjwvm2chyzl4vbvp03p2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-try-hard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-try-hard";
sha256 = "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj";
name = "company-try-hard";
};
@@ -9119,7 +9140,7 @@
sha256 = "0pjxahrhvz7l45whqlgm6n4mvqqxc8zs1dv33p3b498hyb83f52j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-web";
sha256 = "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy";
name = "company-web";
};
@@ -9140,7 +9161,7 @@
sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-ycm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ycm";
sha256 = "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina";
name = "company-ycm";
};
@@ -9161,7 +9182,7 @@
sha256 = "1x138lbjy87sk68sjx07l3in2d9qzcc3pa9vgzvg95aiaacnk8qi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-ycmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ycmd";
sha256 = "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk";
name = "company-ycmd";
};
@@ -9174,15 +9195,15 @@
composable = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "composable";
- version = "20160504.1314";
+ version = "20160519.1357";
src = fetchFromGitHub {
owner = "paldepind";
repo = "composable.el";
- rev = "3397b352b0503682875c527e8909bef1551128cd";
- sha256 = "160wcnxdjqkidaybyywjkdaik8sg7pz0anv30g7p2iv6if6j35x7";
+ rev = "73f46689cc298f87d2986fe634dadc930581addd";
+ sha256 = "0phqphcgygy2amwy6lm96mxxhwac03p177lyklksy71gwlr3zxb5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/composable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/composable";
sha256 = "1fs4pczjn9sv12sladf6zbkz0cmzxr0jaqkiwryydal1l5nqqxcy";
name = "composable";
};
@@ -9203,7 +9224,7 @@
sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/concurrent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/concurrent";
sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf";
name = "concurrent";
};
@@ -9224,7 +9245,7 @@
sha256 = "09vq7hcsw4027whn3xrnfz9hkgkakva619hyz0zfgpvppqah9n1p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/config-parser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/config-parser";
sha256 = "0wncg1v4wccb9j16rcmwz8fcmrscj7knfisq0r4qqx3skrmpccah";
name = "config-parser";
};
@@ -9244,7 +9265,7 @@
sha256 = "18859zi60s2y79add998vxh084znbdxxq31m12flg7makxlamyh7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/confluence";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/confluence";
sha256 = "0hplpqaxjg34pf75p9sf97wlbq4rz9f8qvn4cfpjxf16if078ls3";
name = "confluence";
};
@@ -9265,7 +9286,7 @@
sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/conkeror-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/conkeror-minor-mode";
sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933";
name = "conkeror-minor-mode";
};
@@ -9286,7 +9307,7 @@
sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/connection";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/connection";
sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q";
name = "connection";
};
@@ -9307,7 +9328,7 @@
sha256 = "0ykc3lzdypf543dgm7jpi70z08kz9hwhn2gvp06ylb22id8b3fai";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/contextual";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/contextual";
sha256 = "0vribs0fa1xf5kwkmvzjwhiawni0p3v56c5l4dkz8d7wn2g6wfdx";
name = "contextual";
};
@@ -9328,7 +9349,7 @@
sha256 = "1qsq543rb0z2fq716a2khs8zqyh13npzmbj58f00s8b3w3andpbh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/control-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/control-mode";
sha256 = "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6";
name = "control-mode";
};
@@ -9349,7 +9370,7 @@
sha256 = "00055gzv032xxzqm1hffipljy8fzgsm58cbv8dzajh035jvdgpv7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/corral";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/corral";
sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da";
name = "corral";
};
@@ -9362,15 +9383,15 @@
counsel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }:
melpaBuild {
pname = "counsel";
- version = "20160510.524";
+ version = "20160519.1044";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "c20867b7468643fe2cd4894b5fc80f6cdfc4932f";
- sha256 = "09lag11n2vw4bbs9clndrp5nbyy7dzr4vp3vfy58i3j90nxvrzfm";
+ rev = "12145d74ebd884ce5b674be71df8ac69b59e7d04";
+ sha256 = "0xzskxyj9w01w1kjy1y5igcirinhr3y6rqfj32g1f1xkn0f91sg5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/counsel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/counsel";
sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6";
name = "counsel";
};
@@ -9391,7 +9412,7 @@
sha256 = "1jzqhbw6mid7p5s88lwk1vjb12fmmxc3zfkhdkvxiglmanqghq6f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/counsel-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/counsel-projectile";
sha256 = "1gshphxaa902kq878rnizn3k1zycakwqkciz92z3xxb3bdyy0hnl";
name = "counsel-projectile";
};
@@ -9412,7 +9433,7 @@
sha256 = "0glnvr10lwi17g44653qqswn9vnyh5r2nmpaa0y6lvfb952zn0k0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/coverage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coverage";
sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm";
name = "coverage";
};
@@ -9433,7 +9454,7 @@
sha256 = "1q6cx6kq68xxqcx7zd9l4szy038i5ifjb82fxs3sn5fv00q0j9vd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/coverlay";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coverlay";
sha256 = "0p5k9254r3i247h6ll6kjsgw3naiff5lgfkmb2wkc870lzggq0m4";
name = "coverlay";
};
@@ -9454,7 +9475,7 @@
sha256 = "1z67x4a0aricd9q6i2w33k74alddl6w0rijjhzyxwml7ibhbvphz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cp5022x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cp5022x";
sha256 = "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl";
name = "cp5022x";
};
@@ -9475,7 +9496,7 @@
sha256 = "1rk0bwdvfrp24z69flh7jg3c8vgvwk6vciixmmmldnrlwhpnbh6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cpputils-cmake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cpputils-cmake";
sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60";
name = "cpputils-cmake";
};
@@ -9496,7 +9517,7 @@
sha256 = "18nxsd1axd3m70p7cw4ifcj33z9v5w25v6g09q38maixymlad962";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cql-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cql-mode";
sha256 = "0wdal8w0i73xjak2g0wazs54z957f4lj4n8qdmzpcylzpl1lqd88";
name = "cql-mode";
};
@@ -9517,7 +9538,7 @@
sha256 = "0y37fx4ghx8a74cp7ci6p5yfpji8g42hlah2xcwfnyw0qlpqfbnl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/crab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crab";
sha256 = "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj";
name = "crab";
};
@@ -9538,7 +9559,7 @@
sha256 = "12g6l6xlbs9h24q5lk8yjgk91xqd7r3v7r6czy10r09cmfjmkxbb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/crappy-jsp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crappy-jsp-mode";
sha256 = "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii";
name = "crappy-jsp-mode";
};
@@ -9559,7 +9580,7 @@
sha256 = "0l4bvk3m355b25d7pdnhczn3fckbq0rg2l4r0a0d94004ksvylqa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/creds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/creds";
sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk";
name = "creds";
};
@@ -9580,7 +9601,7 @@
sha256 = "18c4jfjnhb7asdhwj41g06cp9rz5xd7bbx2s1xvk6gahay27rlrv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/creole";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/creole";
sha256 = "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5";
name = "creole";
};
@@ -9601,7 +9622,7 @@
sha256 = "0japww5x89vd1ahjm2bc3biz6wxv94vvqq5fyyzkqsblgk5bys0h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/creole-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/creole-mode";
sha256 = "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s";
name = "creole-mode";
};
@@ -9622,7 +9643,7 @@
sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/crm-custom";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crm-custom";
sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c";
name = "crm-custom";
};
@@ -9643,7 +9664,7 @@
sha256 = "1r9dhk8h8lq18vi0hjai8y4z42yjxg18786mcr2qs5m3q1ampf9d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/crontab-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crontab-mode";
sha256 = "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci";
name = "crontab-mode";
};
@@ -9662,7 +9683,7 @@
sha256 = "120hxk82i0r4qan4hfk9ldmw5a8bzv7p683lrnlcx9gyxgkia3am";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/crosshairs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crosshairs";
sha256 = "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp";
name = "crosshairs";
};
@@ -9683,7 +9704,7 @@
sha256 = "1vk1p0541fwama5dngrm15v2qw6gpzakh9gs6j739bckgky8nlhk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/crux";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crux";
sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c";
name = "crux";
};
@@ -9704,7 +9725,7 @@
sha256 = "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cryptol-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cryptol-mode";
sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2";
name = "cryptol-mode";
};
@@ -9725,7 +9746,7 @@
sha256 = "0ry0087g1br3397js7a9iy6k2x6p0dgqlggxx9gaqhms7pmpq14b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cryptsy-public-api";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cryptsy-public-api";
sha256 = "1331nrx57136k09a7p6imv0k9g6w8ibpwn5xmv33dxc22hsmc41j";
name = "cryptsy-public-api";
};
@@ -9742,11 +9763,11 @@
src = fetchFromGitHub {
owner = "josteink";
repo = "csharp-mode";
- rev = "a631944161af0de659695dcfad19940f65716175";
- sha256 = "00gccc5sl6ng2g9hayckjp6ib93v5azhmhiksmxxddkqwhgw0qg3";
+ rev = "acaa9bb11e059e7035008e746db823efc46a4974";
+ sha256 = "1i8bnb809487scrpgf8pfmmldsplpkqz4ik7xriixsr8gm0ag4pl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/csharp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/csharp-mode";
sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0";
name = "csharp-mode";
};
@@ -9767,7 +9788,7 @@
sha256 = "0nvl6y90p9crk12j7aw0cqdjhli7xbrx3hqckxsnvrnxy4zax7nk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/css-comb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/css-comb";
sha256 = "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf";
name = "css-comb";
};
@@ -9788,7 +9809,7 @@
sha256 = "1mgc6bd0dzrp1dq1yj8m2qxjnpysd8ppdk2yp96d3zd07zllw4rx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/css-eldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/css-eldoc";
sha256 = "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf";
name = "css-eldoc";
};
@@ -9809,7 +9830,7 @@
sha256 = "0hyf4im7b8zka065daw7yxrb3670dpp8q92vd2gcsva1jla92h9y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cssfmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cssfmt";
sha256 = "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8";
name = "cssfmt";
};
@@ -9830,7 +9851,7 @@
sha256 = "1xf2hy077frfz8qf91c0l0qppcjxzr4bsbb622bx6fidqkpa3a1a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cssh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cssh";
sha256 = "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk";
name = "cssh";
};
@@ -9848,7 +9869,7 @@
sha256 = "15rfg3326xcs3zj3siy9rn7yff101vfch1srskdi2650c3l3krva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/csv-nav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/csv-nav";
sha256 = "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj";
name = "csv-nav";
};
@@ -9869,7 +9890,7 @@
sha256 = "07vasdlai49qs0nsmq2cz1kcq1adqyarv8199imgwwcbh4vn7dqb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ctable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctable";
sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1";
name = "ctable";
};
@@ -9888,7 +9909,7 @@
sha256 = "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ctags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctags";
sha256 = "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y";
name = "ctags";
};
@@ -9909,7 +9930,7 @@
sha256 = "1va394nls4yi77rgm0kz5r00xiidj6lwcabhqxisz08m3h8gfkh2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ctags-update";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctags-update";
sha256 = "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf";
name = "ctags-update";
};
@@ -9930,7 +9951,7 @@
sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ctl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctl-mode";
sha256 = "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj";
name = "ctl-mode";
};
@@ -9951,7 +9972,7 @@
sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ctxmenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctxmenu";
sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp";
name = "ctxmenu";
};
@@ -9972,7 +9993,7 @@
sha256 = "184plai32sn0indvi1dma6ykz907zgnrdyxdw6f5mghwca96g5kx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cucumber-goto-step";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cucumber-goto-step";
sha256 = "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8";
name = "cucumber-goto-step";
};
@@ -9993,7 +10014,7 @@
sha256 = "1ms0z5zplcbdwwdbgsjsbm32i57z9i2i8j9y3wm0pwzyz4zr36zy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cuda-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cuda-mode";
sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300";
name = "cuda-mode";
};
@@ -10011,7 +10032,7 @@
sha256 = "1w0msh4mfhwglkwgb8ksqfdzbd1bvspllydnjzhc0yl3s7qrifbd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cursor-chg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cursor-chg";
sha256 = "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk";
name = "cursor-chg";
};
@@ -10021,6 +10042,27 @@
license = lib.licenses.free;
};
}) {};
+ cursor-in-brackets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "cursor-in-brackets";
+ version = "20160520.538";
+ src = fetchFromGitHub {
+ owner = "yascentur";
+ repo = "cursor-in-brackets-el";
+ rev = "219ae4ae0533436c95cee47b68bc46ba78046fb7";
+ sha256 = "1xp2zrn46b7p149ldmcx4r32x04kh2fxxidwl4ssrxx65yi1qg8d";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cursor-in-brackets";
+ sha256 = "1p4p0v7x4i4i2z56dw4xf1phckanrwjciifi0zqba36xd4zxgx8f";
+ name = "cursor-in-brackets";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/cursor-in-brackets";
+ license = lib.licenses.free;
+ };
+ }) {};
cursor-test = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cursor-test";
@@ -10032,7 +10074,7 @@
sha256 = "0wmnhizv4jfcl1w9za4ydxf6xwxgm5vwmn1zi5vn70zmv4d6r49l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cursor-test";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cursor-test";
sha256 = "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1";
name = "cursor-test";
};
@@ -10050,7 +10092,7 @@
sha256 = "1p0kacbw5zfrd7zplhlh7j1890spvn8p0bryvqqmyf8w5873pcmh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cus-edit+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cus-edit+";
sha256 = "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz";
name = "cus-edit-plus";
};
@@ -10071,7 +10113,7 @@
sha256 = "1yhizh8j745hv5ancpvijds9dasvsr2scwjscksp2x3krnd26ssp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cyberpunk-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cyberpunk-theme";
sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9";
name = "cyberpunk-theme";
};
@@ -10092,7 +10134,7 @@
sha256 = "1d5i8sm1xrsp4v4myidfyb40hm3wp7hgva7dizg9gbb7prmn1p5w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cycbuf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cycbuf";
sha256 = "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw";
name = "cycbuf";
};
@@ -10105,15 +10147,15 @@
cycle-resize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cycle-resize";
- version = "20150602.1523";
+ version = "20160521.1157";
src = fetchFromGitHub {
owner = "pierre-lecocq";
repo = "cycle-resize";
- rev = "1a5ed3ff6f7f5dc097c38b4361708b6882af692c";
- sha256 = "0hf3r89n9zn7wkay71drxadsnd9zm6p6kvg5mvwzdy3x3z4cfyi3";
+ rev = "7d255d6fe85f12c967a0f7fcfcf18633be194c88";
+ sha256 = "1bmdjr99g50dzr4y1jxixfjhqmhrzblmpiyjhh5l5gqmdhammm4k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cycle-resize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cycle-resize";
sha256 = "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi";
name = "cycle-resize";
};
@@ -10134,7 +10176,7 @@
sha256 = "125s6vwbb9zpx6h3vrxnn7nr8pb45vhxd70ba2r3f87dlxah93am";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cycle-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cycle-themes";
sha256 = "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc";
name = "cycle-themes";
};
@@ -10152,7 +10194,7 @@
sha256 = "09my4gj3qm9rdpk8lg6n6ki8ywj7kwzwd4hhgwascfnfi1hzwdvw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cygwin-mount";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cygwin-mount";
sha256 = "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb";
name = "cygwin-mount";
};
@@ -10173,7 +10215,7 @@
sha256 = "1xcd8j5chh5j3fibi8bg2il6r09vza5xlb5fqm9j8sg3vkab26z8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cyphejor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cyphejor";
sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g";
name = "cyphejor";
};
@@ -10194,7 +10236,7 @@
sha256 = "0vbcq807jpjssabmyjcdkpp6nnx1288is2c6x79dkrviw2xxw3qf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cypher-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cypher-mode";
sha256 = "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0";
name = "cypher-mode";
};
@@ -10211,11 +10253,11 @@
src = fetchFromGitHub {
owner = "cython";
repo = "cython";
- rev = "c975662204754a42963ba5b293e3983937615056";
- sha256 = "1rf5jbl4zv7cqjbd6nhymi71i6adghvypz0kdw3q5q00lpwphnwb";
+ rev = "33ff4edd971ee55452f8c5ce23e6e3d99d098abf";
+ sha256 = "0h0rf9mn4ialy7fns1h46m0y8i5fnqgsl7ma1dcla064w3ddh47y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cython-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cython-mode";
sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i";
name = "cython-mode";
};
@@ -10236,7 +10278,7 @@
sha256 = "1ck1a61m0kjynqwzbw9hnc7y2a6gd6l1430wm7mw3qqsq959qwm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/czech-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/czech-holidays";
sha256 = "10c0zscbn7pr9xqdqksy4kh0cxjg9bhw8p4qzlk18fd4c8rhqn84";
name = "czech-holidays";
};
@@ -10257,7 +10299,7 @@
sha256 = "1568jqcrw3xks1pvvn6dyn6jiam26vmp5m53jf8q4165ic2lazi8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/d-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/d-mode";
sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2";
name = "d-mode";
};
@@ -10278,7 +10320,7 @@
sha256 = "0fp40cyamchc9qq5vbpxgq3yp6vs8p3ncg46mjzr54psy3fc86dm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dactyl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dactyl-mode";
sha256 = "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm";
name = "dactyl-mode";
};
@@ -10299,7 +10341,7 @@
sha256 = "0fd0h07m42q2h1ggsjra20kzv209rpb4apjv408h2dxqm8sy0jiy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dakrone-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dakrone-theme";
sha256 = "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814";
name = "dakrone-theme";
};
@@ -10320,7 +10362,7 @@
sha256 = "1shysnf34qxd5rabad14a26m5id88g4wl4y4mwap53l2p3mcxq38";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/danneskjold-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/danneskjold-theme";
sha256 = "0cwab7qp293g92n9mjjz2vpg1pz2q3d40hfszf29rci89wsf3yxl";
name = "danneskjold-theme";
};
@@ -10341,7 +10383,7 @@
sha256 = "128a9iv1vrassmk4sy4cs4nj6lggr5v4rhjj04v1xssj5nn5flxf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/darcula-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darcula-theme";
sha256 = "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg";
name = "darcula-theme";
};
@@ -10362,7 +10404,7 @@
sha256 = "07w5aycgaps904q8lk52d0g28wxq41c82xgl5mw2q56n3s5iixfx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dark-krystal-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dark-krystal-theme";
sha256 = "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j";
name = "dark-krystal-theme";
};
@@ -10383,7 +10425,7 @@
sha256 = "052k8mqxx8lkadxyz6rwa7l741rwbd1blk2ggpsj2s1g6p9l68a1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dark-mint-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dark-mint-theme";
sha256 = "0rljpwycarbn8rnac9vz7n23j69wmx35gn5dx77v0f0ws8ni4k9m";
name = "dark-mint-theme";
};
@@ -10404,7 +10446,7 @@
sha256 = "1w0y2j0j9n107dbk7ksr9bipshjfs9dk08qbs9m6h5aqh4hmwa4r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dark-souls";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dark-souls";
sha256 = "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc";
name = "dark-souls";
};
@@ -10425,7 +10467,7 @@
sha256 = "19vrxfzhi0sqf7frzjx5z02d65r2jp1w2nhhf0527g7baid5hqvf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/darkburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darkburn-theme";
sha256 = "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w";
name = "darkburn-theme";
};
@@ -10446,7 +10488,7 @@
sha256 = "0d2g4iyp8gyfrcc1gkvl40p1shlw1sadswzhry0m1lgbyxiiklrz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/darkmine-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darkmine-theme";
sha256 = "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5";
name = "darkmine-theme";
};
@@ -10467,7 +10509,7 @@
sha256 = "1603pk88mnzvwv75wdqk83s0wba4q2b7cmg5bwn2yncxmirmh3lq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/darkokai-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darkokai-theme";
sha256 = "0jw71xl4ihkyq4m0w8c35x5hr8ic07wcabmvpwmvspnj8hkfccwf";
name = "darkokai-theme";
};
@@ -10488,7 +10530,7 @@
sha256 = "0qqak05w8y5734d78wc22l82y9riz12mxsg0b4zrjbd2l16bxf1c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/darktooth-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darktooth-theme";
sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs";
name = "darktooth-theme";
};
@@ -10509,7 +10551,7 @@
sha256 = "0ylzgaf4g0fh16rc061iaw3jrl2sjiwpr4x1ndk2bp0j14n7hqid";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dart-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dart-mode";
sha256 = "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff";
name = "dart-mode";
};
@@ -10526,11 +10568,11 @@
src = fetchFromGitHub {
owner = "magnars";
repo = "dash.el";
- rev = "6d8abc7322ab4509f5836c05b8145090d725fb19";
- sha256 = "1c34smidkkw0cb2sbzbnxmyiy1pvz93cpb61nzhzgcrdy8xkk41y";
+ rev = "eef3bb05bdc09cc8f02b748f8d04274ebc74c22d";
+ sha256 = "1xahb9zf70qqadpfja490127fjhf9i0q3mdx6ymwhqzwgdlppqm7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dash";
sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz";
name = "dash";
};
@@ -10551,7 +10593,7 @@
sha256 = "0zd50sr51mmvndjb9qfc3sn502nhc939rhd454jbkmlrzqsxvphj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dash-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dash-at-point";
sha256 = "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m";
name = "dash-at-point";
};
@@ -10568,11 +10610,11 @@
src = fetchFromGitHub {
owner = "magnars";
repo = "dash.el";
- rev = "6d8abc7322ab4509f5836c05b8145090d725fb19";
- sha256 = "1c34smidkkw0cb2sbzbnxmyiy1pvz93cpb61nzhzgcrdy8xkk41y";
+ rev = "eef3bb05bdc09cc8f02b748f8d04274ebc74c22d";
+ sha256 = "1xahb9zf70qqadpfja490127fjhf9i0q3mdx6ymwhqzwgdlppqm7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dash-functional";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dash-functional";
sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p";
name = "dash-functional";
};
@@ -10593,7 +10635,7 @@
sha256 = "0l4z9rjla4xvm2hmp07xil69q1cg0v8iff0ya41svaqr944qf7hf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/date-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/date-at-point";
sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0";
name = "date-at-point";
};
@@ -10614,7 +10656,7 @@
sha256 = "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/date-field";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/date-field";
sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk";
name = "date-field";
};
@@ -10624,6 +10666,48 @@
license = lib.licenses.free;
};
}) {};
+ datetime = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "datetime";
+ version = "20160521.1603";
+ src = fetchFromGitHub {
+ owner = "doublep";
+ repo = "datetime";
+ rev = "02465ed669ed122ce3ce1682142dfca60820ae5d";
+ sha256 = "0dz65zw7zi4kjldxs3syjxnss8kaf7hx0v6a22jplcsy35iai6xn";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/datetime";
+ sha256 = "0mnkckibymc5dswmzd1glggna2fspk06ld71m7aaz6j78nfrm850";
+ name = "datetime";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/datetime";
+ license = lib.licenses.free;
+ };
+ }) {};
+ datetime-format = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "datetime-format";
+ version = "20160520.622";
+ src = fetchFromGitHub {
+ owner = "zonuexe";
+ repo = "emacs-datetime";
+ rev = "3a1871613facc928ff250ed8f12fbc7073e46b75";
+ sha256 = "0pabb260d3vcr57jqqxqk90vp2qnm63sky37rgvhv508zix2hbva";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/datetime-format";
+ sha256 = "0v9jp54qxzj2scbmr35xi6bz16q8bq6hmyxdglb3a4qbf4zgvwpi";
+ name = "datetime-format";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/datetime-format";
+ license = lib.licenses.free;
+ };
+ }) {};
datomic-snippets = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s, yasnippet }:
melpaBuild {
pname = "datomic-snippets";
@@ -10635,7 +10719,7 @@
sha256 = "0ry7magy9x63xv2apjbpgszp0slch92g23gqwl4rd564qafajmf0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/datomic-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/datomic-snippets";
sha256 = "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r";
name = "datomic-snippets";
};
@@ -10656,7 +10740,7 @@
sha256 = "1j0mk8vyr6sniliq0ix77jldx8vzl73nd5yhh82klzgyymal58ms";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dayone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dayone";
sha256 = "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l";
name = "dayone";
};
@@ -10677,7 +10761,7 @@
sha256 = "0syv4kr319d34yqi4q61b8jh5yy22wvd148x1m3pc511znh2ry5k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/db";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/db";
sha256 = "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n";
name = "db";
};
@@ -10698,7 +10782,7 @@
sha256 = "15r0qwjkl33p8kh2k5kxz9wnbkv1k470b1h0i6svvljkx9ynk68a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/db-pg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/db-pg";
sha256 = "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg";
name = "db-pg";
};
@@ -10719,7 +10803,7 @@
sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ddskk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ddskk";
sha256 = "01pb00p126q7swsl12yjrhghln2wgaj65jhjr0k7dkk64x4psyc9";
name = "ddskk";
};
@@ -10740,7 +10824,7 @@
sha256 = "1darxggvyv100cfb7imyzvgif8a09pnky62pf3bl2612hhvaijfb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/debpaste";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/debpaste";
sha256 = "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw";
name = "debpaste";
};
@@ -10761,7 +10845,7 @@
sha256 = "1n99nrp42slmyp5228d1nz174bysjn122jgs8fn1x0qxywg7jyxp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/debug-print";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/debug-print";
sha256 = "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm";
name = "debug-print";
};
@@ -10782,7 +10866,7 @@
sha256 = "05n57djagbkm8im4168d5d2fr2ibfnckya7qzrca1f9rmm0ah15j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/decide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/decide";
sha256 = "1gjkays48lhrifi9jwja5n2dpxjbl7f9rmka1nsqg9vf7s59vhhc";
name = "decide";
};
@@ -10803,7 +10887,7 @@
sha256 = "01bafkc99g9vi45y95mi3sqin2lsfw885z63f7llpqvnfav86n4y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/decl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/decl";
sha256 = "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k";
name = "decl";
};
@@ -10824,7 +10908,7 @@
sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dedicated";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dedicated";
sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9";
name = "dedicated";
};
@@ -10845,7 +10929,7 @@
sha256 = "1lnvr1rxgf1i0dh1gqlkghz6r4lm1llpv3vhky313220ibxrpsvm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dedukti-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dedukti-mode";
sha256 = "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9";
name = "dedukti-mode";
};
@@ -10866,7 +10950,7 @@
sha256 = "1ysv1q7n7k2l4x8x7hlzmxmawyxl5lx627sbdv3phkvjh5zccsm8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/default-text-scale";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/default-text-scale";
sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi";
name = "default-text-scale";
};
@@ -10887,7 +10971,7 @@
sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/deferred";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/deferred";
sha256 = "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr";
name = "deferred";
};
@@ -10908,7 +10992,7 @@
sha256 = "02i621yq2ih0zp7mna8iykj41prv77hvcadz7rx8c942zyvjzxqd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/define-word";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/define-word";
sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a";
name = "define-word";
};
@@ -10929,7 +11013,7 @@
sha256 = "07jzr571q02l0lg5d40rnmzg16hmybi1nkjgslmvlx46z3c4xvyr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/defproject";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/defproject";
sha256 = "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm";
name = "defproject";
};
@@ -10948,7 +11032,7 @@
sha256 = "0hgz4n509k69qxy5nhwa5w4q1i5sprhk212n52wdzjfzdrxsn1c0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/deft";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/deft";
sha256 = "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p";
name = "deft";
};
@@ -10966,7 +11050,7 @@
sha256 = "0lqg23mpzcbcfkn84wm8i1bma73wpyh3m5f0zjrrzbwpgsmw8fqd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/delight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/delight";
sha256 = "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj";
name = "delight";
};
@@ -10987,7 +11071,7 @@
sha256 = "06a20sd8nc273azrgha40l1fbqvv9qmxsmkjiqbf6dcf1blkwjyf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/delim-kill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/delim-kill";
sha256 = "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig";
name = "delim-kill";
};
@@ -11008,7 +11092,7 @@
sha256 = "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/demangle-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/demangle-mode";
sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk";
name = "demangle-mode";
};
@@ -11029,7 +11113,7 @@
sha256 = "0bilf8q2y28vymvi796qs20whw12wi2n2apyxwgcghwmlddzz29c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/demo-it";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/demo-it";
sha256 = "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7";
name = "demo-it";
};
@@ -11050,7 +11134,7 @@
sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/describe-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/describe-number";
sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji";
name = "describe-number";
};
@@ -11071,7 +11155,7 @@
sha256 = "10f5dkrwfd6a1ab98j2kywkh1h01pnanvj2i7fv9a9vxnmiywrcf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/desktop+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/desktop+";
sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8";
name = "desktop-plus";
};
@@ -11092,7 +11176,7 @@
sha256 = "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/desktop-registry";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/desktop-registry";
sha256 = "1sfj0w6hlrx37js63fn1v5xc9ngmahv07g42z68717md6w3c8g0v";
name = "desktop-registry";
};
@@ -11113,7 +11197,7 @@
sha256 = "0m4gw6jsdj8pq6wxvvczwvp8pcjnz57ybnb9zib4bq1cajny42zg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/devdocs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/devdocs";
sha256 = "04a1yspk3dwx0lzyg03lrbvig4g6sqmavzwicshdyr7q1bny7ikn";
name = "devdocs";
};
@@ -11133,7 +11217,7 @@
sha256 = "0mv3vs91c73ybf7x9lwlfiv05cb8w42d86zzqzraivswljz2qfhk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dic-lookup-w3m";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dic-lookup-w3m";
sha256 = "0zc0phym431bjqg0r8n5xsa98m52xnbhpqlh0jcvcy02nbmdc584";
name = "dic-lookup-w3m";
};
@@ -11154,7 +11238,7 @@
sha256 = "0b8yg03h5arfl5rlzlg2a6q7nhx452mdyngizjzxlvkmrqnlra4v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dictcc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dictcc";
sha256 = "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm";
name = "dictcc";
};
@@ -11175,7 +11259,7 @@
sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dictionary";
sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w";
name = "dictionary";
};
@@ -11188,15 +11272,15 @@
diff-hl = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "diff-hl";
- version = "20160514.2001";
+ version = "20160517.1931";
src = fetchFromGitHub {
owner = "dgutov";
repo = "diff-hl";
- rev = "4bfa149d60024da408970e24edc8ece81eb0d32c";
- sha256 = "1nsdnppcj64hrzhz1pb6y5nsj75j0r0i6ap3w2apq4jbh0ij6149";
+ rev = "4925dde3996db902398b771b568072373e337fa4";
+ sha256 = "1rlgyw1c0xz0vw10pq2wnczl5r2qhm5fcilmysvlfcq0nxcsd80q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/diff-hl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diff-hl";
sha256 = "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6";
name = "diff-hl";
};
@@ -11217,7 +11301,7 @@
sha256 = "14ccak3cmv36pd085188lypal9gd3flyikcrxn0wi6hn60w2dgvr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/diffscuss-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diffscuss-mode";
sha256 = "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh";
name = "diffscuss-mode";
};
@@ -11238,7 +11322,7 @@
sha256 = "0diw887x4q7kbgdvxbbnxdw51z33kqwxw3v9m45fczxbywyi4cxf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/diffview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diffview";
sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k";
name = "diffview";
};
@@ -11259,7 +11343,7 @@
sha256 = "0qxdfv1p0140fqcxh677hhxwpx1fihvwhvh76pysn4q4pcfr6ldr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/digistar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/digistar-mode";
sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s";
name = "digistar-mode";
};
@@ -11280,7 +11364,7 @@
sha256 = "17jfmgyras32w9xr8fldqj924bijgng4bjg9fy6ckwb3mgihyil8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dim";
sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52";
name = "dim";
};
@@ -11293,15 +11377,15 @@
dim-autoload = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dim-autoload";
- version = "20150815.1132";
+ version = "20160521.1028";
src = fetchFromGitHub {
owner = "tarsius";
repo = "dim-autoload";
- rev = "d68ef0d2f9204ffe0d521e2647e6d8f473588fd3";
- sha256 = "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans";
+ rev = "ac04fade74a50fd2aac48fc298e4d21d8427f737";
+ sha256 = "0jn3hwnqg455fz85m79mbwsiv93ps4sfr1fcfjfwj3qhhbhq7d82";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dim-autoload";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dim-autoload";
sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9";
name = "dim-autoload";
};
@@ -11322,7 +11406,7 @@
sha256 = "04vfc5zgcjp0pax5zk1x98ivx5g349c5g3748lb9pgsijqaprgg4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/diminish";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diminish";
sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43";
name = "diminish";
};
@@ -11343,7 +11427,7 @@
sha256 = "1ldqxdwy6r0fd2vh0ckkhgpincvybghavi8c7vvyd24j91i57y2f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dionysos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dionysos";
sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz";
name = "dionysos";
};
@@ -11364,7 +11448,7 @@
sha256 = "0mcsfsybpsxhzkd2m9bzc0np49azm6qf5x4x9h9lbxc8vfgh4z8s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dircmp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dircmp";
sha256 = "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c";
name = "dircmp";
};
@@ -11385,7 +11469,7 @@
sha256 = "06m2p5sf47ykhkl958x4k0j0rxzrq0wfwf86mvnarlgc1215dbaf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-atool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-atool";
sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w";
name = "dired-atool";
};
@@ -11406,7 +11490,7 @@
sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-avfs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-avfs";
sha256 = "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm";
name = "dired-avfs";
};
@@ -11424,7 +11508,7 @@
sha256 = "1ddrhj1kw0wl7jbs9jn067vfffsvqhz4izfw9f7ihxz34fdl2iza";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-details";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-details";
sha256 = "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck";
name = "dired-details";
};
@@ -11443,7 +11527,7 @@
sha256 = "07z4h5l8763ks6b6m8dcmq78jiyq4xvan1mb0z8fbasmi1bsrya4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-details+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-details+";
sha256 = "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx";
name = "dired-details-plus";
};
@@ -11464,7 +11548,7 @@
sha256 = "1lcmpzwj43gix2q56bh2gw3gfqh8vl5j3mqr8s7v3k0aw816j0ni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-dups";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-dups";
sha256 = "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71";
name = "dired-dups";
};
@@ -11485,7 +11569,7 @@
sha256 = "0jj9da880b4zwxba140fldai1x9p2sxc6hdf3wz6lnbvz1pyn1mv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-efap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-efap";
sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00";
name = "dired-efap";
};
@@ -11506,7 +11590,7 @@
sha256 = "1lnqjkbzryv655n16xj1c5bxck2jb5ccy8yckz1wp5yikkr06ba8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-fdclone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-fdclone";
sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9";
name = "dired-fdclone";
};
@@ -11527,7 +11611,7 @@
sha256 = "06hxcxgivxds42qilraqa6q1mlrhkn21w2adb1dg70p8qyrjqfk6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-filetype-face";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-filetype-face";
sha256 = "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6";
name = "dired-filetype-face";
};
@@ -11548,7 +11632,7 @@
sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-filter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-filter";
sha256 = "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p";
name = "dired-filter";
};
@@ -11569,7 +11653,7 @@
sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-hacks-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-hacks-utils";
sha256 = "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi";
name = "dired-hacks-utils";
};
@@ -11590,7 +11674,7 @@
sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-imenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-imenu";
sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1";
name = "dired-imenu";
};
@@ -11611,7 +11695,7 @@
sha256 = "1bg7msz672rp2l490l3wm99i18b30r6033yfkrq6ia742nagn040";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-k";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-k";
sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8";
name = "dired-k";
};
@@ -11632,7 +11716,7 @@
sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-narrow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-narrow";
sha256 = "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d";
name = "dired-narrow";
};
@@ -11653,7 +11737,7 @@
sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-open";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-open";
sha256 = "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx";
name = "dired-open";
};
@@ -11671,7 +11755,7 @@
sha256 = "110ad0dxzqqgql3igp5103n50h8949ff07nvfx12n78b0qcwrkgp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired+";
sha256 = "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5";
name = "dired-plus";
};
@@ -11692,7 +11776,7 @@
sha256 = "0j5y9hlb864i7vmdwwdrzil9sp8di68gv2pdp2cy35w2p75rbvsx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-quick-sort";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-quick-sort";
sha256 = "01vrk3wqq2zmcblyp9abi2lvrzr2a5ca8r8gjjnr5223037ppl3l";
name = "dired-quick-sort";
};
@@ -11713,7 +11797,7 @@
sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-rainbow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-rainbow";
sha256 = "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882";
name = "dired-rainbow";
};
@@ -11734,7 +11818,7 @@
sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-ranger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-ranger";
sha256 = "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h";
name = "dired-ranger";
};
@@ -11755,7 +11839,7 @@
sha256 = "01xvaqckyr31ywsn1fp9sz9wq4h4dd1hgghfqypc9s4akrxmgnf2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-single";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-single";
sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf";
name = "dired-single";
};
@@ -11773,7 +11857,7 @@
sha256 = "1dpxkxxfs14sdm3hwxv0j26lq0qzx4gryw42vrcdi680aj24962z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-sort";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-sort";
sha256 = "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x";
name = "dired-sort";
};
@@ -11791,7 +11875,7 @@
sha256 = "1i42r7j1c8677qf79ig33bia24d2yvcj26y92migfvrlbi03w4qi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-sort-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-sort-menu";
sha256 = "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb";
name = "dired-sort-menu";
};
@@ -11810,7 +11894,7 @@
sha256 = "1hjci4zfzig04ji1jravxg9n67rdr4wyhmxmahbrzq9kjnql510i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-sort-menu+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-sort-menu+";
sha256 = "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq";
name = "dired-sort-menu-plus";
};
@@ -11831,7 +11915,7 @@
sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-subtree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-subtree";
sha256 = "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk";
name = "dired-subtree";
};
@@ -11852,7 +11936,7 @@
sha256 = "1yx20h16hc1b04knsqhrxni0j8qgwnq7i5b0dlggq3dakcvqfxma";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-toggle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-toggle";
sha256 = "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5";
name = "dired-toggle";
};
@@ -11873,7 +11957,7 @@
sha256 = "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-toggle-sudo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-toggle-sudo";
sha256 = "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va";
name = "dired-toggle-sudo";
};
@@ -11894,7 +11978,7 @@
sha256 = "1rx7vq6yl83fbmb76sczbb1bv972s4cyg160sm2yap1i6nzhd10p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/diredful";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diredful";
sha256 = "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x";
name = "diredful";
};
@@ -11915,7 +11999,7 @@
sha256 = "0mis3m6lg3vlvp8qm8iajprgx3pm3gcbhdszsm9mvrcgkahdjqnr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/direx";
sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm";
name = "direx";
};
@@ -11936,7 +12020,7 @@
sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/direx-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/direx-grep";
sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2";
name = "direx-grep";
};
@@ -11955,7 +12039,7 @@
sha256 = "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dirtree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dirtree";
sha256 = "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29";
name = "dirtree";
};
@@ -11976,7 +12060,7 @@
sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dirtree-prosjekt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dirtree-prosjekt";
sha256 = "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk";
name = "dirtree-prosjekt";
};
@@ -11997,7 +12081,7 @@
sha256 = "1srlz63pncxndh1kmb6dl5sxaanspxa444wg998dld3dkdflwavq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/disaster";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/disaster";
sha256 = "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn";
name = "disaster";
};
@@ -12018,7 +12102,7 @@
sha256 = "0f7h2rhh37lrs6xclj182li6s1fawv5m8w3hgy6qgm06dam45lka";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/discover";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/discover";
sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga";
name = "discover";
};
@@ -12039,7 +12123,7 @@
sha256 = "0l2g58f55p8zmzv2q2hf163ggm9p0wk8hg93wlkyldrgyb94dgf4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/discover-clj-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/discover-clj-refactor";
sha256 = "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r";
name = "discover-clj-refactor";
};
@@ -12060,7 +12144,7 @@
sha256 = "1vnbn4asz3lifscvy4shzisl6r0gkgq0qsa3kpgif3853wcd2rvn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/discover-js2-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/discover-js2-refactor";
sha256 = "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki";
name = "discover-js2-refactor";
};
@@ -12081,7 +12165,7 @@
sha256 = "0b73nc4jkf9bggnlp0l34jfcgx91vxbpavz6bpnf5rjvm0v1bil9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/discover-my-major";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/discover-my-major";
sha256 = "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg";
name = "discover-my-major";
};
@@ -12099,7 +12183,7 @@
sha256 = "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/disk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/disk";
sha256 = "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n";
name = "disk";
};
@@ -12120,7 +12204,7 @@
sha256 = "075gj81rnhrvv061wnldixpfmlsyfbnvacnk107z6f9v3m2m3vl1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dispass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dispass";
sha256 = "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z";
name = "dispass";
};
@@ -12141,7 +12225,7 @@
sha256 = "0r560bpgw5p2pfcgkgcrlpp1bprv1f23dl4y5fjk06dg93fgaysa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/display-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/display-theme";
sha256 = "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa";
name = "display-theme";
};
@@ -12162,7 +12246,7 @@
sha256 = "03d8zb2is7n2y2z0k6j37cijjc3ndgasxsm9gqyq7drlq9bqwzsm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/distinguished-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/distinguished-theme";
sha256 = "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4";
name = "distinguished-theme";
};
@@ -12183,7 +12267,7 @@
sha256 = "0w3avhk4i7yp8bk66f75jzl1imgalwaxmynqrgyv617ajmzakkwp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dix";
sha256 = "0c5fmknpy6kwlz7nx0csbbia1maz0szj7yha1p7wq28s3a5426xq";
name = "dix";
};
@@ -12204,7 +12288,7 @@
sha256 = "0w3avhk4i7yp8bk66f75jzl1imgalwaxmynqrgyv617ajmzakkwp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dix-evil";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dix-evil";
sha256 = "1jscaksnl5qmpqgkjkv6sx56llz0w4p5h7j73c4a1hld94gwklh3";
name = "dix-evil";
};
@@ -12225,7 +12309,7 @@
sha256 = "120zgp38nz4ssid6bv0zy5rnf2claa5s880incgljqyl0vmj9nq5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dizzee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dizzee";
sha256 = "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs";
name = "dizzee";
};
@@ -12246,7 +12330,7 @@
sha256 = "15i25zh54b2fqji0qmkg502051ymccih6pgqnzq02c43dpnsqhqv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/django-manage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/django-manage";
sha256 = "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh";
name = "django-manage";
};
@@ -12267,7 +12351,7 @@
sha256 = "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/django-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/django-mode";
sha256 = "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara";
name = "django-mode";
};
@@ -12288,7 +12372,7 @@
sha256 = "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/django-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/django-snippets";
sha256 = "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw";
name = "django-snippets";
};
@@ -12309,7 +12393,7 @@
sha256 = "1azf4p6salga7269l0kf13bqlxf9idp0ys8mm20qpyjpj79p5g9w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/django-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/django-theme";
sha256 = "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf";
name = "django-theme";
};
@@ -12330,7 +12414,7 @@
sha256 = "1nbvdnw9g3zbbb0n2sn2kxfzs5wichhl9qid3qjp8dsiq1wpv459";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dkdo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dkdo";
sha256 = "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300";
name = "dkdo";
};
@@ -12351,7 +12435,7 @@
sha256 = "063nnln5m42qf190vr2z0ibacyn7n0xkxm3v5vaa4gxdvdwzhshs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dklrt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dklrt";
sha256 = "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561";
name = "dklrt";
};
@@ -12372,7 +12456,7 @@
sha256 = "1nz71g8pb19aqjcb4s94hhn6j30cc04q05kmwvcbxpjb11qqrv49";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dkmisc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dkmisc";
sha256 = "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z";
name = "dkmisc";
};
@@ -12393,7 +12477,7 @@
sha256 = "1xx4ccr3mfxay2j3wgd93qw5dpjasaq9mkmmjww3ibpf86ahf7l3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dmenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dmenu";
sha256 = "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0";
name = "dmenu";
};
@@ -12414,7 +12498,7 @@
sha256 = "0z28j7x7wgkc1cg1q1kz1lhdx1v1n6s88ixgkm8hn458h9bfnr3n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dna-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dna-mode";
sha256 = "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9";
name = "dna-mode";
};
@@ -12435,7 +12519,7 @@
sha256 = "1nbm3wzd12rsrhnwlcc6b72b1ala328mfpcp5bwlfcdshw6mfcrq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/docbook-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/docbook-snippets";
sha256 = "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq";
name = "docbook-snippets";
};
@@ -12456,7 +12540,7 @@
sha256 = "055kr0qknjgnjs7dn6gdmahrdbs8piwldbz7vg1hgq3b046x8lky";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/docean";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/docean";
sha256 = "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9";
name = "docean";
};
@@ -12466,22 +12550,22 @@
license = lib.licenses.free;
};
}) {};
- docker = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, s, tablist }:
+ docker = callPackage ({ dash, docker-tramp, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, s, tablist }:
melpaBuild {
pname = "docker";
- version = "20160511.1208";
+ version = "20160520.1044";
src = fetchFromGitHub {
owner = "Silex";
repo = "docker.el";
- rev = "b1df97b9ab144241e1e69608ccae411a6358cb4d";
- sha256 = "0117gnm6fm5zmf77i85750brkkcl72sx9k1dzf78mnln493xcdml";
+ rev = "5f4c890a28bdd2f69790d1021afeb3cbdb61dccc";
+ sha256 = "1r0k3hqsicvxrc5am7ym5ygflnqnsn91hqzvhshxgz4a53i89rgl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/docker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/docker";
sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk";
name = "docker";
};
- packageRequires = [ dash emacs magit-popup s tablist ];
+ packageRequires = [ dash docker-tramp emacs magit-popup s tablist ];
meta = {
homepage = "https://melpa.org/#/docker";
license = lib.licenses.free;
@@ -12498,7 +12582,7 @@
sha256 = "0lamp8xkn84q14xswvzwcamp2rk2rvgm15zf8iki5yp6zz1dppb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/docker-api";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/docker-api";
sha256 = "1giqiapm4hf4dhfm3x69qqpir3jg7qz3parhbx88xxqrd1z18my0";
name = "docker-api";
};
@@ -12519,7 +12603,7 @@
sha256 = "0bvnvs17cbisymiqp96q4y2w2jqy5hd0zyk6rv7mihr9p97ak9kv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/docker-tramp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/docker-tramp";
sha256 = "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w";
name = "docker-tramp";
};
@@ -12540,7 +12624,7 @@
sha256 = "0vx7lv54v4bznn4mik4i6idb9dl7fpp3gw7nyhymbkr6hx884haw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dockerfile-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dockerfile-mode";
sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa";
name = "dockerfile-mode";
};
@@ -12561,7 +12645,7 @@
sha256 = "1qfmq8l4jqyrhfplsr1zd8bg9qqqwbh3mhipqzja0px0knjpqj85";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dokuwiki-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dokuwiki-mode";
sha256 = "1jc3sn61mipkhgr91wp74s673jk2w5991p54jlw05qqpf5gmxd7v";
name = "dokuwiki-mode";
};
@@ -12582,7 +12666,7 @@
sha256 = "1xyqsnymgdd8ic3az2lgwv7s7vld6d4pcycb234bxm4in9fixgdj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dollaro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dollaro";
sha256 = "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h";
name = "dollaro";
};
@@ -12603,7 +12687,7 @@
sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/doom";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/doom";
sha256 = "098q77lix7kwpmarv26yndyk1yy1h4k3l9kaf3g7sg6ji6k7d3wl";
name = "doom";
};
@@ -12621,7 +12705,7 @@
sha256 = "0201clwq9nbl8336lddcbwah8d6xipr7q8135yq79szfxq2bdg6v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/doremi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/doremi";
sha256 = "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb";
name = "doremi";
};
@@ -12640,7 +12724,7 @@
sha256 = "1ay8rkcyydjqi1081vphb8iw3w2zc73m5bg1dz2mkxhksqwchqvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/doremi-cmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/doremi-cmd";
sha256 = "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05";
name = "doremi-cmd";
};
@@ -12659,7 +12743,7 @@
sha256 = "0v7ycmddh1ds64m1y5yai5nh34bd32q3wcm5y2pdzhj6jk7nj5wz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/doremi-frm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/doremi-frm";
sha256 = "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz";
name = "doremi-frm";
};
@@ -12677,7 +12761,7 @@
sha256 = "157kvlb4dqiyk1h7b4p0dhrr6crdakwnrxydyl6yh51w2hdnnigw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/doremi-mac";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/doremi-mac";
sha256 = "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls";
name = "doremi-mac";
};
@@ -12695,7 +12779,7 @@
sha256 = "0sfmcd1rq6wih9q7d9vkcfrw6gf7309mm7491jx091ij8m4p8ypp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dos";
sha256 = "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc";
name = "dos";
};
@@ -12713,7 +12797,7 @@
sha256 = "0xhbzq3yvfvvvl6mfihrzkd3pn5p5yxvbcyf2jhsppk7lscifsgk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dot-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dot-mode";
sha256 = "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh";
name = "dot-mode";
};
@@ -12734,7 +12818,7 @@
sha256 = "0v52djg39b6k2snizd9x0qc009ws5y0ywqsfwhqgcbs5ymzh7dsc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/download-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/download-region";
sha256 = "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl";
name = "download-region";
};
@@ -12755,7 +12839,7 @@
sha256 = "0s7swvfd7h8r0n3cjmkps6ary9vwg61jylfm4qrkp3idsz6is548";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/downplay-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/downplay-mode";
sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b";
name = "downplay-mode";
};
@@ -12776,7 +12860,7 @@
sha256 = "03n3k6a40lw9m1ycf62g6vll4gr2kr2509vjp1dkfq722xwrw7zk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dpaste";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dpaste";
sha256 = "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz";
name = "dpaste";
};
@@ -12797,7 +12881,7 @@
sha256 = "1avpg0cgzk8d6g1q0ryx41lkcdgkm0mkzr5xr32xm28dzrfmgd4z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dpaste_de";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dpaste_de";
sha256 = "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp";
name = "dpaste_de";
};
@@ -12814,11 +12898,11 @@
src = fetchFromGitHub {
owner = "zenorocha";
repo = "dracula-theme";
- rev = "692d31237f7c4232a8f15c3dc28e10a5d1d50f6e";
- sha256 = "06lqb1wdc8fgr1ls9930nrwfzyv49axqy8diasjhvbg0gryay6p6";
+ rev = "8405de6a31526c56906bd90efd61055641c0b0f5";
+ sha256 = "04j83f238bpm815r3h9l6qwyfgak53d83kdn2ma048kb3wmbh817";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dracula-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dracula-theme";
sha256 = "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r";
name = "dracula-theme";
};
@@ -12839,7 +12923,7 @@
sha256 = "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/draft-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/draft-mode";
sha256 = "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh";
name = "draft-mode";
};
@@ -12852,15 +12936,15 @@
drag-stuff = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "drag-stuff";
- version = "20160427.231";
+ version = "20160520.1459";
src = fetchFromGitHub {
owner = "rejeep";
repo = "drag-stuff.el";
- rev = "07332b9f4725ad11d123e0fc5593c0c1c37db381";
- sha256 = "131ww26pb97q2gyjhfrsf7nw2pi5b1kba0cgl97qc017sfhg92v6";
+ rev = "324239532b4a8b45dce778ef62e843d3ee0161aa";
+ sha256 = "0vcc1pfxsjbrslh4k6d14xv4k8pvkg09kikwf7ipis12l62df6i4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/drag-stuff";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drag-stuff";
sha256 = "1q67q20gfhixzkmddhzp6fd8z2qfpsmyyvymmaffjcscnjaz21w4";
name = "drag-stuff";
};
@@ -12881,7 +12965,7 @@
sha256 = "1z3akh0ywzihr0ghk6f8x9z38mwqy3zg29p0q69h4i6yzhxpdmxa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/drawille";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drawille";
sha256 = "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil";
name = "drawille";
};
@@ -12902,7 +12986,7 @@
sha256 = "0lzq0mkhhj3s5yrcbs576qxkd8h0m2ikc4iplk97ddpzh4nz4127";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/drill-instructor-AZIK-force";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drill-instructor-AZIK-force";
sha256 = "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f";
name = "drill-instructor-AZIK-force";
};
@@ -12923,7 +13007,7 @@
sha256 = "1s4cz5s0mw733ak9ps62fs150y3psqmb6v5s6s88jjfsi0r03c0s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dropbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dropbox";
sha256 = "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f";
name = "dropbox";
};
@@ -12941,7 +13025,7 @@
sha256 = "1szy46sk3nvlbb3yzk1s983281kkf507xr3fkclkki3d3x31n08a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dropdown-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dropdown-list";
sha256 = "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z";
name = "dropdown-list";
};
@@ -12962,7 +13046,7 @@
sha256 = "1hbm3zdmd28fjl8fky0kq4gs2bxsrn2zxk9rd1wa2wky43ycnd35";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/drupal-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drupal-mode";
sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn";
name = "drupal-mode";
};
@@ -12983,7 +13067,7 @@
sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/drupal-spell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drupal-spell";
sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3";
name = "drupal-spell";
};
@@ -12998,11 +13082,11 @@
version = "20130120.1557";
src = fetchsvn {
url = "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/";
- rev = "1744172";
+ rev = "1745073";
sha256 = "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dsvn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dsvn";
sha256 = "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6";
name = "dsvn";
};
@@ -13023,7 +13107,7 @@
sha256 = "1blfx3r2xd3idbfjrx44ma3x1d83xp67il2s2bmdwa8qz92z99lf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dtrace-script-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dtrace-script-mode";
sha256 = "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4";
name = "dtrace-script-mode";
};
@@ -13044,7 +13128,7 @@
sha256 = "1zzy0xdybclpch818nv6b9fqawfv8hga4x9x4xwjxd7h8nxjhc85";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dtrt-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dtrt-indent";
sha256 = "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5";
name = "dtrt-indent";
};
@@ -13065,7 +13149,7 @@
sha256 = "0cafvhbpfqd8ajqg2757fs64kryrl2ckvbp5abldb4y8fa14pb9l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dts-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dts-mode";
sha256 = "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234";
name = "dts-mode";
};
@@ -13086,7 +13170,7 @@
sha256 = "1ixb78dv66lmqlbv4zl5ysvv1xqafvqh1h5cfdv03jdkqlfk34jz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ducpel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ducpel";
sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc";
name = "ducpel";
};
@@ -13107,7 +13191,7 @@
sha256 = "0wdlly5aqzscbqd86vbp02hhcxs2c6ah70kbs1n7m7z0n607x2z6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dumb-jump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dumb-jump";
sha256 = "1pgbs2k1g8w7gr65w50fazrmcky6w37c9rvyxqfmh06yx90nj4kc";
name = "dumb-jump";
};
@@ -13128,7 +13212,7 @@
sha256 = "0qsjp1xh8cp5wl4xi9yg2nwy982jgxji41hpbg7rff5hcn7svii9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dummy-h-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dummy-h-mode";
sha256 = "10lzfzq7md6s28w2zzlhswn3d6765g4vqzyjn2q5ms8pd2i4b4in";
name = "dummy-h-mode";
};
@@ -13149,7 +13233,7 @@
sha256 = "0g72nnz0j6dvllyxyrw20z1vg6p7sy46yy0fq017pa77sgqm0xzh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dummyparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dummyparens";
sha256 = "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk";
name = "dummyparens";
};
@@ -13170,7 +13254,7 @@
sha256 = "1qaiwm8mf4656gc1pdj8ivgy4abkjsypr52pvf4nrdkkln9qzfli";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/duplicate-thing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/duplicate-thing";
sha256 = "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4";
name = "duplicate-thing";
};
@@ -13190,7 +13274,7 @@
sha256 = "19aid1rqpqj0fvln98db5imfk1griqld55xsr9plm6kwrr174syq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dyalog-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dyalog-mode";
sha256 = "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq";
name = "dyalog-mode";
};
@@ -13211,7 +13295,7 @@
sha256 = "0fxdv594k6p4kv6nc598rw51sy4x10dvbyhzn3gni2linb3v1c5h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dylan-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dylan-mode";
sha256 = "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy";
name = "dylan-mode";
};
@@ -13232,7 +13316,7 @@
sha256 = "150dj1g49q9x9zx9wkymq30l5gc8c4mhsq91fm6q0yj6ip7hlfxh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dynamic-fonts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dynamic-fonts";
sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q";
name = "dynamic-fonts";
};
@@ -13253,7 +13337,7 @@
sha256 = "1jsjk4fkisgprn2w1d1385kbc9w1bd707biapd1y453k20q5c4h5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dynamic-ruler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dynamic-ruler";
sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc";
name = "dynamic-ruler";
};
@@ -13274,7 +13358,7 @@
sha256 = "0d18kdpw4zfbq4bkqh19cf42xlinxqa71lr2d994phaxqxqq195w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2ansi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2ansi";
sha256 = "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94";
name = "e2ansi";
};
@@ -13295,7 +13379,7 @@
sha256 = "1lx0c7s810x6prf7x1lnx412gll8nn8gqpmi56n319n406cxhnhw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm";
sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la";
name = "e2wm";
};
@@ -13316,7 +13400,7 @@
sha256 = "1g77gf24abwcvf7z52vs762s6jp978pnvza8zmzwkwfvp1mkx233";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm-R";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-R";
sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh";
name = "e2wm-R";
};
@@ -13337,7 +13421,7 @@
sha256 = "121vd44f42bxqvdjswmjlghf1jalbs974b6cip2i049k1n08xgh0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm-bookmark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-bookmark";
sha256 = "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5";
name = "e2wm-bookmark";
};
@@ -13358,7 +13442,7 @@
sha256 = "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-direx";
sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg";
name = "e2wm-direx";
};
@@ -13379,7 +13463,7 @@
sha256 = "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm-pkgex4pl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-pkgex4pl";
sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil";
name = "e2wm-pkgex4pl";
};
@@ -13400,7 +13484,7 @@
sha256 = "0h1fnlpvy2mqfxjv64znghmiadh9qimj9q9a60cxhyc0bq0prz6f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm-svg-clock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-svg-clock";
sha256 = "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms";
name = "e2wm-svg-clock";
};
@@ -13421,7 +13505,7 @@
sha256 = "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm-sww";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-sww";
sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8";
name = "e2wm-sww";
};
@@ -13442,7 +13526,7 @@
sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm-term";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-term";
sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g";
name = "e2wm-term";
};
@@ -13463,7 +13547,7 @@
sha256 = "09ikwg5s42b50lfj0796pa2h32larkf5j6cy042dzh8c441vgih4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/easy-after-load";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-after-load";
sha256 = "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys";
name = "easy-after-load";
};
@@ -13484,7 +13568,7 @@
sha256 = "1qn0givyh07w41sv5xayfzlwbpbq7p39wbhmwsgffgfqzzz5r2ys";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/easy-escape";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-escape";
sha256 = "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk";
name = "easy-escape";
};
@@ -13505,7 +13589,7 @@
sha256 = "0i2plbvaalapx3svryn5lrc68m0qj1xm0z577xxzq7i9z91nanq7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/easy-kill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-kill";
sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i";
name = "easy-kill";
};
@@ -13526,7 +13610,7 @@
sha256 = "0mmhqid0x56m0p3b18a757147fy8km3p4kmi0y94kjq04a4ysg3k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/easy-kill-extras";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-kill-extras";
sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy";
name = "easy-kill-extras";
};
@@ -13547,7 +13631,7 @@
sha256 = "0qpabig0qrkyhhiifjpq9a7qv7h3nlqmpz79xy8lk58xy6rj0zk0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/easy-lentic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-lentic";
sha256 = "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg";
name = "easy-lentic";
};
@@ -13568,7 +13652,7 @@
sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/easy-repeat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-repeat";
sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06";
name = "easy-repeat";
};
@@ -13589,7 +13673,7 @@
sha256 = "0ysym38xaqyx1wc7xd3fvjm62dmiq4727dnjvyxv7hs4czff1gcb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ebal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebal";
sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg";
name = "ebal";
};
@@ -13610,7 +13694,7 @@
sha256 = "1pgn6fcg5cnbpk93hc2vw95sna07x0s1v2i6lq9bmij2msvar611";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ebf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebf";
sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb";
name = "ebf";
};
@@ -13631,7 +13715,7 @@
sha256 = "1kcmbr4a2jxd62s4nc8xshrksb36xwb17j6c0hjzvb75r544xy6s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ebib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebib";
sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid";
name = "ebib";
};
@@ -13652,7 +13736,7 @@
sha256 = "0z89gggdgy2icnc6vwwbqbpnzbixxm6njgkz37zrrpwk23jsx1pb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ebib-handy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebib-handy";
sha256 = "069dq4sfw4jz4cd8mw611qzcz7jyj271qwv2l54fyi3pfvd68h17";
name = "ebib-handy";
};
@@ -13673,7 +13757,7 @@
sha256 = "1hs069m4m6vhb37ac2x6hzbp9mfmpd3zhp4m631lx8dlmx11rydz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ecb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ecb";
sha256 = "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89";
name = "ecb";
};
@@ -13691,7 +13775,7 @@
sha256 = "0jk7pb2sr4qbxwcn4ipcjc9phl9zjmgg8sf91qj113112xx7vvxa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/echo-bell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/echo-bell";
sha256 = "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws";
name = "echo-bell";
};
@@ -13712,7 +13796,7 @@
sha256 = "03yyagd37l9kgdnkqrkvrcgp5njyl4an0af7cfmcdnpyjghczf4d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eclipse-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eclipse-theme";
sha256 = "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx";
name = "eclipse-theme";
};
@@ -13733,7 +13817,7 @@
sha256 = "0h6vh719ai0cxyja6wpfi6m76d42vskj56wg666j0h6j0qw6h3i2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ecukes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ecukes";
sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0";
name = "ecukes";
};
@@ -13754,7 +13838,7 @@
sha256 = "0x0igyvdcm4863n7zndvcv6wgzwgn7324cbfjja6xd7r0k936zdy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edbi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edbi";
sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr";
name = "edbi";
};
@@ -13775,7 +13859,7 @@
sha256 = "0f59s0a7zpa3dny1k7x6zrymrnzba184smq8v1vvz8hkc0ym1j1v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edbi-database-url";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edbi-database-url";
sha256 = "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn";
name = "edbi-database-url";
};
@@ -13796,7 +13880,7 @@
sha256 = "1029b7p1lnyqkg0jm9an6s1l7la0kb38gx42g7212wbj71s3krga";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edbi-django";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edbi-django";
sha256 = "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1";
name = "edbi-django";
};
@@ -13817,7 +13901,7 @@
sha256 = "176954d4agk4by5w8a5ky65iwjky1dqxxvz8vdf8fxj82r5k9fhh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edbi-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edbi-minor-mode";
sha256 = "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi";
name = "edbi-minor-mode";
};
@@ -13838,7 +13922,7 @@
sha256 = "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edbi-sqlite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edbi-sqlite";
sha256 = "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y";
name = "edbi-sqlite";
};
@@ -13859,7 +13943,7 @@
sha256 = "1cfjw9b1lm29s5cbh0qqmkchbq2382s71w4rpb0gyf603s0yg13m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ede-compdb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ede-compdb";
sha256 = "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7";
name = "ede-compdb";
};
@@ -13880,7 +13964,7 @@
sha256 = "1zgiifi1k2d9g8sarfpjzamk8g1yx4ilgn60mqhy2pznp30b5qb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edebug-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edebug-x";
sha256 = "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql";
name = "edebug-x";
};
@@ -13901,7 +13985,7 @@
sha256 = "0crwdgng377sy1zbq7kqkz24v697mlzgdsvkdp1m8r7ympikkj6w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edit-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-at-point";
sha256 = "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im";
name = "edit-at-point";
};
@@ -13922,7 +14006,7 @@
sha256 = "0vk954f44m2bq7qb122pzlb8fibrisx47ihvn3h96m8nmx0fv32r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edit-color-stamp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-color-stamp";
sha256 = "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8";
name = "edit-color-stamp";
};
@@ -13943,7 +14027,7 @@
sha256 = "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edit-indirect";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-indirect";
sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439";
name = "edit-indirect";
};
@@ -13964,7 +14048,7 @@
sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edit-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-list";
sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv";
name = "edit-list";
};
@@ -13985,7 +14069,7 @@
sha256 = "0ssmhwg4wfh5cxgqv8bl55449204h4zi863m7jhvas4c9zq005kd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edit-server";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-server";
sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0";
name = "edit-server";
};
@@ -14006,7 +14090,7 @@
sha256 = "174xq45xc632zrb916aw7q4bch96pbi6zgy3dk77qla3ky9cfpl3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edit-server-htmlize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-server-htmlize";
sha256 = "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj";
name = "edit-server-htmlize";
};
@@ -14027,7 +14111,7 @@
sha256 = "0k8aqfhcvqv19ddkljvq1hgljvqwp4yrhjsgsalji9qm5gq344ha";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/editorconfig";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/editorconfig";
sha256 = "0zv96m07ml8i3k7zm7sdci4hn611n3ypna7zppfkwbdyr7d5k2gc";
name = "editorconfig";
};
@@ -14048,7 +14132,7 @@
sha256 = "1xp2hjhn52k6l1g6ypva6dsklpawni7gvjafbz6404f9dyxflh7l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edn";
sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg";
name = "edn";
};
@@ -14069,7 +14153,7 @@
sha256 = "0dn2p80pifkc5pjqqx6xhr53mjp5y0hb48imhwybf9mwbgpz16va";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edts";
sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr";
name = "edts";
};
@@ -14099,7 +14183,7 @@
sha256 = "1c2iyv392ap35nss4j901h33d3lx9lmq5v43flf2rid1766pam6v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/efire";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/efire";
sha256 = "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w";
name = "efire";
};
@@ -14120,7 +14204,7 @@
sha256 = "1qrblglkafwzfds8x5wp4yrn1gq8iz823iilxcp9mwycbw57ajw8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/egg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/egg";
sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i";
name = "egg";
};
@@ -14133,15 +14217,15 @@
egison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "egison-mode";
- version = "20160415.427";
+ version = "20160520.228";
src = fetchFromGitHub {
owner = "egisatoshi";
repo = "egison3";
- rev = "692140aca1a30b9d9eb9b842ed56bd42fff77aae";
- sha256 = "18gpb5m8nx4s7bbg3djj1bk7xwn49jjqi9zdhk67hlbg01cp83m3";
+ rev = "69cc3cebbc05b1e6e6172baab18f773d6790ffdb";
+ sha256 = "0vgpv48is3aijz4w5gmhrhjkirbyqzv1kkswqlpxah4bz4qn5v5k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/egison-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/egison-mode";
sha256 = "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi";
name = "egison-mode";
};
@@ -14162,7 +14246,7 @@
sha256 = "04bx8k854dj0c4qnn9kxzzv4j9v2k2g5nrqh6118pbbdii36l6d1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ego";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ego";
sha256 = "02s840chz3v4gdyq01b5i5w2vxl94001jk9j1nsp5b8xm10w985j";
name = "ego";
};
@@ -14181,7 +14265,7 @@
sha256 = "1qiafvx6bhliqaysyc4qv2ps44qsmls75ysjbgmzw5rndc8hf0r0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eide";
sha256 = "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz";
name = "eide";
};
@@ -14202,7 +14286,7 @@
sha256 = "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eimp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eimp";
sha256 = "00g77bg49m38cjfbh17ccnmksz05qx7yvgl6i4i4hysbr2d8pgxd";
name = "eimp";
};
@@ -14223,7 +14307,7 @@
sha256 = "1b20cz9grxyjpbmc91csfygkg6rnclj39cc6pnlxxy6ikcn5xywn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ein";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ein";
sha256 = "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp";
name = "ein";
};
@@ -14244,7 +14328,7 @@
sha256 = "1w0b3giy9ca35pp2ni4afnqas64a2vriilab7jiw9anp3ryh6570";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ein-mumamo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ein-mumamo";
sha256 = "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w";
name = "ein-mumamo";
};
@@ -14257,15 +14341,15 @@
eink-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eink-theme";
- version = "20160321.558";
+ version = "20160522.203";
src = fetchFromGitHub {
owner = "maio";
repo = "eink-emacs";
- rev = "93d25c097b105594472c4f99d693f439b4b709f0";
- sha256 = "0m7qsk378c30fva2n2ag99rsdklx5nsqc395msg1ab11sbpxvis0";
+ rev = "8708f11ddbc3542e18b19eac8e45479cfc1ea55e";
+ sha256 = "1ll3d8ylwbznmlq0wl6nvf6sgb9y2hkkpybv17ymg016j5xbngkm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eink-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eink-theme";
sha256 = "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn";
name = "eink-theme";
};
@@ -14286,7 +14370,7 @@
sha256 = "1h9d2prdr02npl9qn4kinij9zvf0a60mf4zfcdxc4ylvlyqz75jc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ejc-sql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ejc-sql";
sha256 = "0v9mmwc2gm58nky81q7fibj93zi7zbxq1jzjw55dg6cb6qb87vnx";
name = "ejc-sql";
};
@@ -14307,7 +14391,7 @@
sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-autoyas";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-autoyas";
sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c";
name = "el-autoyas";
};
@@ -14320,15 +14404,15 @@
el-get = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "el-get";
- version = "20160514.808";
+ version = "20160519.1946";
src = fetchFromGitHub {
owner = "dimitri";
repo = "el-get";
- rev = "5131b455e81e558d730893b94e72b676adc03226";
- sha256 = "1c6w4dn3kdyh6yimlxbpw3dmkvzc7j7rc2qcarlzc0a65k9laq13";
+ rev = "2d9068f7bc2aa0b2ad2e9cbb2022e72ac737eaa7";
+ sha256 = "0mgrpiy1bga8ggr58jnmb8zmb9qc9w3a87gibmgy6ji6p8j4law9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-get";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-get";
sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz";
name = "el-get";
};
@@ -14349,7 +14433,7 @@
sha256 = "0qk5jk0n7ga2cxqnm69rsy5cjjn5b4l4yqgaafvmmrrp70p8drmi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-init";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-init";
sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5";
name = "el-init";
};
@@ -14370,7 +14454,7 @@
sha256 = "0flf0pa3xwrdhfkshyr6nqrm957sgx9jkganbasqavbq1dvlw6lj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-init-viewer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-init-viewer";
sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m";
name = "el-init-viewer";
};
@@ -14391,7 +14475,7 @@
sha256 = "1jiq2hpym3wpk80zsl4lffpv4kgkykc2zp08sb01wa7pl8d1knmm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-mock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-mock";
sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l";
name = "el-mock";
};
@@ -14412,7 +14496,7 @@
sha256 = "1iykhicc1ic1r6h4vj3701rm0vfy41b16w3d98amf8jjypv54wv7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-pocket";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-pocket";
sha256 = "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw";
name = "el-pocket";
};
@@ -14433,7 +14517,7 @@
sha256 = "1lsq7980pwcwlg7z37hrig8ddm9nyvaqrlczv1w0vy631vc5z2az";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-spec";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-spec";
sha256 = "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh";
name = "el-spec";
};
@@ -14454,7 +14538,7 @@
sha256 = "1sba405h1sy5vxg4ki631p4979gyaqv8wnwbgca5jp2pm8l3viri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-spice";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-spice";
sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg";
name = "el-spice";
};
@@ -14475,7 +14559,7 @@
sha256 = "04k1fz0ypmfzgwamncp2vz0lq54bq6y7c8k9nm39csp2564vmbbc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-sprunge";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-sprunge";
sha256 = "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a";
name = "el-sprunge";
};
@@ -14496,7 +14580,7 @@
sha256 = "016l3inzb7dby0w58najj2pvymwk6gllsxvqj2fkz3599i36p1pn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-spy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-spy";
sha256 = "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n";
name = "el-spy";
};
@@ -14514,7 +14598,7 @@
sha256 = "1g2jhm9m5qcj6a231n5ch6b8bqwzq3kj275nd4s89p89v1252qhn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-swank-fuzzy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-swank-fuzzy";
sha256 = "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1";
name = "el-swank-fuzzy";
};
@@ -14535,7 +14619,7 @@
sha256 = "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-x";
sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g";
name = "el-x";
};
@@ -14556,7 +14640,7 @@
sha256 = "03xlxx57z1id9mr7afkvf77m2f9rrknrm1380p51vka84v2hl3mh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el2markdown";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el2markdown";
sha256 = "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g";
name = "el2markdown";
};
@@ -14577,7 +14661,7 @@
sha256 = "1wikmzl9gi72h6fxawj0h20828n4vypw9rrv35kqnl4gfrdmxzkk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elang";
sha256 = "0frhn3hm8351qzljicpzars28af1fghgv45717ml79rwb4vi6yiy";
name = "elang";
};
@@ -14598,7 +14682,7 @@
sha256 = "0vppa9xihn8777rphiw1aqp96xn16vgjwff1dwvp8z861silp8ar";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eldoc-eval";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eldoc-eval";
sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c";
name = "eldoc-eval";
};
@@ -14616,7 +14700,7 @@
sha256 = "13ncpp3hrwk0h030c5nnm2zfiingilr5b876jsf2wxmylg57nbch";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eldoc-extension";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eldoc-extension";
sha256 = "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24";
name = "eldoc-extension";
};
@@ -14637,7 +14721,7 @@
sha256 = "0s4y1319sr4xc0k6h2zhzzxsx2kc3pc2m6saah18y4kip0hjyhr8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/electric-case";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/electric-case";
sha256 = "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd";
name = "electric-case";
};
@@ -14658,7 +14742,7 @@
sha256 = "1bwcz93m5axr88hbksm0w9zxs8c397xbazxb3kc3mprbw5my7k1a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/electric-operator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/electric-operator";
sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2";
name = "electric-operator";
};
@@ -14679,7 +14763,7 @@
sha256 = "0q1pb01h48wdbjgi04a6ck2jn7yfh92wpq1vka5pg54wv2k9b5fn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/electric-spacing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/electric-spacing";
sha256 = "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg";
name = "electric-spacing";
};
@@ -14700,7 +14784,7 @@
sha256 = "1ijrhm9vrzh5wl1rr9ayl11dwm05bh1i43fnbz3ga58l6whgkfpw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elein";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elein";
sha256 = "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg";
name = "elein";
};
@@ -14713,15 +14797,15 @@
elfeed = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elfeed";
- version = "20160513.2022";
+ version = "20160519.855";
src = fetchFromGitHub {
owner = "skeeto";
repo = "elfeed";
- rev = "40d892c47147853fa2da9a4fd977900de538e864";
- sha256 = "00vlmdgwi86cmwgakpf5mypx0x3a32vqfbmmnldajh6ccvy2izr8";
+ rev = "5e3b43b9896864a96575d1dc3bc4d534fc4630c5";
+ sha256 = "1lrndd30f46rpbczqma7wppc64fwa1mh0a48p8ma9nw3nbxd911n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elfeed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elfeed";
sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9";
name = "elfeed";
};
@@ -14742,7 +14826,7 @@
sha256 = "10dbf292l1pd6a4jchdlvpp4yf2kxmf2j6zqigh4wlg125px1drk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elfeed-goodies";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elfeed-goodies";
sha256 = "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi";
name = "elfeed-goodies";
};
@@ -14770,7 +14854,7 @@
sha256 = "0cp8sbhym83db88ii7gyab6iqxppinjlrkzb9627gq7xgb5mqj5j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elfeed-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elfeed-org";
sha256 = "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik";
name = "elfeed-org";
};
@@ -14787,11 +14871,11 @@
src = fetchFromGitHub {
owner = "skeeto";
repo = "elfeed";
- rev = "40d892c47147853fa2da9a4fd977900de538e864";
- sha256 = "00vlmdgwi86cmwgakpf5mypx0x3a32vqfbmmnldajh6ccvy2izr8";
+ rev = "5e3b43b9896864a96575d1dc3bc4d534fc4630c5";
+ sha256 = "1lrndd30f46rpbczqma7wppc64fwa1mh0a48p8ma9nw3nbxd911n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elfeed-web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elfeed-web";
sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n";
name = "elfeed-web";
};
@@ -14812,7 +14896,7 @@
sha256 = "0rdhnnyn0xsmnshnf289kxk974r57i6nx0vii1w36j6p6q0b7f9h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elhome";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elhome";
sha256 = "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh";
name = "elhome";
};
@@ -14833,7 +14917,7 @@
sha256 = "1a73zdh4jkx8f74cq802b5j4bx8k1z7cbsp10lz40lmwwxbl3czq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elisp-depend";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elisp-depend";
sha256 = "1x3acgkpd9a8xxjg5zjw0d4nv4q9xx30ipr6v3544mn16sv4ab7c";
name = "elisp-depend";
};
@@ -14854,7 +14938,7 @@
sha256 = "17l2xsixx3p93dmx9jsg0a3xqdg19nwp1di2pymlg41pw0kdf3x3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elisp-format";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elisp-format";
sha256 = "1l0596y4yjn3jdyy6pgws1pgz6i12fxfy27566lmxklbxp8sxgy8";
name = "elisp-format";
};
@@ -14875,7 +14959,7 @@
sha256 = "1ci6nyk1vvb3wgxzarbf6448i9rjb74zzrhcmls634gfxbryxdyy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elisp-lint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elisp-lint";
sha256 = "102hrxdw72bm11a29i15g09lv7jlnd7vkv7292fm3mcxf5f4hkw9";
name = "elisp-lint";
};
@@ -14896,7 +14980,7 @@
sha256 = "168ljhscqyvp24lw70ylv4a3c0y51sx4f66lfahbs7zpjvwf25x0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elisp-sandbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c367c756a02e161a2f6ce6c422802c9f74102a07/recipes/elisp-sandbox";
sha256 = "1bazm1cf9ghh9b7jzqqgyfcalnrfg7vmxqbn4fiy2c76gbzlr2bp";
name = "elisp-sandbox";
};
@@ -14917,7 +15001,7 @@
sha256 = "11vyy0bvzbs1h1kggikrvhd658j7c730w0pdp6qkm60rigvfi1ih";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elisp-slime-nav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elisp-slime-nav";
sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c";
name = "elisp-slime-nav";
};
@@ -14938,7 +15022,7 @@
sha256 = "1si3dsr4bllkxg6abwjfyzj47k6nbrmj1vg8i9c7nxi7i58c077j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elixir-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elixir-mode";
sha256 = "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf";
name = "elixir-mode";
};
@@ -14959,7 +15043,7 @@
sha256 = "1sdq4372i19wdxpdp3347a1rf5zf5w6sa0da6lr511m7ri0lj6hd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elixir-yasnippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elixir-yasnippets";
sha256 = "0vmkcd88wfafv31lyw0983p4qjj387qf258q7py1ij47fcmfp579";
name = "elixir-yasnippets";
};
@@ -14980,7 +15064,7 @@
sha256 = "086d0lr5kflr4qrpr4xs3sl0vmsc5i5b9vk6ldh7flhrrr8kg784";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elm-mode";
sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1";
name = "elm-mode";
};
@@ -15001,7 +15085,7 @@
sha256 = "1zb5yra6znkr7yaq6wqlmlr054wkv9cy1dih8h4j2gp2wnfwg968";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elm-yasnippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elm-yasnippets";
sha256 = "0nnr0sxkxviw2i7b5s8jgvsv7lgqxqvirmvmband84q9gxlz24zb";
name = "elm-yasnippets";
};
@@ -15022,7 +15106,7 @@
sha256 = "085ab50q3jdy3vh22lz2p5ivcjlhfki3zzfsp1n0939myw6vqcsm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elmacro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elmacro";
sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz";
name = "elmacro";
};
@@ -15043,7 +15127,7 @@
sha256 = "1463y4zc6yabd30k6806yw0am18fjv0bkxm56p2siqrwn9pbsh8k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elmine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elmine";
sha256 = "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz";
name = "elmine";
};
@@ -15064,7 +15148,7 @@
sha256 = "0p3cj5vgka388i4dk9r7bx8pv8mywnfij9ahgqak5jlsddflh8hw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elnode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elnode";
sha256 = "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6";
name = "elnode";
};
@@ -15085,7 +15169,7 @@
sha256 = "0z3g7jddsjf4hmhwvi8mhd90255ylaix0ysljscqsixacknzcjm9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elog";
sha256 = "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd";
name = "elog";
};
@@ -15106,7 +15190,7 @@
sha256 = "1jcr8bxffvnfs0ym6zkgs79hd6a0m81r4x4jr3v5l9zwxw04sy15";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elogcat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elogcat";
sha256 = "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia";
name = "elogcat";
};
@@ -15127,7 +15211,7 @@
sha256 = "1dadf24x6v1vk57bp6w0g2dysigy5cqjzwldc8dn129f4pfrhipy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elpa-audit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elpa-audit";
sha256 = "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52";
name = "elpa-audit";
};
@@ -15148,7 +15232,7 @@
sha256 = "1l1wnnmz62crr2gzpf0gzqp2pwmd50xp9knpswwz7l482gvfbzl7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elpa-mirror";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elpa-mirror";
sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8";
name = "elpa-mirror";
};
@@ -15169,7 +15253,7 @@
sha256 = "1x4asq5zqv8wbp034gzcrza9y2nbbwx1nrwi4jnwak0x0yn3c2dj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elpy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elpy";
sha256 = "0n802bh7jj9zgz84xjrxvy33jl6s3hj5dqxafyfr87fank97hb6d";
name = "elpy";
};
@@ -15196,7 +15280,7 @@
sha256 = "055kam18k4ni1zw3310cpsvdnrp62d579r30lq67ig2lq3yxzc1m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elscreen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen";
sha256 = "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s";
name = "elscreen";
};
@@ -15217,7 +15301,7 @@
sha256 = "0bbashrqpyhs282w5i15rzravvj0fjnydbh9vfnfnfnk8a9sssxz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elscreen-buffer-group";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-buffer-group";
sha256 = "1clmhpk9zp6hsgz6a4jpmbrr9fr6k8b324s0x61n5yi4yzgdmc0v";
name = "elscreen-buffer-group";
};
@@ -15238,7 +15322,7 @@
sha256 = "14hwl5jzmm43qa4jbpsyswbz4hk1l2iwqh3ank6502bz58877k6c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elscreen-mew";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-mew";
sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4";
name = "elscreen-mew";
};
@@ -15259,7 +15343,7 @@
sha256 = "1cninrbgxzg0gykkpjx0i8pk2yc7sgr2kliqd35lgcxz2q4jlr51";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elscreen-multi-term";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-multi-term";
sha256 = "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n";
name = "elscreen-multi-term";
};
@@ -15280,7 +15364,7 @@
sha256 = "0p0zphl3ylrbs3mz12y40hphslxd1hlszk1pqi151xrfgc2r0pp8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elscreen-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-persist";
sha256 = "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k";
name = "elscreen-persist";
};
@@ -15301,7 +15385,7 @@
sha256 = "1w34nnl4zalxzmyfbc81qd82m7qp3zvz608dx6hfi44pjz0dp36f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elscreen-separate-buffer-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-separate-buffer-list";
sha256 = "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk";
name = "elscreen-separate-buffer-list";
};
@@ -15322,7 +15406,7 @@
sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elwm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elwm";
sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9";
name = "elwm";
};
@@ -15343,7 +15427,7 @@
sha256 = "0n5y3xq5dmqpsd9hhg9ac1jkj5qi9y7lgvg5nir3ghd8ldmrg09s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elx";
sha256 = "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x";
name = "elx";
};
@@ -15364,7 +15448,7 @@
sha256 = "1fj84r3r0kdprjy2sbzxgx7icfn6fbhvylbzfcv4wq5g7qbn45sz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacs-eclim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacs-eclim";
sha256 = "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv";
name = "emacs-eclim";
};
@@ -15385,7 +15469,7 @@
sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacs-setup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacs-setup";
sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh";
name = "emacs-setup";
};
@@ -15406,7 +15490,7 @@
sha256 = "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsagist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsagist";
sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64";
name = "emacsagist";
};
@@ -15427,7 +15511,7 @@
sha256 = "1rqr08gj07hw37mqd0flmq4a10wn16vy7wg0msqq0ab2smwjhns7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsc";
sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk";
name = "emacsc";
};
@@ -15448,7 +15532,7 @@
sha256 = "1vhs9725fyl2j65lk014qz76iv4hsvyim06361h4lai634hp7ck6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsist-view";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsist-view";
sha256 = "0lf280ppi3zksqvx81y8mm9479j26kd5wywfghhwk36kz410hk99";
name = "emacsist-view";
};
@@ -15469,7 +15553,7 @@
sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql";
sha256 = "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax";
name = "emacsql";
};
@@ -15490,7 +15574,7 @@
sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsql-mysql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql-mysql";
sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy";
name = "emacsql-mysql";
};
@@ -15511,7 +15595,7 @@
sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsql-psql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql-psql";
sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3";
name = "emacsql-psql";
};
@@ -15532,7 +15616,7 @@
sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsql-sqlite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql-sqlite";
sha256 = "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i";
name = "emacsql-sqlite";
};
@@ -15553,7 +15637,7 @@
sha256 = "08j10c699r8r8xynvlkm0vwlfza1fqz11zcfk2dsrakq3y9vb4ly";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsshot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsshot";
sha256 = "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j";
name = "emacsshot";
};
@@ -15574,7 +15658,7 @@
sha256 = "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emagician-fix-spell-memory";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emagician-fix-spell-memory";
sha256 = "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j";
name = "emagician-fix-spell-memory";
};
@@ -15587,15 +15671,15 @@
emamux = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emamux";
- version = "20160516.539";
+ version = "20160518.1048";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-emamux";
- rev = "d9958e09f8707b34267047a65e795fa0c58cdf34";
- sha256 = "0lpa92mbnahm833vm04f891c7jpx16q037zkcwbn4kl42agx3dqi";
+ rev = "239a32aa6c92baef0f653250840b5979d4a1396e";
+ sha256 = "19d6dc74zv0wk2i3p5x1ys2frzhicaadp87vv1rifbkz0697krz1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emamux";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emamux";
sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz";
name = "emamux";
};
@@ -15616,7 +15700,7 @@
sha256 = "1idsvilsvlxh72waalhl8vrsmh0vfvz56qcv56fc2c0pb1i90icn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emamux-ruby-test";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emamux-ruby-test";
sha256 = "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm";
name = "emamux-ruby-test";
};
@@ -15637,7 +15721,7 @@
sha256 = "0cv8y6hr719648yxr2fbgb1hyg36m60bsbd57f2vvvqvg87si4jz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ember-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ember-mode";
sha256 = "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx";
name = "ember-mode";
};
@@ -15658,7 +15742,7 @@
sha256 = "1sj033acw1q80accdfkrxw4kzfl8p1ld16y188ikbizvq75lfkpp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ember-yasnippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ember-yasnippets";
sha256 = "1jwkzcqcpy7ykdjhsqmg8ds6qyl4jglyjbgg7v301x068dsxkja6";
name = "ember-yasnippets";
};
@@ -15679,7 +15763,7 @@
sha256 = "0arxgq1a75lhzc8f18aa32q2rxq4wxxacm6l7zxiqz98kl0gvfyi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/embrace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/embrace";
sha256 = "1w9zp9n91703d6jd4adl2xk574wsr7fm2a9v32b1i9bi3hr0hdjc";
name = "embrace";
};
@@ -15700,7 +15784,7 @@
sha256 = "1dh43fhkaqljnh1517kf8h3rjqaygj6wdhcbsy7mzcac0jrbfsfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emmet-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emmet-mode";
sha256 = "0wjv4hqddjvbdrmsxzav5rpwnm2n6lr86jzkrnav8f2kyzypdsnr";
name = "emmet-mode";
};
@@ -15719,7 +15803,7 @@
sha256 = "1y6l74sr553vygwpyf7di8cdg98hqpzccz81n24vj11a8g9qly1q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emms";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms";
sha256 = "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m";
name = "emms";
};
@@ -15740,7 +15824,7 @@
sha256 = "07qbbs2i05bqndr4dxb84z50wav8ffbc56f6saw6pdx6n0sw6n6n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emms-info-mediainfo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-info-mediainfo";
sha256 = "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w";
name = "emms-info-mediainfo";
};
@@ -15761,7 +15845,7 @@
sha256 = "03a7sn8pl0pnr05rmrrbw4hjyi8vpjqbvkvh0fqnij913a6qc64l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emms-mark-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-mark-ext";
sha256 = "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081";
name = "emms-mark-ext";
};
@@ -15782,7 +15866,7 @@
sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emms-mode-line-cycle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-mode-line-cycle";
sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca";
name = "emms-mode-line-cycle";
};
@@ -15803,7 +15887,7 @@
sha256 = "104iw4bl6y33diqs5ayrvdljkhb6f9g2m5p5kh8klgy7z1yjhp4p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emms-player-mpv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-player-mpv";
sha256 = "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y";
name = "emms-player-mpv";
};
@@ -15824,7 +15908,7 @@
sha256 = "1phjrisr9m6rpd40y6f8iiagrr7vpqc8ksgwymi8w11b1kmxhdja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emms-player-mpv-jp-radios";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-player-mpv-jp-radios";
sha256 = "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv";
name = "emms-player-mpv-jp-radios";
};
@@ -15845,7 +15929,7 @@
sha256 = "0ajxyv7yx4ni8dizs7acpsxnmy3c9s0dx28vw9y1ym0bxkgfyzrf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emms-player-simple-mpv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-player-simple-mpv";
sha256 = "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1";
name = "emms-player-simple-mpv";
};
@@ -15866,7 +15950,7 @@
sha256 = "0nx5bb5fjmaa1nhkbfnhd1aydqrq390x4rl1vfh11ilnf52wzzld";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emms-soundcloud";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-soundcloud";
sha256 = "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi";
name = "emms-soundcloud";
};
@@ -15887,7 +15971,7 @@
sha256 = "1kipxa9ax8zi9qqk19mknpg7nnlzgr734kh9bnklydipwnsy00pi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emms-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-state";
sha256 = "080y02hxxqfn0a0dhq5vm0r020v2q3h1612a2zkq5fxi8ssvhp9i";
name = "emms-state";
};
@@ -15908,7 +15992,7 @@
sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emoji-cheat-sheet-plus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emoji-cheat-sheet-plus";
sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv";
name = "emoji-cheat-sheet-plus";
};
@@ -15929,7 +16013,7 @@
sha256 = "0sh4q4sb4j58ryvvmlsx7scry9inzgv2ssa87vbyzpxq0435l229";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emoji-display";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emoji-display";
sha256 = "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9";
name = "emoji-display";
};
@@ -15950,7 +16034,7 @@
sha256 = "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emoji-fontset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emoji-fontset";
sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d";
name = "emoji-fontset";
};
@@ -15971,7 +16055,7 @@
sha256 = "1zz6q5jf22nwb9qlyxxrz56gz7x5gcxh6q6d0ybf4bapk35g3v0q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emojify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emojify";
sha256 = "1sgd32qm43hwby75a9q2pz1yfzj988i35d8p9f18zvbxypy7b2yp";
name = "emojify";
};
@@ -15992,7 +16076,7 @@
sha256 = "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/empos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/empos";
sha256 = "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4";
name = "empos";
};
@@ -16013,7 +16097,7 @@
sha256 = "1frcn6694q74is8qbvrjkcsw0q1wz56z4gl35n4v3wakr9wvdvd1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emr";
sha256 = "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x";
name = "emr";
};
@@ -16046,7 +16130,7 @@
sha256 = "0dz5xm05d7irh1j8iy08jk521p19cjai1kw68z2nngnyf1az7cim";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/enclose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/enclose";
sha256 = "1bkrv3cwhbiydgfjhmyjr96cvsgr9zi8n0ir1akgamccm2ln73d6";
name = "enclose";
};
@@ -16067,7 +16151,7 @@
sha256 = "0k5ns40s5nskn0zialwq96qll1v5k50lfa5xh8hxbpcamsfym6h8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/encourage-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/encourage-mode";
sha256 = "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63";
name = "encourage-mode";
};
@@ -16088,7 +16172,7 @@
sha256 = "066pxfv4rpxgi7jxdyc0a3g5z9m1j66sbi5gh2l7m4rwhzkqchn9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/engine-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/engine-mode";
sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c";
name = "engine-mode";
};
@@ -16109,7 +16193,7 @@
sha256 = "008wggl6xxk339njrgpj2fndbil7k9f3i2hg1mjwqk033j87nbz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/enh-ruby-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/enh-ruby-mode";
sha256 = "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns";
name = "enh-ruby-mode";
};
@@ -16130,7 +16214,7 @@
sha256 = "0vd7zy06nqb1ayjlnf2wl0bfv1cqv2qcb3cgy3zr9k9c4whcd8jh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/enlive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/enlive";
sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz";
name = "enlive";
};
@@ -16151,7 +16235,7 @@
sha256 = "1qimqrvk0myqfi2l3viigkx1ld90qpjgi1gs6xhw2g51r8x4i3in";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eno";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eno";
sha256 = "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk";
name = "eno";
};
@@ -16172,7 +16256,7 @@
sha256 = "0v5p97dvzrk3j59yjc6iny71j3fdw9bb8737wnnzm098ff42dfmd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/enotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/enotify";
sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi";
name = "enotify";
};
@@ -16185,15 +16269,15 @@
ensime = callPackage ({ company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s, sbt-mode, scala-mode, yasnippet }:
melpaBuild {
pname = "ensime";
- version = "20160516.1834";
+ version = "20160521.1846";
src = fetchFromGitHub {
owner = "ensime";
repo = "ensime-emacs";
- rev = "fddb0f3574cd9870d8774c143a42a93e1b219121";
- sha256 = "1mivgwf90y6pdinlp4a3fwgk4kyqxpg9im8linsacrxxhbq53ijr";
+ rev = "a190b9b4ed11415c6906745fc3b06b705d61f567";
+ sha256 = "1rx28xn4jh1pywvfipy7xb6sfxa92zl2p18j6vhnq68hqkcj9wwb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ensime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ensime";
sha256 = "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby";
name = "ensime";
};
@@ -16222,7 +16306,7 @@
sha256 = "1jyhr9gv3d0rxv5iks2g9x6xbxqv1bvf1fnih96h4pgsfxz8wrp6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/envdir";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/envdir";
sha256 = "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8";
name = "envdir";
};
@@ -16243,7 +16327,7 @@
sha256 = "0pmawjfyihqygqz7y0nvyrs6jcvckqzkq9k6z6yanpvkd2x5g13x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eopengrok";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eopengrok";
sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av";
name = "eopengrok";
};
@@ -16264,7 +16348,7 @@
sha256 = "11z08y61xd00rlw5mcyrix8nx41mqs127wighhjsxsyzbfqydxdr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/epc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epc";
sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx";
name = "epc";
};
@@ -16285,7 +16369,7 @@
sha256 = "18gfi1287skv5xvh12arkvxy2c4fism8bdk42wc5q3y21h8nsiim";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/epic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epic";
sha256 = "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf";
name = "epic";
};
@@ -16306,7 +16390,7 @@
sha256 = "18am0nc2kjxbnkls7dl9j47cynwiiafx8w6rqa4d9dyx7khl2rmp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/epkg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epkg";
sha256 = "0vc1g29rfmgd2ks4lbz4599rbgcax7rgdva53ahhvp6say8fy22q";
name = "epkg";
};
@@ -16327,7 +16411,7 @@
sha256 = "0s4k2grikhibd075435giv3bmba1mx71ndxlr0k1i0q0xawpyyb4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/epl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epl";
sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn";
name = "epl";
};
@@ -16348,7 +16432,7 @@
sha256 = "1qa1nq63kax767gs53s75ihspirvh69l4xdm89mj57qvrbpz36z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/epresent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epresent";
sha256 = "176d1nwsafi6fb0dnv35bfskp0xczyzf2939gi4bz69zh0161jg8";
name = "epresent";
};
@@ -16369,7 +16453,7 @@
sha256 = "1wwg46xdb488wxvglwvsy08vznrnmdmmbcvm9vb60dy3gqjmz7cw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eprime-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eprime-mode";
sha256 = "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g";
name = "eprime-mode";
};
@@ -16390,7 +16474,7 @@
sha256 = "13ds5z2nvanx8cvxrzi0da6ixx7kw222z6mrlbs8cldqcmzm7xh2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eproject";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eproject";
sha256 = "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4";
name = "eproject";
};
@@ -16411,7 +16495,7 @@
sha256 = "18r66yl52xm1gjbn0dm8z80gv4p3794pi91qa8i2sri4grbsyi5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-colorize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-colorize";
sha256 = "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a";
name = "erc-colorize";
};
@@ -16432,7 +16516,7 @@
sha256 = "0yiv16k0b2399asghc7qv9c9pj6ih0rwc863dskr2isnpl39amra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-crypt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-crypt";
sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3";
name = "erc-crypt";
};
@@ -16452,7 +16536,7 @@
sha256 = "11a64rvhd88val6vg9l1d5j3zdjd0bbbwcqilj0wp6rbn57xy0w8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-hipchatify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-hipchatify";
sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x";
name = "erc-hipchatify";
};
@@ -16473,7 +16557,7 @@
sha256 = "1k0g3bwp3w0dd6zwdv6k2wpqs2krjayilrzsr1hli649ljcx55d7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-hl-nicks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-hl-nicks";
sha256 = "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja";
name = "erc-hl-nicks";
};
@@ -16494,7 +16578,7 @@
sha256 = "03r13x2hxy4hk0n0ri5wld8rp8frx4j3mig6mn2v25k0cr52689f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-image";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-image";
sha256 = "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf";
name = "erc-image";
};
@@ -16515,7 +16599,7 @@
sha256 = "0k3gp4c74g5awk7v9lzb6py3dvf59nggh6dw7530cswxb6kg2psa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-social-graph";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-social-graph";
sha256 = "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h";
name = "erc-social-graph";
};
@@ -16536,7 +16620,7 @@
sha256 = "0cfqbqskh260zfq1lx1s8jz2351w2ij9m73rqim16fy7zr0s0670";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-terminal-notifier";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-terminal-notifier";
sha256 = "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c";
name = "erc-terminal-notifier";
};
@@ -16557,7 +16641,7 @@
sha256 = "0n107d77z04ahypa7hn2165kkb6490v4vkzdm5zwm4lfhvlmp0x2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-track-score";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-track-score";
sha256 = "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx";
name = "erc-track-score";
};
@@ -16578,7 +16662,7 @@
sha256 = "118q4zj9dh5xnimcsi229j5pflhcd8qz0p212kc4p9dmyrx2iw0n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-tweet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-tweet";
sha256 = "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b";
name = "erc-tweet";
};
@@ -16591,15 +16675,15 @@
erc-twitch = callPackage ({ erc ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "erc-twitch";
- version = "20160422.30";
+ version = "20160522.1159";
src = fetchFromGitHub {
owner = "vibhavp";
repo = "erc-twitch";
- rev = "6938191c787d66fef4c13674e0a98a9d64eff364";
- sha256 = "1xsxykmhz34gmyj4jb26qfai7j95kzlc7vfydrajc6is7xlrwhfk";
+ rev = "c1ece5d18a2d13a08e8f764271be9e21a9bdddc5";
+ sha256 = "094pzznjiv33lbjjg7yfjngc5hrphjj5j2l6jjy7fd62vh4m9jxk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-twitch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-twitch";
sha256 = "08vlwcxrzc2ndm52112z1r0qnz6jlmjhiwq2j3j59fbw82ys61ia";
name = "erc-twitch";
};
@@ -16620,7 +16704,7 @@
sha256 = "0bzi2sh2fhrz49j5y53h6jgf41av6rx78smb3bbk6m74is8vim2y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-view-log";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-view-log";
sha256 = "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf";
name = "erc-view-log";
};
@@ -16641,7 +16725,7 @@
sha256 = "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-youtube";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-youtube";
sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx";
name = "erc-youtube";
};
@@ -16662,7 +16746,7 @@
sha256 = "1dlw34kaslyvnsrahf4rm76r2b7qqqn589i4mmhr23prl8xbz9z9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-yt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-yt";
sha256 = "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc";
name = "erc-yt";
};
@@ -16683,7 +16767,7 @@
sha256 = "0xw3d9fz4kmn1myrsy44ki4bgg0aclv41wldl6r9nhvkrnri41cv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ercn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ercn";
sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp";
name = "ercn";
};
@@ -16704,7 +16788,7 @@
sha256 = "0cdyhklmsv0xfcq97c3wqh8scs6910jzvvp04w0jxlayd1dbzx49";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eredis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eredis";
sha256 = "087lln2izn5bv7bprmbaciivf17vv4pz2cjl91hy2f0sww6nsiw8";
name = "eredis";
};
@@ -16725,7 +16809,7 @@
sha256 = "1v8x6qmhywfxs7crzv7hfl5n4zq5y3ar40l873946l4wyk0wclng";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erefactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erefactor";
sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7";
name = "erefactor";
};
@@ -16746,7 +16830,7 @@
sha256 = "0mdflidhcv1hhzgzljsgx46vvfgbjxv813dmzyxv9wd4igjn9rza";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ergoemacs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ergoemacs-mode";
sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62";
name = "ergoemacs-mode";
};
@@ -16767,7 +16851,7 @@
sha256 = "06pdwrhflpi5rkigqnr5h3jzv3dm1p9nydpvql9w33ixm6qhjj71";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ergoemacs-status";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ergoemacs-status";
sha256 = "065pw31s8dmqpag7zj40iv6dbl0qln7c65gcyp7pz9agg9rp6vbb";
name = "ergoemacs-status";
};
@@ -16788,7 +16872,7 @@
sha256 = "1ss9jl5zasn7y7xk395igbbmaa2vw5pwhc120hs7hp07qqyqgyh0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erlang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erlang";
sha256 = "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc";
name = "erlang";
};
@@ -16809,7 +16893,7 @@
sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ert-async";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-async";
sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5";
name = "ert-async";
};
@@ -16827,7 +16911,7 @@
sha256 = "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ert-expectations";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-expectations";
sha256 = "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w";
name = "ert-expectations";
};
@@ -16847,7 +16931,7 @@
sha256 = "0ipcpsymbpicg0b0v1gbv0hkjwg8pq5d5rj1lfx1cbf3adkxvpzf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ert-junit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-junit";
sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g";
name = "ert-junit";
};
@@ -16868,7 +16952,7 @@
sha256 = "08yfq3qzscxvzyxvyvdqpkrm787278yhkdd9prbvrgjj80p8n7vq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ert-modeline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-modeline";
sha256 = "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b";
name = "ert-modeline";
};
@@ -16889,7 +16973,7 @@
sha256 = "0cjdpk0v07yzxbxqhxlgrk0nh9cj31yx6dd90d9f7jd4bxyzkzbb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ert-runner";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-runner";
sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48";
name = "ert-runner";
};
@@ -16910,7 +16994,7 @@
sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/es-lib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/es-lib";
sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n";
name = "es-lib";
};
@@ -16931,7 +17015,7 @@
sha256 = "04lll5sscbpqcq3sv5gsfky5qcj6asqql7fw1bp6g12qqf9r02nd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/es-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/es-mode";
sha256 = "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp";
name = "es-mode";
};
@@ -16952,7 +17036,7 @@
sha256 = "14rsifcx2kwdmwq9zh41fkb848l0f4igp5v9pk3x4jd2yw9gay7m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/es-windows";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/es-windows";
sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx";
name = "es-windows";
};
@@ -16973,7 +17057,7 @@
sha256 = "1rxfqj46zg3xgg7miflgsb187xa9fpwcvrbkqj41g8lvmycdnm0a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/esa";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esa";
sha256 = "1kbsv4xsp7p9v0g22had0dr7w5zsr24bgi2xzryy76699pxq4h6c";
name = "esa";
};
@@ -16994,7 +17078,7 @@
sha256 = "0id7820vjbprlpprj4fyhylkjvx00b87mw4n7jnxn1gczvjgafmc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/escreen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/escreen";
sha256 = "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54";
name = "escreen";
};
@@ -17015,7 +17099,7 @@
sha256 = "1k8k9hl9m4vjqdw3x9wg04cy2lb9x64mq0mm0i3i6w59zrsnkn4q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/esh-buf-stack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esh-buf-stack";
sha256 = "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg";
name = "esh-buf-stack";
};
@@ -17036,7 +17120,7 @@
sha256 = "1yfvdx763xxhxf2r6kjjjyafaxrj1lpgrz1sgbhzkyj6nspmm9ms";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/esh-help";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esh-help";
sha256 = "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w";
name = "esh-help";
};
@@ -17057,7 +17141,7 @@
sha256 = "13crzgkx1lham1nfsg6hj2zg875majvnig0v4ydg691zk1qi4hc2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eshell-autojump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-autojump";
sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5";
name = "eshell-autojump";
};
@@ -17078,7 +17162,7 @@
sha256 = "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eshell-did-you-mean";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-did-you-mean";
sha256 = "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz";
name = "eshell-did-you-mean";
};
@@ -17099,7 +17183,7 @@
sha256 = "00gaq8vz8vnhh0j2i66mp763hm3dfxkxz3j782nsfml81sngkww0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eshell-git-prompt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-git-prompt";
sha256 = "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s";
name = "eshell-git-prompt";
};
@@ -17120,7 +17204,7 @@
sha256 = "0lhmqnqrcnwnir0kqhkhnda6dyn7ggcidmk6lf24p57n3sf33pww";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eshell-prompt-extras";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-prompt-extras";
sha256 = "0kh4lvjkayjdz5lqvdqmdcblxizxk9kwmigjwa68kx8z6ngmfwa5";
name = "eshell-prompt-extras";
};
@@ -17141,7 +17225,7 @@
sha256 = "0znk2wmvk7b5mi727cawbddvzx74dlm1lwsxgkiylx2qp299ark0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eshell-z";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-z";
sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d";
name = "eshell-z";
};
@@ -17162,7 +17246,7 @@
sha256 = "0ir7j4dgy0fq9ybixaqs52kiqk73p9v6prgqzjs8nyicjrpmnpyq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/espresso-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/espresso-theme";
sha256 = "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5";
name = "espresso-theme";
};
@@ -17183,7 +17267,7 @@
sha256 = "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/espuds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/espuds";
sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c";
name = "espuds";
};
@@ -17204,7 +17288,7 @@
sha256 = "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/esqlite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esqlite";
sha256 = "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh";
name = "esqlite";
};
@@ -17225,7 +17309,7 @@
sha256 = "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/esqlite-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esqlite-helm";
sha256 = "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq";
name = "esqlite-helm";
};
@@ -17238,15 +17322,15 @@
ess = callPackage ({ fetchFromGitHub, fetchurl, julia-mode, lib, melpaBuild }:
melpaBuild {
pname = "ess";
- version = "20160515.812";
+ version = "20160521.1333";
src = fetchFromGitHub {
owner = "emacs-ess";
repo = "ESS";
- rev = "687a1bca26f574f84e9bbf0725463cfc4b128114";
- sha256 = "1917p9255g8z2xlsz2k177cb9j6q2ph7fs4jyxghjkrf8gx4h4ff";
+ rev = "059eb57d7cb5acca05d253691bd11fca3d02f532";
+ sha256 = "04abxand83np8zhqni2nlk0aiw090lbjszdclzsh0wx6ziafy35a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ess";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess";
sha256 = "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i";
name = "ess";
};
@@ -17267,7 +17351,7 @@
sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ess-R-data-view";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-R-data-view";
sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0";
name = "ess-R-data-view";
};
@@ -17288,7 +17372,7 @@
sha256 = "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ess-R-object-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-R-object-popup";
sha256 = "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj";
name = "ess-R-object-popup";
};
@@ -17309,7 +17393,7 @@
sha256 = "0ici253mllqyzcbhxrazfj2kl50brr8qid99fk9nlyfgh516ms1x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ess-smart-equals";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-smart-equals";
sha256 = "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp";
name = "ess-smart-equals";
};
@@ -17330,7 +17414,7 @@
sha256 = "01xa98q0pqsf4gyl6ixlpjjdqazqsxg1sf7a3j2wbh7196ps61v5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ess-smart-underscore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-smart-underscore";
sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2";
name = "ess-smart-underscore";
};
@@ -17351,7 +17435,7 @@
sha256 = "1fdg8a4nsyjhwqsslawfvij77g3fp9klpas7m8vwjsjpc85iwh3x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ess-view";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-view";
sha256 = "1zx5sbxmbs6ya349ic7yvnx56v3km2cb27p8kan5ygisnwwq2wc4";
name = "ess-view";
};
@@ -17372,7 +17456,7 @@
sha256 = "034rs6mmc5f6y8ply2a90b5s4pi4qx9m49wsxc9v0zwa9i5skmx1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/esup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esup";
sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0";
name = "esup";
};
@@ -17393,7 +17477,7 @@
sha256 = "0mrfkq3jcsjfccqir02yijl24hllc347b02y7gk3b2yn0b676dv3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/esxml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esxml";
sha256 = "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz";
name = "esxml";
};
@@ -17414,7 +17498,7 @@
sha256 = "1k361bbwd9z17qlycymb1x7scidvgvrh9bdp06rhwfh9j3slrbxy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/etable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/etable";
sha256 = "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32";
name = "etable";
};
@@ -17432,7 +17516,7 @@
sha256 = "0gmlmxlwfsfk5axn3x5cfvqy9bx26ynpbg50mdxiljk7wzqs5dyb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/etags-select";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/etags-select";
sha256 = "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h";
name = "etags-select";
};
@@ -17450,7 +17534,7 @@
sha256 = "0apm8as606bbkpa7i1hkwcbajzsmsyxn6cwfk9dkkll5bh4vglqf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/etags-table";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/etags-table";
sha256 = "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84";
name = "etags-table";
};
@@ -17471,7 +17555,7 @@
sha256 = "1xqc4lqzirpmr21w766g8vmcvvsq8b3hv9i7r27i5x1g0j4jabja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ethan-wspace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ethan-wspace";
sha256 = "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws";
name = "ethan-wspace";
};
@@ -17484,15 +17568,15 @@
euslisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "euslisp-mode";
- version = "20160422.355";
+ version = "20160519.1558";
src = fetchFromGitHub {
owner = "iory";
repo = "euslisp-mode";
- rev = "1427b1c704437016dbd9319a8c9f46bcaaa4eba2";
- sha256 = "116n07fqg0q3y9c6b745mfl3w475wf6nch2y4nnill5mxg951c3l";
+ rev = "3a85538adb9da9ca3ccb6c8a064b35005fff9d1f";
+ sha256 = "0cvrs0aj1ixfdf82hshcnl67jgai89m1a41pmw1pxh0nw78yw5mn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/euslisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/euslisp-mode";
sha256 = "0qrd35jdr8p13x34972scyk6d0zrj1zh6vx9d740rjc8gmq0z5l4";
name = "euslisp-mode";
};
@@ -17513,7 +17597,7 @@
sha256 = "07jlrngmnfp1jp30hx9vk42h065c74dz92b38sa18swzfmhwd4y5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eval-in-repl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eval-in-repl";
sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63";
name = "eval-in-repl";
};
@@ -17534,7 +17618,7 @@
sha256 = "1syqakdyg3ydnq9gvkjf2rw9rz3kyhzp7avhy6dvyy65pv2ndyc2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eval-sexp-fu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eval-sexp-fu";
sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs";
name = "eval-sexp-fu";
};
@@ -17555,7 +17639,7 @@
sha256 = "1llxxdprs8yw2hqj4dhrkrrzmkl25h7p4rcaa2cw544fmg3kvlz1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evalator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evalator";
sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk";
name = "evalator";
};
@@ -17576,7 +17660,7 @@
sha256 = "1q5s1ffmfh5dby92853xm8kjhgjfd5vbvcg1xbf8lswc1i41k7n7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evalator-clojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evalator-clojure";
sha256 = "10mxlgirnsq3z7l1izrf2v1l1yr4sbdjsaszz7llqv6l80y4bji3";
name = "evalator-clojure";
};
@@ -17589,14 +17673,14 @@
evil = callPackage ({ fetchhg, fetchurl, goto-chg, lib, melpaBuild, undo-tree }:
melpaBuild {
pname = "evil";
- version = "20160506.1321";
+ version = "20160522.936";
src = fetchhg {
url = "https://bitbucket.com/lyro/evil";
- rev = "7ceb2f84a8dc";
- sha256 = "0gqgfqzasz0pi17in9fpsibg52cs3b61s5bs15wkrbx57qx9hbzh";
+ rev = "c3c1cec937c6";
+ sha256 = "18wc427gjxhs0sa53nbid3h76zbsmfb5kdwqbvcly7awzfrgw5xx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil";
sha256 = "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc";
name = "evil";
};
@@ -17617,7 +17701,7 @@
sha256 = "0cnj91lwpmk4c8nf3xi80yvv6anvkg8h1kbzbp16glkgmy6jpmy8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-anzu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-anzu";
sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70";
name = "evil-anzu";
};
@@ -17638,7 +17722,7 @@
sha256 = "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-args";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-args";
sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w";
name = "evil-args";
};
@@ -17659,7 +17743,7 @@
sha256 = "1q6znbnshk45mdglx519qlbfhb7g47qsm245i93ka4djsjy55j9l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-avy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-avy";
sha256 = "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd";
name = "evil-avy";
};
@@ -17680,7 +17764,7 @@
sha256 = "1cqkx9wx3cmskybxl2h35wfpykba8f4ap70wn1mch2rc56j27l0a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-cleverparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-cleverparens";
sha256 = "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799";
name = "evil-cleverparens";
};
@@ -17701,7 +17785,7 @@
sha256 = "183fdg7rmnnbps0knnj2kmhf1hxk0q91wbqx1flhciq6wq4rilni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-commentary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-commentary";
sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz";
name = "evil-commentary";
};
@@ -17722,7 +17806,7 @@
sha256 = "15rnxhqc56g4ydr8drvcgzvjp8blxsarm86dqc36rym7g5gnxr20";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-dvorak";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-dvorak";
sha256 = "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn";
name = "evil-dvorak";
};
@@ -17743,7 +17827,7 @@
sha256 = "1rdhfsqrkzhbybb49365hx2nxfw7bsnpzh12fqfzq92vcn5441lq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-easymotion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-easymotion";
sha256 = "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv";
name = "evil-easymotion";
};
@@ -17764,7 +17848,7 @@
sha256 = "16pz48gdpl68azaqwyixh10y1x9xzi1lnhq2v0nrd0y6bfcqcvc7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-ediff";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-ediff";
sha256 = "1xwl2511byb00ybfnm6q6mbkgzarrq8bfv5rbip67zqbw2qgmb6i";
name = "evil-ediff";
};
@@ -17777,15 +17861,15 @@
evil-embrace = callPackage ({ emacs, embrace, evil-surround, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-embrace";
- version = "20160511.2341";
+ version = "20160519.1429";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "evil-embrace.el";
- rev = "852c42e87f85957bd4f4d32d333d3e84309e260d";
- sha256 = "0i5xrws6d2fxaq8fk2d22k264bvc8xbgx8d1j9wmacqmfkgjyljw";
+ rev = "8b2083c514af143f6d2f5d1cb4272c5bfb7437a3";
+ sha256 = "1cplq9s3fw8nadcipjrix46jfcjbgg3xhz6d226wcqgmg90aclfn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-embrace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-embrace";
sha256 = "10cfkksh3llyfk26x36b7ri0x6a6hrcv275pxk7ckhs1pyhb14y7";
name = "evil-embrace";
};
@@ -17806,7 +17890,7 @@
sha256 = "0v30yfkyy21nl45f9c05rbkbpfivf173bn2470r1b9vxgx6gcj8g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-escape";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-escape";
sha256 = "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k";
name = "evil-escape";
};
@@ -17827,7 +17911,7 @@
sha256 = "0avaw5pgyv75nhbinjjpy30pgkwfq79fx2k9z034f1x76ls9s683";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-exchange";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-exchange";
sha256 = "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r";
name = "evil-exchange";
};
@@ -17848,7 +17932,7 @@
sha256 = "10vwyrg833imja3ak9fx0zackdjwlcncl7wm9dym3kjs6qf2rvv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-extra-operator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-extra-operator";
sha256 = "066apin0yrjx7zr007p2h9p2nq58lz7qikzjzg0spqkb8vy7vkc5";
name = "evil-extra-operator";
};
@@ -17869,7 +17953,7 @@
sha256 = "1bsy2bynzxr1ibyidv2r21xnfnxbzr0xh5m3h05s5igbmajxr12d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-find-char-pinyin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-find-char-pinyin";
sha256 = "0n52ijdf5hy7mn0rab4493zs2nrf7r1qkmvf0algqaj7bfjscs79";
name = "evil-find-char-pinyin";
};
@@ -17890,7 +17974,7 @@
sha256 = "1cv24qnxxf6n1grf4n5969v8y9xll5zb9mbfdnq9iavdvhnndk2h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-god-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-god-state";
sha256 = "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf";
name = "evil-god-state";
};
@@ -17911,7 +17995,7 @@
sha256 = "0r9gif2sgf84z8qniz6chr32av9g2i38rlyms81m8ssghf0j86ss";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-iedit-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-iedit-state";
sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl";
name = "evil-iedit-state";
};
@@ -17932,7 +18016,7 @@
sha256 = "1g6r1ydscwjvmhh1zg4q3nap4avk8lb9msdqrh7dff6pla0r2qs6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-indent-plus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-indent-plus";
sha256 = "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12";
name = "evil-indent-plus";
};
@@ -17953,7 +18037,7 @@
sha256 = "0nghisnc49ivh56mddfdlcbqv3y2vqzjvkpgwv3zp80ga6ghvdmz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-indent-textobject";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-indent-textobject";
sha256 = "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09";
name = "evil-indent-textobject";
};
@@ -17974,7 +18058,7 @@
sha256 = "10xrlimsxk09z9cw6rxdz8qvvn1i0vhc1gdicwxri0j10p0hacl3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-leader";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-leader";
sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6";
name = "evil-leader";
};
@@ -17995,7 +18079,7 @@
sha256 = "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-lisp-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-lisp-state";
sha256 = "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy";
name = "evil-lisp-state";
};
@@ -18005,22 +18089,22 @@
license = lib.licenses.free;
};
}) {};
- evil-lispy = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, lispy, melpaBuild }:
+ evil-lispy = callPackage ({ evil, fetchFromGitHub, fetchurl, hydra, lib, lispy, melpaBuild }:
melpaBuild {
pname = "evil-lispy";
- version = "20160430.100";
+ version = "20160522.437";
src = fetchFromGitHub {
owner = "sp3ctum";
repo = "evil-lispy";
- rev = "e4fe89df13c3c2fbbfebfab2184f21b308f4e68f";
- sha256 = "19gx3n2q26x7p7pf2d9slvny390r39x0r19gkd424f6ksvigryvn";
+ rev = "0d14fd96bdacfea155c43b1d086d40c8eb6004bd";
+ sha256 = "1yqm66cf5digkpk980kkaycwmdbwcvav8sjcynmq3pjm1p08ci2h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-lispy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-lispy";
sha256 = "17z830b0x6lhmqkk07hfbrg63c7q7mpn4zz1ppjd1smv4mcqzyld";
name = "evil-lispy";
};
- packageRequires = [ evil lispy ];
+ packageRequires = [ evil hydra lispy ];
meta = {
homepage = "https://melpa.org/#/evil-lispy";
license = lib.licenses.free;
@@ -18037,7 +18121,7 @@
sha256 = "17dc48qc8sicmqngy8kpw7r0qm1gnzsal1106d4lx4z7d8lyhpvz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-magit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-magit";
sha256 = "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6";
name = "evil-magit";
};
@@ -18058,7 +18142,7 @@
sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-mark-replace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-mark-replace";
sha256 = "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0";
name = "evil-mark-replace";
};
@@ -18079,7 +18163,7 @@
sha256 = "0x6rc98g7hvvmlgq31n7qanylrld6dzvg6n8qgzp4s544l0dwfw6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-matchit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-matchit";
sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq";
name = "evil-matchit";
};
@@ -18100,7 +18184,7 @@
sha256 = "1ayfrl0bk8i6mqaq4hwgd0wbigiw6ndsi3c2q6znahhcbdfzjjmq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-mc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-mc";
sha256 = "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs";
name = "evil-mc";
};
@@ -18121,7 +18205,7 @@
sha256 = "0zqmmv3if9zzq9fgjg8wj62pk1qn65nax9hsk9m7lx2ncdv8cph1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-mu4e";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-mu4e";
sha256 = "1ks4vnga7dkz27a7gza5hakzbcsiqgkq1ysc0lcx7g82ihpmrrcq";
name = "evil-mu4e";
};
@@ -18142,7 +18226,7 @@
sha256 = "16rrd02yr6rz4xlc35gr5d7ds3h168yhz4iinq8zmnlw778waz5j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-multiedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-multiedit";
sha256 = "0p02q9skqw2zhx7sfadqgs7vn518s72856962dam0xw4sqasplfp";
name = "evil-multiedit";
};
@@ -18163,7 +18247,7 @@
sha256 = "0msk65smj05wgs8dr42wy0w265pgcffrpgbvclahxhyj9ypscwsb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-nerd-commenter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-nerd-commenter";
sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d";
name = "evil-nerd-commenter";
};
@@ -18184,7 +18268,7 @@
sha256 = "1aq95hj8x13py0pwsnc6wvd8cc5yv5qin8ym9js42y5966vwj4np";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-numbers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-numbers";
sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2";
name = "evil-numbers";
};
@@ -18205,7 +18289,7 @@
sha256 = "0pir7a3xxbcp5f3q9pi36rpdpi8pbx18afmh0r3501ynssyjfq53";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-org";
sha256 = "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c";
name = "evil-org";
};
@@ -18226,7 +18310,7 @@
sha256 = "0b08y4spapl4g2292j3l4cr84gjlvm3rpma3gqld4yb1sxd7v78p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-paredit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-paredit";
sha256 = "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy";
name = "evil-paredit";
};
@@ -18247,7 +18331,7 @@
sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-quickscope";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-quickscope";
sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489";
name = "evil-quickscope";
};
@@ -18268,7 +18352,7 @@
sha256 = "12rdx5zjp5pck008cykpw200rr1y0b3lj2dpzf82llfyfaxzh7wi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-rails";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-rails";
sha256 = "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj";
name = "evil-rails";
};
@@ -18289,7 +18373,7 @@
sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-rsi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-rsi";
sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345";
name = "evil-rsi";
};
@@ -18310,7 +18394,7 @@
sha256 = "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-search-highlight-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-search-highlight-persist";
sha256 = "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy";
name = "evil-search-highlight-persist";
};
@@ -18331,7 +18415,7 @@
sha256 = "1jvyj2qc340vzw379ij9vkzfw5qningkv0n1mwzhzhb1dg8i1ciq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-smartparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-smartparens";
sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza";
name = "evil-smartparens";
};
@@ -18348,11 +18432,11 @@
src = fetchFromGitHub {
owner = "hlissner";
repo = "evil-snipe";
- rev = "396d6b0f80790781cce834ce8535249542d11c7c";
- sha256 = "17l5g1zg3dhnjmdlx486x3b3v7vp4z0l9fv12anmw442k37xwia4";
+ rev = "7037103feedcead1d5b51e11b1968ba340cb5bd1";
+ sha256 = "19lgjlpgyjbyir7zvravgrsmzk6ryj8rvxpfy0alxa38nv5wgpmd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-snipe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-snipe";
sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn";
name = "evil-snipe";
};
@@ -18373,7 +18457,7 @@
sha256 = "1x4nphjq8lvg8qsm1pj04mk9n59xc6jlxiv5s3bih1nl4xkssrxy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-space";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-space";
sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23";
name = "evil-space";
};
@@ -18394,7 +18478,7 @@
sha256 = "1sl89qm3wgmsr1mld1nv18mz7fjc2wq11br6hkdf7qm733q68b7a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-surround";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-surround";
sha256 = "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag";
name = "evil-surround";
};
@@ -18415,7 +18499,7 @@
sha256 = "1qklx0j3fz3mp87v64yqbyyq5csfymbjfwvy2s4nk634wbnrra93";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-tabs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-tabs";
sha256 = "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62";
name = "evil-tabs";
};
@@ -18436,7 +18520,7 @@
sha256 = "10aic2r1akk38hh761hr5vp9fjlh1m5nimag0nzdq5x9g9467cc8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-terminal-cursor-changer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-terminal-cursor-changer";
sha256 = "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian";
name = "evil-terminal-cursor-changer";
};
@@ -18457,7 +18541,7 @@
sha256 = "1v4z2snllgg32cy8glv7xl0m9ib7rwi5ixgdydz1d0sx0z62jyhw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-textobj-anyblock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-textobj-anyblock";
sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa";
name = "evil-textobj-anyblock";
};
@@ -18478,7 +18562,7 @@
sha256 = "0nff90v6d97n2xizvfz126ksrf7ngd5rp0j7k7lhbv0v5zcqgxiv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-textobj-column";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-textobj-column";
sha256 = "13q3nawx05rn3k6kzq1889vxjznr454cib96pc9lmrq7h65lym2h";
name = "evil-textobj-column";
};
@@ -18499,7 +18583,7 @@
sha256 = "00yfq8aflxvp2nnz7smgq0c5wlb7cips5irj8qs6193ixlkpffvx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-tutor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-tutor";
sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn";
name = "evil-tutor";
};
@@ -18520,7 +18604,7 @@
sha256 = "1z75wp4az5pykvn90vszfb9y8w675g1w288lx8ar9i2hyddsids4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-vimish-fold";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-vimish-fold";
sha256 = "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6";
name = "evil-vimish-fold";
};
@@ -18541,7 +18625,7 @@
sha256 = "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-visual-mark-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-visual-mark-mode";
sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48";
name = "evil-visual-mark-mode";
};
@@ -18562,7 +18646,7 @@
sha256 = "0mkbzw12fav945icibc2293m5haxqr3hzkyli2cf4ssk6yvn0x4c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-visualstar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-visualstar";
sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy";
name = "evil-visualstar";
};
@@ -18583,7 +18667,7 @@
sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evm";
sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03";
name = "evm";
};
@@ -18604,7 +18688,7 @@
sha256 = "1frhcgkiys0pqrlcsi5zcl3ngblr38wrwfi6wzqk75x21rnwnbqv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ewmctrl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ewmctrl";
sha256 = "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl";
name = "ewmctrl";
};
@@ -18625,7 +18709,7 @@
sha256 = "1i6zf17rwa390c33cbspz81dz86vwlphyhjjsia4gp205nfk3s20";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eww-lnum";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eww-lnum";
sha256 = "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79";
name = "eww-lnum";
};
@@ -18646,7 +18730,7 @@
sha256 = "0xxk0cr28g7vw8cwsnwrdrc8xqr50g6m9h0v43mx2iws9pn9dd47";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/exec-path-from-shell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/exec-path-from-shell";
sha256 = "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9";
name = "exec-path-from-shell";
};
@@ -18667,7 +18751,7 @@
sha256 = "0wz4h5hrr5ci0w8pynd2nr1b2zl5hl4pa8gc16mcabik5927rf7z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/expand-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/expand-line";
sha256 = "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9";
name = "expand-line";
};
@@ -18688,7 +18772,7 @@
sha256 = "0qqqv0pp25xg1zh72i6fsb7l9vi14nd96rx0qdj1f3pdwfidqms1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/expand-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/expand-region";
sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg";
name = "expand-region";
};
@@ -18709,7 +18793,7 @@
sha256 = "0ah8zayipwp760909llb9whcdvmbsdgkg0x5y4qlcicm1r9kwcc7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/express";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/express";
sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9";
name = "express";
};
@@ -18730,7 +18814,7 @@
sha256 = "0sx3kywaqb8sgywqgcx9gllz8zm53pr5vp82vlv7aj5h93lxhxzh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/extempore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/extempore-mode";
sha256 = "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php";
name = "extempore-mode";
};
@@ -18751,7 +18835,7 @@
sha256 = "15dwl1rb3186k328a83dz9xmslc0px60ah16fifvmr3migis9hwz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/extend-dnd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/extend-dnd";
sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417";
name = "extend-dnd";
};
@@ -18772,7 +18856,7 @@
sha256 = "1i9lklzg7fyi4rl0vv1lidx0shlhih0474bbjsvc74p19p5cmlrq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/exwm-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/exwm-x";
sha256 = "1d9q57vz63sk3h1g5gvp9xnmqkpa73wppmiy2bv8mxk11whl6xa3";
name = "exwm-x";
};
@@ -18793,7 +18877,7 @@
sha256 = "0w2g7rpw26j65j4r23w6j8nw3arw73l601kyy6qv9p9bkk1yc072";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eyebrowse";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eyebrowse";
sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861";
name = "eyebrowse";
};
@@ -18812,7 +18896,7 @@
sha256 = "1fg3j0jlww2rqc6k2nq95hcg6i26nqdp043h7kyjcwrgqbjfsigl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eyedropper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eyedropper";
sha256 = "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk";
name = "eyedropper";
};
@@ -18833,7 +18917,7 @@
sha256 = "1rgzydxv7c455vj1jm44vvs6xc4qgivqqb0g6zh5x4wdcpgdi2g9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eyuml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eyuml";
sha256 = "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx";
name = "eyuml";
};
@@ -18854,7 +18938,7 @@
sha256 = "15qa09x206s7rxmk35rslqniydh6hdb3n2kbspm5zrndcmsqz4zi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ez-query-replace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ez-query-replace";
sha256 = "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx";
name = "ez-query-replace";
};
@@ -18875,7 +18959,7 @@
sha256 = "0v6y897ibs589gry7xrs1vj14h9qd6riach6r27xf7386ji5hb6s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/f";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/f";
sha256 = "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2";
name = "f";
};
@@ -18896,7 +18980,7 @@
sha256 = "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fabric";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fabric";
sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m";
name = "fabric";
};
@@ -18914,7 +18998,7 @@
sha256 = "0yr3fqpn9pj6y8bsb6g7hkg75sl703pzngn8gp0sgs3v90c180l5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/face-remap+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/face-remap+";
sha256 = "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y";
name = "face-remap-plus";
};
@@ -18932,7 +19016,7 @@
sha256 = "1kayc4hsalvqnn577y3f97w9kz94c53vcxwx01s0k34ffav919c2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/facemenu+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/facemenu+";
sha256 = "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv";
name = "facemenu-plus";
};
@@ -18950,7 +19034,7 @@
sha256 = "0sqrymmr583cgqmv4bs6rjms5ij5cm8vvxjrfc9alacwyz5f7w8m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/faces+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/faces+";
sha256 = "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92";
name = "faces-plus";
};
@@ -18971,7 +19055,7 @@
sha256 = "0sjmjydapfnv979dx8dwiz67wffamiaf41s4skkwa0wn2h4p6wja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/faceup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/faceup";
sha256 = "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx";
name = "faceup";
};
@@ -18992,7 +19076,7 @@
sha256 = "19zm9my7fl1r3q48axjv2f8x9hcjk6qah4y4r92b90bzfmcdc30y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/factlog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/factlog";
sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7";
name = "factlog";
};
@@ -19013,7 +19097,7 @@
sha256 = "1iv9xnpylw2mw18993yy5s9bkxs1rjrn4q92b1wvrx1n51kcw2ny";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/faff-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/faff-theme";
sha256 = "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g";
name = "faff-theme";
};
@@ -19034,7 +19118,7 @@
sha256 = "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fakespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fakespace";
sha256 = "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27";
name = "fakespace";
};
@@ -19055,7 +19139,7 @@
sha256 = "1w5apzbzr1jd983b0rzsy9ldb0z0zcq6mpyb5r8czl5wd4vvj69h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fakir";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fakir";
sha256 = "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25";
name = "fakir";
};
@@ -19076,7 +19160,7 @@
sha256 = "0m7rjzl9js2gjfcaqp2n5pn5ykpqnv8qfv35l5m5kpfigsi9cbb0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fancy-battery";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fancy-battery";
sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii";
name = "fancy-battery";
};
@@ -19097,7 +19181,7 @@
sha256 = "0825hyz8b2biil0pd2bgjxqd2zm3gw9si7br5hnh51qasbaw9hid";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fancy-narrow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fancy-narrow";
sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv";
name = "fancy-narrow";
};
@@ -19118,7 +19202,7 @@
sha256 = "08lgfa2k42qpcs4999b77ycsg76zb56qbcxbsvmg0pcwjwa1ambz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/farmhouse-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/farmhouse-theme";
sha256 = "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229";
name = "farmhouse-theme";
};
@@ -19139,7 +19223,7 @@
sha256 = "0m2qn3rd16s7ahyw6f9a4jb73sdc8bqp6d03p450yzcn36lw78z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fasd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fasd";
sha256 = "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c";
name = "fasd";
};
@@ -19149,6 +19233,27 @@
license = lib.licenses.free;
};
}) {};
+ fastdef = callPackage ({ fetchFromGitHub, fetchurl, ivy, lib, melpaBuild, w3m }:
+ melpaBuild {
+ pname = "fastdef";
+ version = "20160517.820";
+ src = fetchFromGitHub {
+ owner = "redguardtoo";
+ repo = "fastdef";
+ rev = "602808385974db7a8e57b2980b3adc1bc61e4aec";
+ sha256 = "0kidb2kwjyrz93yy9gnwwsb60xx3k6npni2gj8q38w50lql5ja2l";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fastdef";
+ sha256 = "1cf4slxhcp2z7h9k3l31h06nnqsyb4smwnj55ivil2lm0fa0vlzj";
+ name = "fastdef";
+ };
+ packageRequires = [ ivy w3m ];
+ meta = {
+ homepage = "https://melpa.org/#/fastdef";
+ license = lib.licenses.free;
+ };
+ }) {};
fastnav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fastnav";
@@ -19160,7 +19265,7 @@
sha256 = "0y95lrdqd9i2kbb266s1wdiim4m8vrn3br19d8s55ib6xlywf8cx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fastnav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fastnav";
sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5";
name = "fastnav";
};
@@ -19181,7 +19286,7 @@
sha256 = "0m9nzl0z3gc6fjpfqklwrsxlcgbbyydls004a39wfppyz0wr94fy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/faust-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/faust-mode";
sha256 = "1lfn4q1wcc3vzazv2yzcnpvnmq6bqcczq8lpkz7w8yj8i5kpjvsc";
name = "faust-mode";
};
@@ -19194,15 +19299,15 @@
fcitx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fcitx";
- version = "20160513.2205";
+ version = "20160518.1254";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "fcitx.el";
- rev = "194f8aaa8231dacf7b6c54a7c3cc5cacc43cc826";
- sha256 = "167dlyp69fynqhqg4hwpc3lc2i79916mdiqxm19wn9hh6wrbdd81";
+ rev = "7747865f0af9320439066ae53d82a951f1b5cd77";
+ sha256 = "1qrmzlvc7bbq0ayv9l7wp32vg22c2w27y7nr0k79qk4p6kn1pnn6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fcitx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fcitx";
sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx";
name = "fcitx";
};
@@ -19223,7 +19328,7 @@
sha256 = "0c56j8ip2fyma9yvwaanz89jyzgi9k11xwwkflzlzc4smnvgfibr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fcopy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fcopy";
sha256 = "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1";
name = "fcopy";
};
@@ -19244,7 +19349,7 @@
sha256 = "0ylm4zcf82f5rl4lps5p6p8dc3i5p2v7w93caadgzv5qbl400h5d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/feature-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/feature-mode";
sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg";
name = "feature-mode";
};
@@ -19265,7 +19370,7 @@
sha256 = "0pjw9fb3n08yd38680ifdn2wlnw2k6q97lzhqb2259mywsycyqy8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fetch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fetch";
sha256 = "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby";
name = "fetch";
};
@@ -19286,7 +19391,7 @@
sha256 = "06xd5rvn037g1kjdw7aa1n71i1mpnp4qz3a7wcmzbls0amhhnx1m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fic-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fic-mode";
sha256 = "0yy1zw0b0s93qkzyq0n17gzn33ma5h56mh40ysz6adwsi68af84c";
name = "fic-mode";
};
@@ -19307,7 +19412,7 @@
sha256 = "0dkng4zkd5xdyvqy67bnfp4z6w8byx66bssq1zl7bhga45vihfjg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fifo-class";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fifo-class";
sha256 = "0yyjrvdjiq5166vrys13c3dqy5807a3x99597iw5v6mcxg37jg3h";
name = "fifo-class";
};
@@ -19326,7 +19431,7 @@
sha256 = "1c18b1h154sdxkksqwk8snyk8n43bwzgavi75l8mnz8dnl1ciaxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/figlet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/figlet";
sha256 = "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj";
name = "figlet";
};
@@ -19344,7 +19449,7 @@
sha256 = "0s79b5jj3jfl3aih6r3fa0zix40arysk6mz4fijapd8ybaflz25n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/files+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/files+";
sha256 = "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8";
name = "files-plus";
};
@@ -19362,7 +19467,7 @@
sha256 = "020rpjrjp2gh4w6mrphrvk27kdizfqbjsw2sxraf8jz0dibg9gfg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/filesets+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/filesets+";
sha256 = "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn";
name = "filesets-plus";
};
@@ -19383,7 +19488,7 @@
sha256 = "0gbqspqn4y7f2fwqq8210b6k5q22c0zr7b4ws8qgz9swav8g3vrq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fill-column-indicator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fill-column-indicator";
sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma";
name = "fill-column-indicator";
};
@@ -19404,7 +19509,7 @@
sha256 = "1x9wmxbcmd6qgdyzrl978nczfqrgyk6xz3rnh5hffbapy1v1rw47";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fillcode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fillcode";
sha256 = "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2";
name = "fillcode";
};
@@ -19425,7 +19530,7 @@
sha256 = "0f76cgh97z0rbbg2bp217nqmxfimzkvw85k9mx8bj78i9s2cdmwa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/finalize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/finalize";
sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq";
name = "finalize";
};
@@ -19446,7 +19551,7 @@
sha256 = "18a4ydp30ycx5w80j3xgghclzmzbvrkl2awxixy4aj68nmljk480";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/find-by-pinyin-dired";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-by-pinyin-dired";
sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq";
name = "find-by-pinyin-dired";
};
@@ -19464,7 +19569,7 @@
sha256 = "0a2wgdrj6yxvpmzqiqpgzj3gbf04fvbhrfa3213hiah1k9l066m5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/find-dired+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-dired+";
sha256 = "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli";
name = "find-dired-plus";
};
@@ -19481,11 +19586,11 @@
src = fetchFromGitHub {
owner = "technomancy";
repo = "find-file-in-project";
- rev = "32e291c4d741a520234c77c227954b2d6430ef19";
- sha256 = "13myami3vm5py9pp957kbfl9dd11z1a4vy0bbzqqnkgliim7pbsb";
+ rev = "faaab6ebf0c3dd2d32c8021320d481e7eaffb6f8";
+ sha256 = "0n1vpnh4afzb67k0s0jxlynv01m2lqczsfscpcvbmvxa22fnlal9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/find-file-in-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-file-in-project";
sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy";
name = "find-file-in-project";
};
@@ -19506,7 +19611,7 @@
sha256 = "090m5647dpc8r8fwi3mszvc8kp0420ma5sv0lmqr2fpxyn9ybkjh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/find-file-in-repository";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-file-in-repository";
sha256 = "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6";
name = "find-file-in-repository";
};
@@ -19527,7 +19632,7 @@
sha256 = "1d6zn3qsg4lpk13cvn5r1w88dnhfydnhwf59x6cb4sy5q1ihk0g3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/find-temp-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-temp-file";
sha256 = "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p";
name = "find-temp-file";
};
@@ -19548,7 +19653,7 @@
sha256 = "1r6cs7p43pi6n2inbrv9q924m679izxwxqgyr4sjjj3lg6an4cnx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/find-things-fast";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-things-fast";
sha256 = "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m";
name = "find-things-fast";
};
@@ -19566,7 +19671,7 @@
sha256 = "0x3f9qygp26c4yw32cgyy35bb4f1fq0fg7q8s9vs777skyl3rvp4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/finder+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/finder+";
sha256 = "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh";
name = "finder-plus";
};
@@ -19584,7 +19689,7 @@
sha256 = "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/findr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/findr";
sha256 = "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq";
name = "findr";
};
@@ -19605,7 +19710,7 @@
sha256 = "1vjgcxyzv2p74igr3y0z6hk7bj6yqwjawx90xvvmp9z7m91d4yrg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fingers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fingers";
sha256 = "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg";
name = "fingers";
};
@@ -19626,7 +19731,7 @@
sha256 = "14yy7kr2iv549xaf5gkav48lk2hzmvipwbs0rzljzw60il6k05hk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fiplr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fiplr";
sha256 = "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca";
name = "fiplr";
};
@@ -19647,7 +19752,7 @@
sha256 = "02ajday0lnk37dnzf4747ha3w0azisq35fmdhq322hx0hfb1c66x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/firebelly-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/firebelly-theme";
sha256 = "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr";
name = "firebelly-theme";
};
@@ -19668,7 +19773,7 @@
sha256 = "0v8liv6aq10f8dxbl3d4rph1qk891dlxm9wqdc6w8aj318750hfm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/firecode-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/firecode-theme";
sha256 = "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739";
name = "firecode-theme";
};
@@ -19689,7 +19794,7 @@
sha256 = "04afwxgydrn23bv93zqf9bd2cp02i9dcfqbi809arkmh8723qf6k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/firefox-controller";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/firefox-controller";
sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6";
name = "firefox-controller";
};
@@ -19710,7 +19815,7 @@
sha256 = "1smg4mqc5qdwzk5mp2hfm6l4s7k408x46xfl7fl45csb18islmrp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fireplace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fireplace";
sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw";
name = "fireplace";
};
@@ -19731,7 +19836,7 @@
sha256 = "0ssx3qjv600n8x83g34smphiyywgl97dh4wx8kzm9pp42jnp29cj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/firestarter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/firestarter";
sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp";
name = "firestarter";
};
@@ -19752,7 +19857,7 @@
sha256 = "0z0ji88mdp3xm5lg3drkd56gpl4qy61mxh11i09rqiwmiw0lp1vm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fish-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fish-mode";
sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14";
name = "fish-mode";
};
@@ -19770,7 +19875,7 @@
sha256 = "082c6yyb1269va6k602hxpdf7ylfxz8gq8swqzwf07qaas0b5qxd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fit-frame";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fit-frame";
sha256 = "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb";
name = "fit-frame";
};
@@ -19791,7 +19896,7 @@
sha256 = "16rd23ygh76fs4i7rni94k8gwa9n360h40qmhm65snp31kqnpr1p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fix-input";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fix-input";
sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p";
name = "fix-input";
};
@@ -19812,7 +19917,7 @@
sha256 = "17f11v9sd5fay3i4k6lmpsjicdw9j3zvx3fvhx0a86mp7ay2ywwf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fix-word";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fix-word";
sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc";
name = "fix-word";
};
@@ -19833,7 +19938,7 @@
sha256 = "1x4k8890pzdcizzl0p6v96ylrx5xid9ykgrmggx0b3y0gx0vhwic";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fixmee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fixmee";
sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp";
name = "fixmee";
};
@@ -19861,7 +19966,7 @@
sha256 = "07hv6l80ka10qszm16fpan8sas4b0qvl5s6qixxlz02fm7m0s7m5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flappymacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flappymacs";
sha256 = "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d";
name = "flappymacs";
};
@@ -19882,7 +19987,7 @@
sha256 = "0z77lm6jv2w5z551pwarcx6xg9kx8fgms9dlskngfvnzbqkldj1f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flash-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flash-region";
sha256 = "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c";
name = "flash-region";
};
@@ -19903,7 +20008,7 @@
sha256 = "0ib6r6q4wbkkxdwgqsd25nx7ccxhk16lqkvwikign80j9n11g7s1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flatland-black-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flatland-black-theme";
sha256 = "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da";
name = "flatland-black-theme";
};
@@ -19924,7 +20029,7 @@
sha256 = "0cl8m1i1aaw4zmkrkhfchhp0gxhpvhcmpjglsisjni47y5mydypf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flatland-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flatland-theme";
sha256 = "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3";
name = "flatland-theme";
};
@@ -19945,7 +20050,7 @@
sha256 = "0j8pklgd2sk01glgkr24b5n5521425vws8zwdi4sxcv74922j5zr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flatui-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flatui-theme";
sha256 = "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz";
name = "flatui-theme";
};
@@ -19966,7 +20071,7 @@
sha256 = "187ah7yhmr3ckw23bf4fivx8v79yj0zmilrkjj7k6l198w8wmvql";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flex-autopair";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flex-autopair";
sha256 = "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007";
name = "flex-autopair";
};
@@ -19986,7 +20091,7 @@
sha256 = "02z1w8z9fqdshyyf03c26zjwhmmclb02caw3b6nhhk4w1rkbh6is";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flex-isearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flex-isearch";
sha256 = "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3";
name = "flex-isearch";
};
@@ -20007,7 +20112,7 @@
sha256 = "10sayqyf5jwmz7h9gpp4657v6v8vmcd8ahzbshwwqbakjqwnn08c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flim";
sha256 = "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc";
name = "flim";
};
@@ -20025,7 +20130,7 @@
sha256 = "1viigj04kla20dk46xm913jzqrmx05rpjrpghnc0ylbqppqdwzpw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fliptext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fliptext";
sha256 = "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji";
name = "fliptext";
};
@@ -20038,15 +20143,15 @@
floobits = callPackage ({ fetchFromGitHub, fetchurl, highlight, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "floobits";
- version = "20160307.2004";
+ version = "20160517.1852";
src = fetchFromGitHub {
owner = "Floobits";
repo = "floobits-emacs";
- rev = "87ae6b1257f7c2ae91b100920b03363dd26d7dd9";
- sha256 = "10irvd9bi25fbx66dlc3v6zcqznng0aqcdb8656cz0qx7hrz56pw";
+ rev = "052cce8506b5cbb8f0281442af8624d5847c7157";
+ sha256 = "0acgyxl4kpfld6h6j54415ac8crk7byfs5lcysil9s5l3qrxjl3h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/floobits";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/floobits";
sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf";
name = "floobits";
};
@@ -20067,7 +20172,7 @@
sha256 = "0csflhd69vz3wwq5j7872xx2l62hwiz1f5nggl5nz7h7v9anjx3r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flx";
sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9";
name = "flx";
};
@@ -20088,7 +20193,7 @@
sha256 = "0csflhd69vz3wwq5j7872xx2l62hwiz1f5nggl5nz7h7v9anjx3r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flx-ido";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flx-ido";
sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc";
name = "flx-ido";
};
@@ -20109,7 +20214,7 @@
sha256 = "1cmjw1zrb1nq9nx0d634ajli1di8x48k6s88zi2s2q0mbi28lzz1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flx-isearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flx-isearch";
sha256 = "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd";
name = "flx-isearch";
};
@@ -20122,15 +20227,15 @@
flycheck = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, seq }:
melpaBuild {
pname = "flycheck";
- version = "20160514.1308";
+ version = "20160519.603";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck";
- rev = "a3f6cb51017669500723fedac2b8133c2b135243";
- sha256 = "14wjw2b5qpabzdx69849d4nqn6pjm0q1r9hhhr5p0ahvai8z6k84";
+ rev = "05aae1b1160e909ff747afe1230c87b2f9fe96ad";
+ sha256 = "1w2hzg4786sfs5yi0p3nwl4bk48gddj0bnm5ca0586s8dn2h4dgq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck";
sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr";
name = "flycheck";
};
@@ -20151,7 +20256,7 @@
sha256 = "14idjjz6fhmq806mmncmqnr9bvcjks6spin8z6jb0gqcg1dbhm06";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-apertium";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-apertium";
sha256 = "1cc15sljqs6gvb3wiw7n1wkd714qkvfpw6l1kg4lfx9r4jalcvw7";
name = "flycheck-apertium";
};
@@ -20172,7 +20277,7 @@
sha256 = "0fh5z68gnggm0qjb8ncmfngv195lbp1dxz9jbmdi418d47mlba9c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-ats2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ats2";
sha256 = "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr";
name = "flycheck-ats2";
};
@@ -20193,7 +20298,7 @@
sha256 = "0klnhq0zfn5zbkwl7y9kja7x49n1w6r1qbphk7a7v9svgm3h9s7n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-cask";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-cask";
sha256 = "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7";
name = "flycheck-cask";
};
@@ -20214,7 +20319,7 @@
sha256 = "1s2zq97d7ryif6rlbvriz36dh23wmwi67v4q6krl77dfzcs705b3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-checkbashisms";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-checkbashisms";
sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz";
name = "flycheck-checkbashisms";
};
@@ -20235,7 +20340,7 @@
sha256 = "1ckzs32wzqpnw89rrw3l7i4gbyn25wagbadsc4mcrixml5nf0mck";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-clangcheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-clangcheck";
sha256 = "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m";
name = "flycheck-clangcheck";
};
@@ -20256,7 +20361,7 @@
sha256 = "04qyylw868mn7wvml8l23vxgca9pwq1hrv6xlcd3xqgn7102n3w2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-clojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-clojure";
sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28";
name = "flycheck-clojure";
};
@@ -20277,7 +20382,7 @@
sha256 = "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-color-mode-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-color-mode-line";
sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq";
name = "flycheck-color-mode-line";
};
@@ -20298,7 +20403,7 @@
sha256 = "073vkjgcyqp8frsi05s6x8ml3ar6hwjmn2c7ryfab5b35kp9gmdi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-css-colorguard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-css-colorguard";
sha256 = "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc";
name = "flycheck-css-colorguard";
};
@@ -20319,7 +20424,7 @@
sha256 = "1fric65r33bgn2h1s1m3pxnm3d1gk2z4pwnj72in6p7glj3kg24w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-cstyle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-cstyle";
sha256 = "0p3lzpcgwk4nkq1w0iq40njz8ll2h3vi9z5fbvv1ar4r80fqd909";
name = "flycheck-cstyle";
};
@@ -20340,7 +20445,7 @@
sha256 = "0994346iyp7143476i3y6pc5m1n6z7g1r6n1rldivsj0qr4gjh01";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-cython";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-cython";
sha256 = "1mbrwhpbs8in11mp79cnl4bd3m33qdgrvnbvi1mqvrsvz1ay28g4";
name = "flycheck-cython";
};
@@ -20353,15 +20458,15 @@
flycheck-d-unittest = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-d-unittest";
- version = "20160125.718";
+ version = "20160522.17";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck-d-unittest";
- rev = "93de1f358ca4b2964c43a465031f3efa8561af06";
- sha256 = "0b4yq39c8m03pv5cgvvqcippc3yfphpgjw3bh2bnxch1pwfik3xm";
+ rev = "3e614f23cb4a5566fd7988dbcaaf254af81c7718";
+ sha256 = "0lrxyrvdkj88qh78jmamrnji770vjsr6h01agl7hvd4n2xvlxcym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-d-unittest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-d-unittest";
sha256 = "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2";
name = "flycheck-d-unittest";
};
@@ -20382,7 +20487,7 @@
sha256 = "1hw875dirz041vzw1pxjpk5lr1zmrp2kp9m6pazs9j19d686hyn6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-dedukti";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-dedukti";
sha256 = "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8";
name = "flycheck-dedukti";
};
@@ -20403,7 +20508,7 @@
sha256 = "1i5wm2r6rck6864a60mm6kv31vgvqnq49hi9apvhyywfn6sycwkf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-dialyzer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-dialyzer";
sha256 = "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2";
name = "flycheck-dialyzer";
};
@@ -20424,7 +20529,7 @@
sha256 = "0dqkd9h54qmr9cv2gmic010j2h03i80psajrv4wq3c4pvxyqyn2j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-dmd-dub";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-dmd-dub";
sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm";
name = "flycheck-dmd-dub";
};
@@ -20445,7 +20550,7 @@
sha256 = "1aa7x25a70ldbm6rl0s1wa1ncd6p6z1a7f75lk5a3274ghq8jv8p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-elixir";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-elixir";
sha256 = "0f78fai6q15smh9rvsliv8r0hh3kpwn1lz37yvqkkbx9vl7rlwld";
name = "flycheck-elixir";
};
@@ -20466,7 +20571,7 @@
sha256 = "08dlm3g2d8rl53hq0b4z7gp8529almlkyf69d3c8f9didmlhizk7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-elm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-elm";
sha256 = "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4";
name = "flycheck-elm";
};
@@ -20487,7 +20592,7 @@
sha256 = "0lk7da7axn9fm0kzlzx10ir014rsdsycffi8jcy4biqllw6yi4dx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-flow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-flow";
sha256 = "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3";
name = "flycheck-flow";
};
@@ -20508,7 +20613,7 @@
sha256 = "0q1m1f3vhw1wy0pa3njy55z28psznbw2xwmwk2v1p5c86n74ns8d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-ghcmod";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ghcmod";
sha256 = "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp";
name = "flycheck-ghcmod";
};
@@ -20529,7 +20634,7 @@
sha256 = "0frgyj57mrggq5ib6xi71696m97ch0bw6cc208d2qbnb55sf4fgb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-gometalinter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-gometalinter";
sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2";
name = "flycheck-gometalinter";
};
@@ -20550,7 +20655,7 @@
sha256 = "0l6sg83f6z8x2alnblpv03rj442sbnkkkcbf8i0agjmx3713a5yx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-google-cpplint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-google-cpplint";
sha256 = "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b";
name = "flycheck-google-cpplint";
};
@@ -20571,7 +20676,7 @@
sha256 = "1yyjh649ag6h3wnflsjlndmrlanjqbf59zg4gm9qqyhksqy4hyyv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-haskell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-haskell";
sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7";
name = "flycheck-haskell";
};
@@ -20592,7 +20697,7 @@
sha256 = "1x61q0fqr1jbqs9kk59f565a02qjxh1gnp1aigys0yz6qnshvzbb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-hdevtools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-hdevtools";
sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93";
name = "flycheck-hdevtools";
};
@@ -20613,7 +20718,7 @@
sha256 = "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-irony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-irony";
sha256 = "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z";
name = "flycheck-irony";
};
@@ -20634,7 +20739,7 @@
sha256 = "15cgqbl6n3nyqiizgs2zvcvfs6bcnjk3bj81lhhwrzizbjvap3rv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-ledger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ledger";
sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl";
name = "flycheck-ledger";
};
@@ -20655,7 +20760,7 @@
sha256 = "0isqa6ybdd4166h3rdcg0b8pcxn00v8dav58xwfcj92nhzvs0qca";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-mercury";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-mercury";
sha256 = "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h";
name = "flycheck-mercury";
};
@@ -20676,7 +20781,7 @@
sha256 = "01r2ycbayhsxh3dq4d3qky5s0gcv3fjlp8j08y8dgyl406pkzhdz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-mypy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-mypy";
sha256 = "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f";
name = "flycheck-mypy";
};
@@ -20697,7 +20802,7 @@
sha256 = "06hs41l41hm08dv93wldd98hmnd3jqbg58pj5ymn15kgdsy1rirg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-nim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-nim";
sha256 = "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az";
name = "flycheck-nim";
};
@@ -20718,7 +20823,7 @@
sha256 = "0fm8w7126vf04n76qhh33rzybvl1n7va2whbqzafbvmv2nny3v94";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-ocaml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ocaml";
sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7";
name = "flycheck-ocaml";
};
@@ -20739,7 +20844,7 @@
sha256 = "1x5lk6fdai5jvq4hlcgb88ljjncwkq1lkqs8d3wkqwyc3kh3rwjg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-package";
sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d";
name = "flycheck-package";
};
@@ -20760,7 +20865,7 @@
sha256 = "0ffas4alqhijvm8wl1p5nqjhnxki8gs6b5bxb4nsqwnma8qmlcx3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-perl6";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-perl6";
sha256 = "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4";
name = "flycheck-perl6";
};
@@ -20781,7 +20886,7 @@
sha256 = "1fnk59mk4qrkaaig3nv2w45add82agjfm82a9rf0128znfipf02p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-pkg-config";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-pkg-config";
sha256 = "0w7h4fa4mv8377sdbkilqcw4b9qda98c1k01nxic7a8i3iyq02d6";
name = "flycheck-pkg-config";
};
@@ -20798,11 +20903,11 @@
src = fetchFromGitHub {
owner = "SeanTAllen";
repo = "flycheck-pony";
- rev = "cf68fd0390b5777f161d7a09c2700c229328c678";
- sha256 = "05sybsr62c04495mlg5zp6f75p3araskzm0riz79j056w7hwrj59";
+ rev = "ef27475a14090396a01924d131bfee9e163cf6e9";
+ sha256 = "06wij2g3prj5qzd8csc6v0phww7prdsf8hqmli6kil954lyxxaxl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-pony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-pony";
sha256 = "18w1d7y3jsmsc4wg0909p72cnvbxzsmnirmrahhwgsb963fij5qk";
name = "flycheck-pony";
};
@@ -20823,7 +20928,7 @@
sha256 = "0wca22jp0alknmllfl22j89aasiwms6ipqyv1pnvbrgmrbzcmlp7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-pos-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-pos-tip";
sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9";
name = "flycheck-pos-tip";
};
@@ -20844,7 +20949,7 @@
sha256 = "1adcijysw4v8rrxzswi8zhd6w99iaqq7asps0jp21gr9nqci8vdj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-protobuf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-protobuf";
sha256 = "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc";
name = "flycheck-protobuf";
};
@@ -20865,7 +20970,7 @@
sha256 = "10cjgbxxc26ykm0ww4b6ykjbx89c12mjrmqmny6riq92pfrnl4y3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-purescript";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-purescript";
sha256 = "05j1iscyg9khw0zq63676zrisragklxp48hmbc7vrbmbiy964lwd";
name = "flycheck-purescript";
};
@@ -20886,7 +20991,7 @@
sha256 = "16albss527dq4ncpiy8p326fib038qc6wjbh985lw2p1f9babswa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-pyflakes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-pyflakes";
sha256 = "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1";
name = "flycheck-pyflakes";
};
@@ -20907,7 +21012,7 @@
sha256 = "136rwl2dm686v2a9s7wg5yppr0is1vx5q4mvah030m9xs9r66jkp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-rust";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-rust";
sha256 = "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w";
name = "flycheck-rust";
};
@@ -20920,15 +21025,15 @@
flycheck-stack = callPackage ({ fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-stack";
- version = "20160503.826";
+ version = "20160520.544";
src = fetchFromGitHub {
owner = "chrisdone";
repo = "flycheck-stack";
- rev = "ed6b6132ae797936320220c190127928e808e5ce";
- sha256 = "1w93g89aix7mhkwaarv90w1yjjkfadxk23ra3zdk4y00kly7hr9g";
+ rev = "f04235e00998000ee2c305f5a3ee72bb5dbbc926";
+ sha256 = "139q43ldvymfxns8zv7gxasn3sg0rn4i9yz08wgk50psg5zq5mjr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-stack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-stack";
sha256 = "1r9zppqmp1i5i06jhkrgvwy1p3yc8kmcvgibricydqsij26lhpmf";
name = "flycheck-stack";
};
@@ -20949,7 +21054,7 @@
sha256 = "0v7d0yijqn3mhgjwqiv1rsdhw2ay6ffbn8i45x0dlp960v7k2k8f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-status-emoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-status-emoji";
sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p";
name = "flycheck-status-emoji";
};
@@ -20970,7 +21075,7 @@
sha256 = "0lrgww53xzz2hnc8c83hqxczzfm1bvixfswhsav4i8aakk3idjxi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-tip";
sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656";
name = "flycheck-tip";
};
@@ -20991,7 +21096,7 @@
sha256 = "1x138lbjy87sk68sjx07l3in2d9qzcc3pa9vgzvg95aiaacnk8qi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-ycmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ycmd";
sha256 = "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv";
name = "flycheck-ycmd";
};
@@ -21012,7 +21117,7 @@
sha256 = "10i0rbvk6vyifgbgskdyspmw9q64x99fzi8i1h8bgv58xhfx6pm7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-coffee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-coffee";
sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d";
name = "flymake-coffee";
};
@@ -21033,7 +21138,7 @@
sha256 = "1dlxn8hhz3gfrhvkwhlxjmby6zc0g8yy9n9j9dn8c4cbi2fhyx5m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-cppcheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-cppcheck";
sha256 = "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d";
name = "flymake-cppcheck";
};
@@ -21054,7 +21159,7 @@
sha256 = "00cnz3snhs44aknq6wmf19hq9bzb5pj0hvfzz93l6n7ngd8vvpzy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-css";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-css";
sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5";
name = "flymake-css";
};
@@ -21072,7 +21177,7 @@
sha256 = "10cpzrd588ya52blghxss5zkn6x8hc7bx1h0qbcdlybbmkjgpkxr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-cursor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-cursor";
sha256 = "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr";
name = "flymake-cursor";
};
@@ -21093,7 +21198,7 @@
sha256 = "1mylcsklnv3q27q1gvf7wrila39rmxab1ypmvjh5p56d91y6pszc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-easy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-easy";
sha256 = "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7";
name = "flymake-easy";
};
@@ -21114,7 +21219,7 @@
sha256 = "04w6g4wixrpfidxbk2bwazhvf0cx3c2v2mxnycqqlqkg0m0sb0fn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-elixir";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-elixir";
sha256 = "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792";
name = "flymake-elixir";
};
@@ -21135,7 +21240,7 @@
sha256 = "14kbqyw4v1c51dx7pfgqbn8x4j8j3rgyyq2fa9klqzxpldcskl24";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-gjshint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-gjshint";
sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44";
name = "flymake-gjshint";
};
@@ -21156,7 +21261,7 @@
sha256 = "03gh0y988pksghmmvb5av2vnlbcsncafvn4nwihsis0bhys8k28q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-go";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-go";
sha256 = "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1";
name = "flymake-go";
};
@@ -21177,7 +21282,7 @@
sha256 = "0zldhlvxmk0xcjmj4ns48pp4h3bvijrzs1md69ya7m3dmsbayfrc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-google-cpplint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-google-cpplint";
sha256 = "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3";
name = "flymake-google-cpplint";
};
@@ -21198,7 +21303,7 @@
sha256 = "08rcsg76qdq2l6z8q339yw770kv1q657ywqvq6a20pxxz2158a8l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-haml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-haml";
sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1";
name = "flymake-haml";
};
@@ -21219,7 +21324,7 @@
sha256 = "0hwcgas83wwhk0szwgw7abf70400knb8dfabknwv0qrcsk4gqffd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-haskell-multi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-haskell-multi";
sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij";
name = "flymake-haskell-multi";
};
@@ -21240,7 +21345,7 @@
sha256 = "003fdrgxlyhs595ndcdzhmdkcpsf9bpw53hrlrrrh07qlnqxwrvp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-hlint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-hlint";
sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x";
name = "flymake-hlint";
};
@@ -21261,7 +21366,7 @@
sha256 = "0ywm9fpb7d7ry2fly8719fa41q97yj9za3phqhv6j1chzaxvcv3a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-jshint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-jshint";
sha256 = "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j";
name = "flymake-jshint";
};
@@ -21282,7 +21387,7 @@
sha256 = "0y01albwwcnhj4pnpvcry0zw7z2g9py9q2p3sw5zhgw3g0v5p9ls";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-jslint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-jslint";
sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm";
name = "flymake-jslint";
};
@@ -21303,7 +21408,7 @@
sha256 = "1qn15pr7c07fmki484z5xpqyn8546qb5dr9gcp5n1172wnh2a534";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-json";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-json";
sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d";
name = "flymake-json";
};
@@ -21324,7 +21429,7 @@
sha256 = "0ggi8a4j4glpsar0sqg8q06rscajjaziis5ann31wphx88rc5wd7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-less";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-less";
sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0";
name = "flymake-less";
};
@@ -21345,7 +21450,7 @@
sha256 = "1fz7kywp1y2nhp50b2v961wz604sw1gzqcid4k8igz9aii3ygxcv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-lua";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-lua";
sha256 = "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6";
name = "flymake-lua";
};
@@ -21366,7 +21471,7 @@
sha256 = "1f4l2r4gp03s18255jawc7s5abpjjrw54937wzygmvzvqvmaiikj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-perlcritic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-perlcritic";
sha256 = "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8";
name = "flymake-perlcritic";
};
@@ -21387,7 +21492,7 @@
sha256 = "09mibjdji5mf3qvngspv1zmik1zd9jwp4mb4c1w4256202359sf4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-php";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-php";
sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk";
name = "flymake-php";
};
@@ -21408,7 +21513,7 @@
sha256 = "140rlp6m0aqibwa0bhv8w6l3giziybqdw7x271nq8f3r60ch13bi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-phpcs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-phpcs";
sha256 = "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9";
name = "flymake-phpcs";
};
@@ -21429,7 +21534,7 @@
sha256 = "1r3yjqxig2j7l50l787qsi96mkvjcgqll9vb4ci51j7b43d53c5m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-puppet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-puppet";
sha256 = "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv";
name = "flymake-puppet";
};
@@ -21450,7 +21555,7 @@
sha256 = "1aijapvpw4skfhfmz09v5kpaxay6b0bp77bbjkrvgyizsqdd39vp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-python-pyflakes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-python-pyflakes";
sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497";
name = "flymake-python-pyflakes";
};
@@ -21471,7 +21576,7 @@
sha256 = "13yk9cncp3zw6d7zkgdpgprpw6wrirk2gxgjvkr15dwcyx1g3109";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-ruby";
sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr";
name = "flymake-ruby";
};
@@ -21492,7 +21597,7 @@
sha256 = "1qxb3vhh83ikhmm89ms7irdip2l03hnjcq5ncmgywkaqkpslaacv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-rust";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-rust";
sha256 = "0fgpkz1d4y2ywizwwrhqdqncdmhdnbgf3mcv3hjpa82x44yb7j32";
name = "flymake-rust";
};
@@ -21513,7 +21618,7 @@
sha256 = "0rwjiplpqw3rrh76llnx2fn78f6avxsg0la5br46q1rgw4n8r1w1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-sass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-sass";
sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d";
name = "flymake-sass";
};
@@ -21534,7 +21639,7 @@
sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-shell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-shell";
sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i";
name = "flymake-shell";
};
@@ -21555,7 +21660,7 @@
sha256 = "1rq47qhp3jdrw1n22cnhvhcxqzbi6v9r94kgf3200vrfp435rvkn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-solidity";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-solidity";
sha256 = "10d1g14y3l670lqgfdsnyxanzcjs2jpgnliih56n1xhcpyz551l3";
name = "flymake-solidity";
};
@@ -21576,7 +21681,7 @@
sha256 = "0qpr0frcn3w0f6yz8vgavwbxvn6wb0qkfk653v4cfy57dvslr4wf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-vala";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-vala";
sha256 = "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx";
name = "flymake-vala";
};
@@ -21597,7 +21702,7 @@
sha256 = "0mdam39a85csi9b90wak9j3zkd25lj6x54affwkg3fym8yphmplm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-yaml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-yaml";
sha256 = "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7";
name = "flymake-yaml";
};
@@ -21618,7 +21723,7 @@
sha256 = "0844g0yajl34x4fn95rqfxlsv5h6jwaql30v4mnlkhz28hsdpgqm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymd";
sha256 = "16wq34xv7hswbxw5w9wnnsw2mhc9qzhmaa6aydhh32blcszhp4rk";
name = "flymd";
};
@@ -21639,7 +21744,7 @@
sha256 = "07hy1kyw4cbxydmhp4scsy3dcbk2s50rmdp8rch1vbcjk5lj4mvb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flyparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flyparens";
sha256 = "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a";
name = "flyparens";
};
@@ -21652,15 +21757,15 @@
flyspell-correct = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flyspell-correct";
- version = "20160509.647";
+ version = "20160519.113";
src = fetchFromGitHub {
owner = "d12frosted";
repo = "flyspell-correct";
- rev = "2cf8dacbe5dac522a4d91909061c4f87acd2868d";
- sha256 = "09bhniv89s85fsk8l3qvw9kj980i085nlcp3pgplsgsr5vkmwsk9";
+ rev = "d2c50edab5f6fc97035efd241a224e5066fd928b";
+ sha256 = "0jixdq11hp2lqbss1rpq6b89qg994dyb2kh7k70ja31ky3pq5hzc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flyspell-correct";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flyspell-correct";
sha256 = "1bm1a9r9g5nsx544a263g26mxrmam7bx2m0a09ggzr6hpwp9sp2n";
name = "flyspell-correct";
};
@@ -21681,7 +21786,7 @@
sha256 = "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flyspell-lazy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flyspell-lazy";
sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y";
name = "flyspell-lazy";
};
@@ -21702,7 +21807,7 @@
sha256 = "1rdpggnw9mz3qr4kp5gh9nvwncivj446vdhpc04d4jgrl568bhqb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flyspell-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flyspell-popup";
sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql";
name = "flyspell-popup";
};
@@ -21723,7 +21828,7 @@
sha256 = "1fk4zsb4jliwz10sqz5bpqgj1p479mc506dmvy4zq3vqnpbypqvs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fm";
sha256 = "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f";
name = "fm";
};
@@ -21744,7 +21849,7 @@
sha256 = "0984fhf1nlpdh9mh3gd2xak3v2rlv76qxppqvr6a4kl1dxwg37r3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fm-bookmarks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fm-bookmarks";
sha256 = "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj";
name = "fm-bookmarks";
};
@@ -21765,7 +21870,7 @@
sha256 = "0vqjyc00ba9wy2rn454hhy9rnnghljc1i8f3zrpkdmkqn5cg3336";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/focus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/focus";
sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8";
name = "focus";
};
@@ -21778,15 +21883,15 @@
focus-autosave-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "focus-autosave-mode";
- version = "20151012.542";
+ version = "20160519.1716";
src = fetchFromGitHub {
owner = "Vifon";
repo = "focus-autosave-mode.el";
- rev = "592e2c0642ee86b2000b728ea346de084447dda8";
- sha256 = "1k5xhnr1jkfw8896kf2nl4633r6ni5bnc53rs6lxn8y9lj0srafb";
+ rev = "e89ed22aa4dfc76e1b844b202aedd468ad58814a";
+ sha256 = "1c1mh96kghp5d22assm9kzxlp0cy7bws9yrqwwgaw3d72cba40k3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/focus-autosave-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/focus-autosave-mode";
sha256 = "10cd1x5b1w7apgxd2kq45lv0jlj7az4zmn2iz4iymf2r2hancrcd";
name = "focus-autosave-mode";
};
@@ -21807,7 +21912,7 @@
sha256 = "1mnak9k0hz99jq2p7gydxajzvx2vcql8yzwcm0v80a6xji2whl70";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/foggy-night-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/foggy-night-theme";
sha256 = "03x3dhkk81d2zh9nflq6wd7v3khpy9046v8qhq4i9dw6davvy9j4";
name = "foggy-night-theme";
};
@@ -21828,7 +21933,7 @@
sha256 = "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fold-dwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fold-dwim";
sha256 = "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x";
name = "fold-dwim";
};
@@ -21849,7 +21954,7 @@
sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fold-dwim-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fold-dwim-org";
sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn";
name = "fold-dwim-org";
};
@@ -21870,7 +21975,7 @@
sha256 = "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fold-this";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fold-this";
sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d";
name = "fold-this";
};
@@ -21891,7 +21996,7 @@
sha256 = "1z2dkyzj1gq3gp9cc3lhi240f8f3yjpjnw520xszm0wvx1rp06ny";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/folding";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/folding";
sha256 = "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y";
name = "folding";
};
@@ -21909,7 +22014,7 @@
sha256 = "04j9xybn9an3bm2p2aqmqnswxxg3gwq2mc96brkgxkr88h316d4q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/font-lock+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/font-lock+";
sha256 = "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g";
name = "font-lock-plus";
};
@@ -21930,7 +22035,7 @@
sha256 = "04n32rgdz7m24jji8p0j42zmf2r60sdbbr4mkr6435fqyvmdd20k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/font-lock-studio";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/font-lock-studio";
sha256 = "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq";
name = "font-lock-studio";
};
@@ -21951,7 +22056,7 @@
sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/font-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/font-utils";
sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5";
name = "font-utils";
};
@@ -21972,7 +22077,7 @@
sha256 = "103xz042h8w6c85hn19cglfsa34syjh18asm41rjhr9krp15sdl1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fontawesome";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fontawesome";
sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3";
name = "fontawesome";
};
@@ -21993,7 +22098,7 @@
sha256 = "1x4l24cbgc4apv9cfzf6phmj5pm32hfdgv37wpbh7ml8v3p8xm0w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/forecast";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/forecast";
sha256 = "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc";
name = "forecast";
};
@@ -22014,7 +22119,7 @@
sha256 = "1459hy5kgp0dkzy1jab41aibixgmrk9lk6ysn1801spd8gwph371";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/foreign-regexp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/foreign-regexp";
sha256 = "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7";
name = "foreign-regexp";
};
@@ -22027,15 +22132,15 @@
foreman-mode = callPackage ({ dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "foreman-mode";
- version = "20150611.456";
+ version = "20160520.1037";
src = fetchFromGitHub {
owner = "zweifisch";
repo = "foreman-mode";
- rev = "9496018b0c202442248d4983ec5345501ea18a84";
- sha256 = "00wqn8h50xr90pyvwk4sv552yiajlzq56wh6f6lad5w90j47q1lx";
+ rev = "bc6e2aca5a66847b13200b85172f7d7a36807d32";
+ sha256 = "0pp68kqg2impar6rhlpifixx0lqgkcrj6ncjn5jlids6vfhq23nd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/foreman-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/foreman-mode";
sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv";
name = "foreman-mode";
};
@@ -22056,7 +22161,7 @@
sha256 = "0nj056x87gcpdqkgx3li5syp6wbj58a1mw2aqa48zflbqwyvs03i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/form-feed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/form-feed";
sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh";
name = "form-feed";
};
@@ -22077,7 +22182,7 @@
sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/format-sql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/format-sql";
sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj";
name = "format-sql";
};
@@ -22098,7 +22203,7 @@
sha256 = "1nqx2igxmwswjcrnzdjpx5qcjr60zjy3q9cadq5disms17wdcr6y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fortpy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fortpy";
sha256 = "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj";
name = "fortpy";
};
@@ -22119,7 +22224,7 @@
sha256 = "1kk04hl2y2svrs07w4pq9f4g7vs9qzy2qpw9prvi1gravmnfrzc4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fortune-cookie";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fortune-cookie";
sha256 = "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78";
name = "fortune-cookie";
};
@@ -22140,7 +22245,7 @@
sha256 = "1zy45s1m1injwr4d1qvpnvfvv4nkkv9mricshxjannsjfbz09ra7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fountain-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fountain-mode";
sha256 = "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840";
name = "fountain-mode";
};
@@ -22159,7 +22264,7 @@
sha256 = "1867zmm3pyqz8p9ig44jf598z9jkyvbp04mfg6j6ys3hyqfkw942";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/frame-cmds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/frame-cmds";
sha256 = "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0";
name = "frame-cmds";
};
@@ -22177,7 +22282,7 @@
sha256 = "0lvlyxb62sgrm37hc21dn7qzlrq2yagiwpspa926q6dpzcsbam15";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/frame-fns";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/frame-fns";
sha256 = "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p";
name = "frame-fns";
};
@@ -22198,7 +22303,7 @@
sha256 = "0n6jhm1198c8slvdymsfjif0dfx3wlf8q4mm0yvpiln46shhwldx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/frame-restore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/frame-restore";
sha256 = "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm";
name = "frame-restore";
};
@@ -22219,7 +22324,7 @@
sha256 = "1vvkdgj8warl40kqmd0408q46dxy9qp2sclq4q92b6falry9qy30";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/frame-tag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/frame-tag";
sha256 = "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q";
name = "frame-tag";
};
@@ -22237,7 +22342,7 @@
sha256 = "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/framemove";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/framemove";
sha256 = "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar";
name = "framemove";
};
@@ -22258,7 +22363,7 @@
sha256 = "11h9xw6jnw7dacyv1jch2a77xp7hfb93690m7hhazy6l87xmm4dk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/framesize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/framesize";
sha256 = "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf";
name = "framesize";
};
@@ -22279,7 +22384,7 @@
sha256 = "12rmwf7gm9ib2c99jangygh2yswy41vxlp90rg0hvlhdfmbqa8p0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/free-keys";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/free-keys";
sha256 = "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj";
name = "free-keys";
};
@@ -22300,7 +22405,7 @@
sha256 = "0zwlnzbi91hkfz1jgj9s9pxwi21s21cwp6psdm687wj2a3wy4231";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fringe-current-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fringe-current-line";
sha256 = "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8";
name = "fringe-current-line";
};
@@ -22321,7 +22426,7 @@
sha256 = "0ra9rc53l1gvkqank8apasl3r7wz2yfjrcvmfk3wpxhh24ppxv9d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fringe-helper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fringe-helper";
sha256 = "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv";
name = "fringe-helper";
};
@@ -22342,7 +22447,7 @@
sha256 = "1d28kdh96izj05mfknhgyd8954kl2abjgjlinmx1bsa9flb9vgpb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fsharp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fsharp-mode";
sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z";
name = "fsharp-mode";
};
@@ -22363,7 +22468,7 @@
sha256 = "0vw6z68b99llcj10jy7vbmirlx62j23rgzxgdngl7kj6rfg9llpy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fstar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fstar-mode";
sha256 = "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy";
name = "fstar-mode";
};
@@ -22379,11 +22484,11 @@
version = "20160328.829";
src = fetchgit {
url = "git://factorcode.org/git/factor.git";
- rev = "839a5a22ec1be998a3720937cb2446e8f26bd3e3";
- sha256 = "102m5lcr9i1pwq0nz32yz1v9068v9vn33gc3aax6ypy5m7a3jif4";
+ rev = "d5e5589da8864bdf1a3ca95338dab7966b6b0ceb";
+ sha256 = "1y6alsmwwv9v1gxqsgddzzk0gcdysjw1xaj4764hrb7wxs7z0qf6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fuel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fuel";
sha256 = "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756";
name = "fuel";
};
@@ -22404,7 +22509,7 @@
sha256 = "0bjny4ryrs788myhiaf3ir99vadf2v4swa5gkz9i36a7j6wzpgk5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/full-ack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/full-ack";
sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309";
name = "full-ack";
};
@@ -22425,7 +22530,7 @@
sha256 = "0nhw708b5jjymbw3b7np11jlkzdrzq7qnnxdyl8nndsn1c3qcr0l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fullframe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fullframe";
sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a";
name = "fullframe";
};
@@ -22446,7 +22551,7 @@
sha256 = "067fmk46wk6jpc01wylagw948sgs3ndrq18mp3x81pdv3dykzmr6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/function-args";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/function-args";
sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak";
name = "function-args";
};
@@ -22467,7 +22572,7 @@
sha256 = "0wrmbvx0risdjkaxqmh4li6iwvg4635cdpjvw32k2wkdsyn2dlsb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/furl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/furl";
sha256 = "1z3yqx95qmvpi6vkkgcwvkmw96s24h8ssd5gc06988picw6vj76f";
name = "furl";
};
@@ -22488,7 +22593,7 @@
sha256 = "0rzp8c2164w775ggm2fs4j5dz33vqcah84ysp81majirwfql1niv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fuzzy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fuzzy";
sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h";
name = "fuzzy";
};
@@ -22506,7 +22611,7 @@
sha256 = "1iv0x1cb12kknnxyq2gca7m3c3rg9s4cxz397sazkh1csrn0b2i7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fuzzy-format";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fuzzy-format";
sha256 = "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb";
name = "fuzzy-format";
};
@@ -22524,7 +22629,7 @@
sha256 = "1q3gbv9xp2jxrf9vfarjqk9k805xc9z72zbaw7aqdxrj1bafxwnz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fuzzy-match";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fuzzy-match";
sha256 = "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds";
name = "fuzzy-match";
};
@@ -22545,7 +22650,7 @@
sha256 = "03zmk4v259pqx7gkwqq95lccn78rwmh7iq5j0d5jj4jf9h39rr20";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fvwm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fvwm-mode";
sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb";
name = "fvwm-mode";
};
@@ -22566,7 +22671,7 @@
sha256 = "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fwb-cmds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fwb-cmds";
sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx";
name = "fwb-cmds";
};
@@ -22587,7 +22692,7 @@
sha256 = "1m8zgwcfl0i3yizx01ikxjhhqm1nj74q35fs3d32z9fkk5h21m2d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fxrd-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fxrd-mode";
sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r";
name = "fxrd-mode";
};
@@ -22608,7 +22713,7 @@
sha256 = "08x5li0mshrlamr7vswy7xh358bqhh3pngjr4ckswfi0l2r5fjbd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fyure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fyure";
sha256 = "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x";
name = "fyure";
};
@@ -22629,7 +22734,7 @@
sha256 = "0rjn4z7ssl1jy0brvsci44mhpig3zkdbcj8gcylzznhz0qfk1ljj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fzf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fzf";
sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0";
name = "fzf";
};
@@ -22650,7 +22755,7 @@
sha256 = "16x3fz2ljrmqhjy7w96fhp3j9ja2gib042c363yfrzwa7q5rxzd2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gams-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gams-mode";
sha256 = "0hx9mv4sqskz4nn7aks64hqd4vn3m7b34abzhy9bnmyw6d5zzfci";
name = "gams-mode";
};
@@ -22671,7 +22776,7 @@
sha256 = "0sn3y1ilbg532mg941qmzipvzq86q31x86ypaf0h0m4015r7l59v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gandalf-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gandalf-theme";
sha256 = "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p";
name = "gandalf-theme";
};
@@ -22690,7 +22795,7 @@
sha256 = "1jsw2mywc0y8sf7yl7y3i3l8vs3jv1srjf34lgb5xfz6p8wc5lc0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gap-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gap-mode";
sha256 = "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2";
name = "gap-mode";
};
@@ -22711,7 +22816,7 @@
sha256 = "0j0dg7nl9kmanayvw0712x5c5x9h48qmqdsyi0pijvgmv8l5slg5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gather";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gather";
sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk";
name = "gather";
};
@@ -22732,7 +22837,7 @@
sha256 = "04s25rgyk8qqalynkgdafzg9c1c3jq6g9c4dq1nm579bmzkp3hhc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/geben";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/geben";
sha256 = "1ai1qcx76m8xh80c8zixq9cqbhnqmj3jk3r7lj3ngbiwx4pnlnwf";
name = "geben";
};
@@ -22753,7 +22858,7 @@
sha256 = "1w2h059bfdxa18sk8xrk2cdssj1s1qdp7mb38plgvndgs6fccwn3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/geben-helm-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/geben-helm-projectile";
sha256 = "11zhapys6wx2cadflvjimsmilwvjpfd4ihwzzmap8shxpyllsq9r";
name = "geben-helm-projectile";
};
@@ -22774,7 +22879,7 @@
sha256 = "14v5gm931dcsfflhsvijr4ihx7cs6jymvnjzph3arvhvqwyqhwgq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/geeknote";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/geeknote";
sha256 = "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v";
name = "geeknote";
};
@@ -22795,7 +22900,7 @@
sha256 = "00rmpn8zncq1fiah5m12l26z0s28bh7ql63kxdvksqdgfrisnmgf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/geiser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/geiser";
sha256 = "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596";
name = "geiser";
};
@@ -22808,15 +22913,15 @@
general = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "general";
- version = "20160516.1221";
+ version = "20160521.2153";
src = fetchFromGitHub {
owner = "noctuid";
repo = "general.el";
- rev = "e9152eed0c5ef5c4da2111edbfaef778f56391aa";
- sha256 = "0535r18jzgiq2p94l8qyh4yvcfbigp0alb116swshm88wl1p8h21";
+ rev = "2423ce5b44cffc04f00ab316a6c70b2562e05688";
+ sha256 = "0cng2pxp1crvq94pdzj97hwbipnjz00gvsmidfwbh0liggs8nr0q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/general";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/general";
sha256 = "104ywsfylfymly64p1i3hsy9pnpz3dkpmcq1ygafnld8zjd08gpc";
name = "general";
};
@@ -22837,7 +22942,7 @@
sha256 = "024xshsl1wvjgnik3dc29g29a503rx46j8v9d6hfd597nf0qmz6p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/general-close";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/general-close";
sha256 = "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964";
name = "general-close";
};
@@ -22858,7 +22963,7 @@
sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/genrnc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/genrnc";
sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm";
name = "genrnc";
};
@@ -22879,7 +22984,7 @@
sha256 = "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/german-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/german-holidays";
sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn";
name = "german-holidays";
};
@@ -22900,7 +23005,7 @@
sha256 = "1ch8yp0mgk57x0pny9bvkknsqj27fd1rcmpm9s7qpryrwqkp1ix4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gerrit-download";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gerrit-download";
sha256 = "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp";
name = "gerrit-download";
};
@@ -22921,7 +23026,7 @@
sha256 = "0bwjiq4a4f5pg0ngvc3lmkk7aki8n9zqfa1dym0lk4vy6yfhcbhp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ggo-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ggo-mode";
sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p";
name = "ggo-mode";
};
@@ -22942,7 +23047,7 @@
sha256 = "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ggtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ggtags";
sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw";
name = "ggtags";
};
@@ -22963,7 +23068,7 @@
sha256 = "10iy5sfyqnz3mrl951j9skxp1s8zm6cqmsadgbxnl9fj3br3ygd1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gh";
sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0";
name = "gh";
};
@@ -22984,7 +23089,7 @@
sha256 = "0g3bjpnwgqczw6ddh4mv7pby0zyqzqgywjrjz2ib6hwmdqzyp1s0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gh-md";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gh-md";
sha256 = "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm";
name = "gh-md";
};
@@ -23005,7 +23110,7 @@
sha256 = "0zm8x7bclh5sdfgkj6jv6id2mjfvb8bb4iy1kmk83am076bj5ysh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ghc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ghc";
sha256 = "02nc7a9khqpd4ca2snam8dq72m53q8x7v5awx56bjq31z6vcmav5";
name = "ghc";
};
@@ -23026,7 +23131,7 @@
sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ghc-imported-from";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ghc-imported-from";
sha256 = "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5";
name = "ghc-imported-from";
};
@@ -23047,7 +23152,7 @@
sha256 = "17fl3k2sqiavbv3bp6rnp3p89j6pnpkkp7wi26pzzk4675r5k45q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ghci-completion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ghci-completion";
sha256 = "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll";
name = "ghci-completion";
};
@@ -23068,7 +23173,7 @@
sha256 = "0lcbyw6yrl6c8py5v2hqghcbsf9cbiplzil90al4lwqps7rw09a8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gherkin-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gherkin-mode";
sha256 = "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv";
name = "gherkin-mode";
};
@@ -23089,7 +23194,7 @@
sha256 = "1aj5j0y244r1fbbbl0lzb53wnyhljw91kb4n3hi2gagm7zwp8jcf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ghq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ghq";
sha256 = "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh";
name = "ghq";
};
@@ -23110,7 +23215,7 @@
sha256 = "1na8pp1g940zi22jgqi6drsm12db0hyw99v493i5j1p2y67c4hxw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gildas-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gildas-mode";
sha256 = "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv";
name = "gildas-mode";
};
@@ -23131,7 +23236,7 @@
sha256 = "18433gjhra0gqrwnxssd3njpxbvqhh64bds9rym1vq9l7w09z024";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gist";
sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3";
name = "gist";
};
@@ -23152,7 +23257,7 @@
sha256 = "0471xm0h6jkmxnrcqy5agq42i8immdb2qpnw7q7czrbsl521al8d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git";
sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5";
name = "git";
};
@@ -23173,7 +23278,7 @@
sha256 = "0d2blcnyqd1br7zhwprdxpx2jphjhsb4jgaw9dr4gvv0xdb2sr87";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-annex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-annex";
sha256 = "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l";
name = "git-annex";
};
@@ -23194,7 +23299,7 @@
sha256 = "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-auto-commit-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-auto-commit-mode";
sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl";
name = "git-auto-commit-mode";
};
@@ -23215,7 +23320,7 @@
sha256 = "0g839pzmipjlv32r0gh166jn3na5d0wh2w1sia2k4yx1w0ch1bsx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-blame";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-blame";
sha256 = "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06";
name = "git-blame";
};
@@ -23236,7 +23341,7 @@
sha256 = "1irqmypgc4l1jlzj4g65ihpic3ffnnkcg1hlysj7qpip5nbflqgl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-command";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-command";
sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg";
name = "git-command";
};
@@ -23249,15 +23354,15 @@
git-commit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, with-editor }:
melpaBuild {
pname = "git-commit";
- version = "20160425.730";
+ version = "20160519.1250";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "cf9a99189e8a24290af9877c571d001696644d23";
- sha256 = "0mgpj1c43vllmlv2amjhssicv85vwrv4k31hljhzd7nlq8bjkyp9";
+ rev = "826f72e72784315d3eceb96144bdfc9e225af6bf";
+ sha256 = "1q12hya4zj9f3k8r992fv1c8yx542w452z9cm808n0fagsz6y2il";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-commit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-commit";
sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2";
name = "git-commit";
};
@@ -23278,7 +23383,7 @@
sha256 = "1vdyrqg2w5q4xmazqqh2ymjnrp9p1x5172nllwryz43jvvxaw05s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-commit-insert-issue";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-commit-insert-issue";
sha256 = "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3";
name = "git-commit-insert-issue";
};
@@ -23299,7 +23404,7 @@
sha256 = "12k0bh0mrwlkrsfhc0pm9b1xvdks20smarsmvzg4zi5060ds1pzg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-dwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-dwim";
sha256 = "0xcigah06ak5wdma4ddcix58q2v5hszncb65f272m4lc2racgsfl";
name = "git-dwim";
};
@@ -23312,15 +23417,15 @@
git-gutter = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-gutter";
- version = "20160409.1013";
+ version = "20160520.1955";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-git-gutter";
- rev = "331643894d5be532b12e480d936014e2a9694f7d";
- sha256 = "1493302p60gxi15v9zcz0s3pac4w1x2zmxas1lvj9micv379khhh";
+ rev = "c40683e9c5931dd67f89ad9ef8625de28752f00c";
+ sha256 = "1gr57n6chhbzazqxb0vwsddais14zpg9c5qpfn6igw0qzhkxn8x0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-gutter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter";
sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg";
name = "git-gutter";
};
@@ -23333,15 +23438,15 @@
git-gutter-fringe = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, fringe-helper, git-gutter, lib, melpaBuild }:
melpaBuild {
pname = "git-gutter-fringe";
- version = "20150401.39";
+ version = "20160520.1956";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-git-gutter-fringe";
- rev = "62accbd227b17073d623faa4cc472280fc45f53e";
- sha256 = "0vc1da72vwlys723xi7xvv4ii43sjxgsywb2ss0l0kcm0rays6lv";
+ rev = "dfc93d1064df154a809aab350942830408051da3";
+ sha256 = "18jpa5i99x0gqizs2qbqr8c1jlza8x9vpb6wg9zqd4np1p6q4lan";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-gutter-fringe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter-fringe";
sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z";
name = "git-gutter-fringe";
};
@@ -23362,7 +23467,7 @@
sha256 = "1rsj193zpblndki4khjjlwl2njxb329d42l75ki55msxifqrn4fi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-gutter-fringe+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter-fringe+";
sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc";
name = "git-gutter-fringe-plus";
};
@@ -23383,7 +23488,7 @@
sha256 = "0bhrrgdzzj8gwxjx7b2kibp1b6s0vgvykfg0n47iq49m6rqkgi5q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-gutter+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter+";
sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0";
name = "git-gutter-plus";
};
@@ -23404,7 +23509,7 @@
sha256 = "02p73q0kl9z44b9a2bhqg03mkqx6gf61n88qlwwg4420dxrf7sbc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-lens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-lens";
sha256 = "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb";
name = "git-lens";
};
@@ -23425,7 +23530,7 @@
sha256 = "0a1kxdz05ly9wbzyxcb79xlmy11q38xplf5s8w8klmyajdn43g1j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-link";
sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7";
name = "git-link";
};
@@ -23446,7 +23551,7 @@
sha256 = "082g2gqbf8yjgvj2c32ix6j3wwba5fmgcyi75bf0q0bbg4ck5rab";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-messenger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-messenger";
sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn";
name = "git-messenger";
};
@@ -23467,7 +23572,7 @@
sha256 = "1v0jk35ynfg9hivw9gdz2snk73pac67xlfx7av8argdcss1bmyb0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-ps1-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-ps1-mode";
sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6";
name = "git-ps1-mode";
};
@@ -23488,7 +23593,7 @@
sha256 = "1iz5cy3fc7y56s4005syxnb1y3sn1q0s0nlpa01bnxksrfy5zahl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-timemachine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-timemachine";
sha256 = "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq";
name = "git-timemachine";
};
@@ -23509,7 +23614,7 @@
sha256 = "1ivnf4vsqk6c7iw1cid7q1hxp7047ajd1mpg0fl002d7m7ginhyl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-wip-timemachine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-wip-timemachine";
sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw";
name = "git-wip-timemachine";
};
@@ -23530,7 +23635,7 @@
sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gitattributes-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitattributes-mode";
sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x";
name = "gitattributes-mode";
};
@@ -23551,7 +23656,7 @@
sha256 = "184q3vsxa9rvhc1n57ms47r73f3zap25wswzi66rm6rmfi2k7678";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gitconfig";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitconfig";
sha256 = "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7";
name = "gitconfig";
};
@@ -23572,7 +23677,7 @@
sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gitconfig-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitconfig-mode";
sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1";
name = "gitconfig-mode";
};
@@ -23593,7 +23698,7 @@
sha256 = "0i3dkm0j4gh21b7r5vxr6dddql5rj7lg8xlaairvild0ccf3bhdl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/github-browse-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/github-browse-file";
sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr";
name = "github-browse-file";
};
@@ -23614,7 +23719,7 @@
sha256 = "000m6w2akx1z1lb32nvy6qzyggpcvlbdjh1i8419rzaidxf5gaxg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/github-clone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/github-clone";
sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9";
name = "github-clone";
};
@@ -23635,7 +23740,7 @@
sha256 = "065gpnllsk4x574fn9d6m4ajxl7mj5w2w5g9in421sp5r80fp9fv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/github-issues";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/github-issues";
sha256 = "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0";
name = "github-issues";
};
@@ -23656,7 +23761,7 @@
sha256 = "0n5mrd2la44r66bkqs0r3298qn5yybs80nwsy54pzlaz88v899bl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/github-notifier";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/github-notifier";
sha256 = "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw";
name = "github-notifier";
};
@@ -23677,7 +23782,7 @@
sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gitignore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitignore-mode";
sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn";
name = "gitignore-mode";
};
@@ -23690,15 +23795,15 @@
gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }:
melpaBuild {
pname = "gitlab";
- version = "20151202.338";
+ version = "20160519.603";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "emacs-gitlab";
- rev = "1615468bbbe2bf07914dd525067ac39db2bc19c0";
- sha256 = "00mma30r7ixbrxjmmddz4klh517fcr3yn6ss4zw33fh2hzj3w6rl";
+ rev = "a1c1441ff5ffb290e695eb9ac05431e9385578f4";
+ sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gitlab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitlab";
sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq";
name = "gitlab";
};
@@ -23719,7 +23824,7 @@
sha256 = "1h66wywhl5ipryx0s0w1vxp3ydg57zpizjz61wvf6qd8zn07nhng";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gitolite-clone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitolite-clone";
sha256 = "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac";
name = "gitolite-clone";
};
@@ -23740,7 +23845,7 @@
sha256 = "0y8msn22lzfwh7d417abay9by2zhs9zswhcj8a0l7ln2ksljl500";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gitty";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitty";
sha256 = "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16";
name = "gitty";
};
@@ -23761,7 +23866,7 @@
sha256 = "14ziljq34k585scwn606hqbkcvy8h1iylsc4h2n1grfmm8ilf0ws";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/glsl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/glsl-mode";
sha256 = "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5";
name = "glsl-mode";
};
@@ -23782,7 +23887,7 @@
sha256 = "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gmail-message-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gmail-message-mode";
sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk";
name = "gmail-message-mode";
};
@@ -23803,7 +23908,7 @@
sha256 = "01hhanijqlh741f9wh6xn88qvghwqnfj5j0rvys5mghssfspqs3z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gmail2bbdb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gmail2bbdb";
sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j";
name = "gmail2bbdb";
};
@@ -23824,7 +23929,7 @@
sha256 = "08d6j5wws2ngngf3p31ic0lrsrp9i9lkpr3nxgmiiadm617x8hv4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gmpl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gmpl-mode";
sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz";
name = "gmpl-mode";
};
@@ -23845,7 +23950,7 @@
sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnome-calendar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnome-calendar";
sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6";
name = "gnome-calendar";
};
@@ -23866,7 +23971,7 @@
sha256 = "1svnvm9fqqx4mrk9jjn11pzqwk71w8kyyd9wwxam8gz22ykw5jb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnomenm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnomenm";
sha256 = "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm";
name = "gnomenm";
};
@@ -23887,7 +23992,7 @@
sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gntp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gntp";
sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f";
name = "gntp";
};
@@ -23908,7 +24013,7 @@
sha256 = "15v14ff1639i3i1rgjh72qgq7r70bdy9li28r3rsrjbaiizyrbs8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnu-apl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnu-apl-mode";
sha256 = "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6";
name = "gnu-apl-mode";
};
@@ -23929,7 +24034,7 @@
sha256 = "1gm116479gdwc4hr3nyv1id692dcd1sx7w2a80pvmgr35ybccn7c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnuplot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnuplot";
sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds";
name = "gnuplot";
};
@@ -23950,7 +24055,7 @@
sha256 = "1pss9a60dh6i277pkp8j5g1v5h7qlh11w2fki50qcp0zglyw1kaq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnuplot-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnuplot-mode";
sha256 = "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg";
name = "gnuplot-mode";
};
@@ -23971,7 +24076,7 @@
sha256 = "1i278npayv3kfxxd1ypi9n83q5l402sbc1zkm11pf8g006ifqsp4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnus-alias";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-alias";
sha256 = "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf";
name = "gnus-alias";
};
@@ -23992,7 +24097,7 @@
sha256 = "1zizmxjf55bkm9agmrym80h2mnyvpc9bamkjy2azs42fqgi9pqjn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnus-desktop-notify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-desktop-notify";
sha256 = "08k32vhdp6i8c03rp1k6b5jmvj5ijplj26mdblrgasklcqbdnlfs";
name = "gnus-desktop-notify";
};
@@ -24010,7 +24115,7 @@
sha256 = "1r6bck1hsvk39ccri1h128jj8zd0fh9bsrlp8ijb0v9f6x3cysw4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnus-spotlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-spotlight";
sha256 = "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx";
name = "gnus-spotlight";
};
@@ -24031,7 +24136,7 @@
sha256 = "0csr5nd8lgn9yzqw1vxrvww8af6nf419ab9zh3y2rc0rr47plz94";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnus-summary-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-summary-ext";
sha256 = "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf";
name = "gnus-summary-ext";
};
@@ -24052,7 +24157,7 @@
sha256 = "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnus-x-gm-raw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-x-gm-raw";
sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg";
name = "gnus-x-gm-raw";
};
@@ -24065,7 +24170,7 @@
go = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "go";
- version = "20150414.2018";
+ version = "20160430.2039";
src = fetchFromGitHub {
owner = "eschulte";
repo = "el-go";
@@ -24073,8 +24178,8 @@
sha256 = "1i6x7larpqm5h4369pz07353lk0v6gyb5grk52xslmg8w14si52n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go";
- sha256 = "0iv0sgrgg54qsrhlznq12in5j0v8cv2fydz97mrnysqvh0h4w702";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go";
+ sha256 = "1mk1j504xwi3xswc0lfr3czs9j6wcsbrw2halr46mraiy8lnbz6h";
name = "go";
};
packageRequires = [ emacs ];
@@ -24090,11 +24195,11 @@
src = fetchFromGitHub {
owner = "nsf";
repo = "gocode";
- rev = "d527ffeea56e6e9001b36b78efa577beb659b8a1";
- sha256 = "0l99pdbbqkib7vmxb4sr20zpy1bxzpbgp9i9dcygviqazswb6c63";
+ rev = "15ca134d752c32e5eb27e2597cd2ee48f3a87639";
+ sha256 = "120bdalz29b5lvl0iqg00da194ihrwwbbib8gjga8w5gnnscm6nx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-autocomplete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-autocomplete";
sha256 = "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a";
name = "go-autocomplete";
};
@@ -24115,7 +24220,7 @@
sha256 = "0phy24cra8cza89xrqsx9xrwg98v9qwqx0fzgm1gwlf333zb3hha";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-complete";
sha256 = "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4";
name = "go-complete";
};
@@ -24136,7 +24241,7 @@
sha256 = "09rxz40bkr0l75v3lmf8lcwqsgjiv5c8zjmwzy2d4syj4qv69c5y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-direx";
sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7";
name = "go-direx";
};
@@ -24149,15 +24254,15 @@
go-dlv = callPackage ({ fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "go-dlv";
- version = "20151030.359";
+ version = "20160517.1646";
src = fetchFromGitHub {
owner = "benma";
repo = "go-dlv.el";
- rev = "8d5a0076b3d43e7af61149370e583c0d15cb2dd1";
- sha256 = "0wha1h5mnnh3nsiaf5q1drrvk1gj2cn18bapi8ysy5jdpzi4xqsv";
+ rev = "45a9e8a047c9995eb7c802268d96b3e527569f41";
+ sha256 = "0pph99fl3bwws9vr1r8fs411frd04rfdhl87fy2a75cqcpxlhsj4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-dlv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-dlv";
sha256 = "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i";
name = "go-dlv";
};
@@ -24178,7 +24283,7 @@
sha256 = "1n5fnlfq9cy9rbn2hizqqsy0iryw5g2blaa7nd75ya03gxm10p8j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-eldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-eldoc";
sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk";
name = "go-eldoc";
};
@@ -24199,7 +24304,7 @@
sha256 = "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-errcheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-errcheck";
sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs";
name = "go-errcheck";
};
@@ -24220,7 +24325,7 @@
sha256 = "1hfyxf07m73jf8zca8dna3w828ypvx8a3p70f8nfr5mijy4q3i4c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-gopath";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-gopath";
sha256 = "0jfy2r3axqpn2cnibp8f9vw36kmx0icixhj6zy43d9xa4znvdqal";
name = "go-gopath";
};
@@ -24236,11 +24341,11 @@
version = "20160428.1021";
src = fetchgit {
url = "https://go.googlesource.com/tools";
- rev = "c86fe5956d4575f29850535871a97abbd403a145";
- sha256 = "001n37dp9x3na5h09iz7cjmqlm5028d2laa5k4xh4frq335fh13k";
+ rev = "9ae4729fba20b3533d829a9c6ba8195b068f2abc";
+ sha256 = "1sg01rgccb8f7793m987y8avz8gixqag5hgxs184m61hr5brrak4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-guru";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-guru";
sha256 = "0c62rvsfqcx2g02iwaga2zp1266w0zhkc73ihpi0iq7cd6nr4wn0";
name = "go-guru";
};
@@ -24250,22 +24355,22 @@
license = lib.licenses.free;
};
}) {};
- go-impl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ go-impl = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "go-impl";
- version = "20160320.1816";
+ version = "20160519.1123";
src = fetchFromGitHub {
- owner = "dominikh";
- repo = "go-impl.el";
- rev = "d4b7f4575360d560609e735bfaa65b691fa9df40";
- sha256 = "199aa2crddx2a5lvl0wrzylzdc23rcm3wcbbwas17ary3gl4z8jg";
+ owner = "syohex";
+ repo = "emacs-go-impl";
+ rev = "b6e963bad01c1350eec20e4d399d2c7ccbf6d59d";
+ sha256 = "00sgmwvkick6grcqlpyi4a1p3g1w91a77ig7dwhsydgbvws1yfr9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-impl";
- sha256 = "0yhcl6y26s4wxaa3jj8d13i4zr879kp1lwnhlnqskpq8l8n3nmpz";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-impl";
+ sha256 = "09frwpwc080rfpwkb63yv47dyj741lrpyrp65sq2bn4sf03xw0cx";
name = "go-impl";
};
- packageRequires = [];
+ packageRequires = [ emacs go-mode ];
meta = {
homepage = "https://melpa.org/#/go-impl";
license = lib.licenses.free;
@@ -24282,7 +24387,7 @@
sha256 = "0g0vjm125wmw5nd38r3d7gc2h4pg3a9yskcbk1mzg9vf6gbhr0hx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-mode";
sha256 = "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx";
name = "go-mode";
};
@@ -24303,7 +24408,7 @@
sha256 = "16qpxi9d240rdqnqcnbnsqlh2gcy6c9hxwdpdy874akzw7942nc0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-playground";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-playground";
sha256 = "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6";
name = "go-playground";
};
@@ -24324,7 +24429,7 @@
sha256 = "1fcm65r1sy2fmcp2i7mwc7mxqiaf4aaxda4i2qrm8s25cxsffir7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-playground-cli";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-playground-cli";
sha256 = "00h89rh8d7lq1di77nv609xbzxmjmffq6mz3cmagylxncflg81jc";
name = "go-playground-cli";
};
@@ -24345,7 +24450,7 @@
sha256 = "0010dgkk521pn4cwir5lvkxxzfzzw2nyz1cr5zx1h1ahxvhrzsqm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-projectile";
sha256 = "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml";
name = "go-projectile";
};
@@ -24361,11 +24466,11 @@
version = "20160307.1044";
src = fetchgit {
url = "https://go.googlesource.com/tools";
- rev = "c86fe5956d4575f29850535871a97abbd403a145";
- sha256 = "001n37dp9x3na5h09iz7cjmqlm5028d2laa5k4xh4frq335fh13k";
+ rev = "9ae4729fba20b3533d829a9c6ba8195b068f2abc";
+ sha256 = "1sg01rgccb8f7793m987y8avz8gixqag5hgxs184m61hr5brrak4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-rename";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-rename";
sha256 = "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah";
name = "go-rename";
};
@@ -24386,7 +24491,7 @@
sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-scratch";
sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5";
name = "go-scratch";
};
@@ -24407,7 +24512,7 @@
sha256 = "0di6xwpl6pi0430q208gliz8dgrzwqnmp997q7xcczbkk8zfwn0n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-snippets";
sha256 = "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn";
name = "go-snippets";
};
@@ -24428,7 +24533,7 @@
sha256 = "0n5nsyfwx2pdlwx6bl35wrfyady5dwraimv92f58mhc344ajd70y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-stacktracer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-stacktracer";
sha256 = "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy";
name = "go-stacktracer";
};
@@ -24449,7 +24554,7 @@
sha256 = "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/god-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/god-mode";
sha256 = "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa";
name = "god-mode";
};
@@ -24470,7 +24575,7 @@
sha256 = "1k4i9z9h4m0h0y92mncr96jir63q5h1bix5bpnlfxhxl5w8pvk1q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gold-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gold-mode";
sha256 = "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf";
name = "gold-mode";
};
@@ -24491,7 +24596,7 @@
sha256 = "0wdw89n7ngxpcdigv8c01h4i84hsdh0y7xq6jdj1i6mnajl8gk92";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/golden-ratio";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/golden-ratio";
sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81";
name = "golden-ratio";
};
@@ -24512,7 +24617,7 @@
sha256 = "18a7dv8yshspyq4bi30j0l4ap9qp696syfc29mgvly4xyqh9x4qm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/golden-ratio-scroll-screen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/golden-ratio-scroll-screen";
sha256 = "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5";
name = "golden-ratio-scroll-screen";
};
@@ -24533,7 +24638,7 @@
sha256 = "024dllcmpg8lx78cqgq551i6f9w6qlykfcx8l7yazak9kjwhpwjg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/golint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/golint";
sha256 = "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb";
name = "golint";
};
@@ -24554,7 +24659,7 @@
sha256 = "1anjzlg53kjdqfjcdahbxy8zk9hdha075c1f9nzrnnbbqvmirbbb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gom-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gom-mode";
sha256 = "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m";
name = "gom-mode";
};
@@ -24575,7 +24680,7 @@
sha256 = "06p1dpnmg7lhdff1g7c04qq8f9srgkmnm42jlqy85k87j3p5ys2i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/google";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google";
sha256 = "11a521cq5bj7afl7bqiilg0c81dy00lnhak7h3d9c9kwg7kfljiq";
name = "google";
};
@@ -24592,11 +24697,11 @@
src = fetchFromGitHub {
owner = "google";
repo = "styleguide";
- rev = "66718b1d33649d460ebb9d2fbd9238cc1d4309a7";
- sha256 = "19byl1vpqb7827nkkh7my3xklwr7ajfq69da1bh0yl0jgva9xg7h";
+ rev = "70d6b7d4b85f98ba58ae217a5a6f3bec6ecad188";
+ sha256 = "1ardfwbdxxs2v1rip4vm4hjs2cjxrz8zxch98vv83pbir7561lhk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/google-c-style";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-c-style";
sha256 = "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r";
name = "google-c-style";
};
@@ -24617,7 +24722,7 @@
sha256 = "1h7nj570drp2l9x6475gwzcjrp75ms8dkixa7qsgszjdk58qyhnb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/google-contacts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-contacts";
sha256 = "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn";
name = "google-contacts";
};
@@ -24638,7 +24743,7 @@
sha256 = "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/google-maps";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-maps";
sha256 = "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx";
name = "google-maps";
};
@@ -24659,7 +24764,7 @@
sha256 = "14dz9wjp8ym86a03pw5y1sd51zw83d6485hpq8mh8zm0j1fba0y0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/google-this";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-this";
sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c";
name = "google-this";
};
@@ -24680,7 +24785,7 @@
sha256 = "1098cmcd8ihvk67l5y5h6w4yfii5cg79yakjjyjh24zwpj5l0gaf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/google-translate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-translate";
sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47";
name = "google-translate";
};
@@ -24701,7 +24806,7 @@
sha256 = "1ms5f6imzw5klxi1mqqjxgb02iflvpam8cfxii3ljcr4fz093m4h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/goose-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goose-theme";
sha256 = "18kfz61mhf8pvp3z5cdvjklla9p840p1dazylrgjb1g5hdwqw0n9";
name = "goose-theme";
};
@@ -24722,7 +24827,7 @@
sha256 = "0l022aqpnb38q6kgdqpbxrc1r7fljwl7xq14yi5jb7qgzw2v43cz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gore-mode";
sha256 = "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3";
name = "gore-mode";
};
@@ -24743,7 +24848,7 @@
sha256 = "1abb78xxsggawl43hspl0cr0f7i1b3jd9r6xl1nl5jg97i4byg0b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gorepl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gorepl-mode";
sha256 = "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl";
name = "gorepl-mode";
};
@@ -24764,7 +24869,7 @@
sha256 = "1idhnsl8vkq3v3nbvhkmxmvgqp97aycxvmkj7894mj9hvhib68l9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gotest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gotest";
sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9";
name = "gotest";
};
@@ -24777,15 +24882,15 @@
gotham-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gotham-theme";
- version = "20160502.1524";
+ version = "20160517.855";
src = fetchFromGitHub {
owner = "wasamasa";
repo = "gotham-theme";
- rev = "f380c2653c8d8276c7271b0f84b34ef9d697f7c7";
- sha256 = "0b14nnq9rid0d4hash65z0yy03bgrlva1ak12wijw4k97ibh9d2b";
+ rev = "f04f2d500bcaa328f260b460b6a349f9a599e86b";
+ sha256 = "1ch1acw23y37igy48wlb97q1l2dyjl1a0vazwwakwlmlcfg15l6d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gotham-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gotham-theme";
sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl";
name = "gotham-theme";
};
@@ -24803,7 +24908,7 @@
sha256 = "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/goto-chg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goto-chg";
sha256 = "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv";
name = "goto-chg";
};
@@ -24824,7 +24929,7 @@
sha256 = "0j2hdxqfsifm0d8ilwcw7np6mvn4xm58xglzh42gigj2fxv87g99";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/goto-gem";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goto-gem";
sha256 = "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a";
name = "goto-gem";
};
@@ -24845,7 +24950,7 @@
sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/goto-last-change";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goto-last-change";
sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx";
name = "goto-last-change";
};
@@ -24866,7 +24971,7 @@
sha256 = "0d8vsm6481746j3r446q5wgppnv2kvq522sd9896xvy32avxsrw3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/govc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/govc";
sha256 = "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v";
name = "govc";
};
@@ -24887,7 +24992,7 @@
sha256 = "1fzf43my7qs4n37yh1jm6fyp76dfgknc5g4zin7x5b5lc63g0wxb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/govet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/govet";
sha256 = "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy";
name = "govet";
};
@@ -24908,7 +25013,7 @@
sha256 = "1l43h008l7n6waclb2km32dy8aj7m5yavm1pkq38p9ppzayfxqq1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gplusify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gplusify";
sha256 = "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr";
name = "gplusify";
};
@@ -24929,7 +25034,7 @@
sha256 = "0xs2278gamzg0710bm1fkhjh1p75m2l1jcl98ldhyjhvaf9d0ysc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gradle-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gradle-mode";
sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g";
name = "gradle-mode";
};
@@ -24950,7 +25055,7 @@
sha256 = "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grails";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grails";
sha256 = "177y6xv35d2dhc3pdx5qhpywlmlqgfnjpzfm9yxc8l6q2rgs8irw";
name = "grails";
};
@@ -24971,7 +25076,7 @@
sha256 = "1dwj53z4422ks30cqr5rj6x91qf63sjzbmb06sz4ac5pdr1d66q6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grails-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grails-mode";
sha256 = "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4";
name = "grails-mode";
};
@@ -24992,7 +25097,7 @@
sha256 = "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grails-projectile-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grails-projectile-mode";
sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn";
name = "grails-projectile-mode";
};
@@ -25013,7 +25118,7 @@
sha256 = "0803j6r447br0nszzcy6pc65l53j871icyr91dd7x10xi7ygw0lj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grandshell-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grandshell-theme";
sha256 = "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa";
name = "grandshell-theme";
};
@@ -25034,7 +25139,7 @@
sha256 = "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/graphene";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/graphene";
sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k";
name = "graphene";
};
@@ -25067,7 +25172,7 @@
sha256 = "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/graphene-meta-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/graphene-meta-theme";
sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q";
name = "graphene-meta-theme";
};
@@ -25088,7 +25193,7 @@
sha256 = "12r6a3hikzqcdbplmraa4p4w136c006yamylxfjf8580v15xngrf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/graphviz-dot-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/graphviz-dot-mode";
sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2";
name = "graphviz-dot-mode";
};
@@ -25109,7 +25214,7 @@
sha256 = "0nvl8mh7jxailisq31h5bi64s9b74ah1465wiwh18x502swr2s3c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grapnel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grapnel";
sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r";
name = "grapnel";
};
@@ -25129,7 +25234,7 @@
sha256 = "0mnwmsn078hz317xfz6c05r7narx3k8956v1ajz5myxx8xrcr24z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grass-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grass-mode";
sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v";
name = "grass-mode";
};
@@ -25150,7 +25255,7 @@
sha256 = "0rgv96caigcjffg1983274p4ff1icx1xh5bj7rcd53hai5ag16mp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/green-phosphor-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/green-phosphor-theme";
sha256 = "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh";
name = "green-phosphor-theme";
};
@@ -25171,7 +25276,7 @@
sha256 = "1670pxgmqflzw5d02mzsmqjf3gp0c4wf25z0crmaamyfmwdz9pag";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gregorio-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gregorio-mode";
sha256 = "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx";
name = "gregorio-mode";
};
@@ -25192,7 +25297,7 @@
sha256 = "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grep-a-lot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grep-a-lot";
sha256 = "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1";
name = "grep-a-lot";
};
@@ -25210,7 +25315,7 @@
sha256 = "08jl4xhh25znyc6cm7288x4b55pykrpcsyym78fdlrw3xxr77cxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grep+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grep+";
sha256 = "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx";
name = "grep-plus";
};
@@ -25231,7 +25336,7 @@
sha256 = "14c09m9p6556rrf0qfad4zsv7qxa5flamzg6fa83cxh0qfg7wjbp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/greymatters-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/greymatters-theme";
sha256 = "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr";
name = "greymatters-theme";
};
@@ -25250,7 +25355,7 @@
sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grin";
sha256 = "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk";
name = "grin";
};
@@ -25271,7 +25376,7 @@
sha256 = "1d2kwiq3zy8wdg5zig0q9rrdcs4xdv6zsgvgc21b3kv83daq1dsq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grizzl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grizzl";
sha256 = "0354xskqzxc38l14zxqs31hadwh27v9lyx67y3hnd94d8abr0qcb";
name = "grizzl";
};
@@ -25292,7 +25397,7 @@
sha256 = "1dwj53z4422ks30cqr5rj6x91qf63sjzbmb06sz4ac5pdr1d66q6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/groovy-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/groovy-mode";
sha256 = "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal";
name = "groovy-mode";
};
@@ -25313,7 +25418,7 @@
sha256 = "0dn1iscy0vw2bcnh5s675wjnfk9f20i30b8slyffvpzbbi369pys";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gruber-darker-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gruber-darker-theme";
sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi";
name = "gruber-darker-theme";
};
@@ -25334,7 +25439,7 @@
sha256 = "1xd6gv9bkqnj7j5mcnwvl1mxjmzvxqhp135hxj0ijc0ybdybacf7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grunt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grunt";
sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz";
name = "grunt";
};
@@ -25355,7 +25460,7 @@
sha256 = "0xa7pnyp0iggaxsfic7gjnbib2c9175cg9d75bml760s18fvnciv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gruvbox-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gruvbox-theme";
sha256 = "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32";
name = "gruvbox-theme";
};
@@ -25376,7 +25481,7 @@
sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gs-mode";
sha256 = "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq";
name = "gs-mode";
};
@@ -25397,7 +25502,7 @@
sha256 = "0vfqwiiyvpn5m9mxdrm94pcl7jbpffxrjw1i87m66scrwppjjhdb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gscholar-bibtex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gscholar-bibtex";
sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az";
name = "gscholar-bibtex";
};
@@ -25418,7 +25523,7 @@
sha256 = "14sx5m6fpkm2q8ljkicl1yy1sw003k4rzz9hi7lm1nfqr2l4n6q0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/guide-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/guide-key";
sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf";
name = "guide-key";
};
@@ -25439,7 +25544,7 @@
sha256 = "1s6p4ysdbqx5fk68s317ckj5rjmpkwwb0324sbqqa6byhw3j0xyj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/guide-key-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/guide-key-tip";
sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06";
name = "guide-key-tip";
};
@@ -25460,7 +25565,7 @@
sha256 = "1jymhjjpn600svd5jbj42m3vnpaza838zby507ynbwc95nja29vs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/guru-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/guru-mode";
sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs";
name = "guru-mode";
};
@@ -25481,7 +25586,7 @@
sha256 = "0060qw4gr9fv6db20xf3spgl2fwg2iid5ckfjm3vj3ydyv62q13s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gvpr-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gvpr-mode";
sha256 = "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw";
name = "gvpr-mode";
};
@@ -25502,7 +25607,7 @@
sha256 = "1c49lfm5saafxks591qyy2nilymxz3aqlxpsmnad5d0kfhvjr47z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hackernews";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hackernews";
sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a";
name = "hackernews";
};
@@ -25523,7 +25628,7 @@
sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ham-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ham-mode";
sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz";
name = "ham-mode";
};
@@ -25544,7 +25649,7 @@
sha256 = "1rnkzl51h263nck1bd0jyb7q58b54d764gcsh7wqxfgzs1jfr4am";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hamburg-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hamburg-theme";
sha256 = "149ln7670kjyhdfj5j9akxch47dlff2hd58amla7j3297z1nhg4k";
name = "hamburg-theme";
};
@@ -25565,7 +25670,7 @@
sha256 = "0fmcm4pcivigz9xhf7z9wsxz9pg1yfx9qv8na2dxj426bibk0a6w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haml-mode";
sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f";
name = "haml-mode";
};
@@ -25586,7 +25691,7 @@
sha256 = "1njrpb1s2v9skyfbgb28clrxyvyp8i4b8kwa68ynvq3vjb4fnws6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hamlet-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hamlet-mode";
sha256 = "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx";
name = "hamlet-mode";
};
@@ -25607,7 +25712,7 @@
sha256 = "0w443knp6kvjm2m79cni5d17plyhbsl0a4kip7yrpv5nmg370q3p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/handlebars-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/handlebars-mode";
sha256 = "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj";
name = "handlebars-mode";
};
@@ -25628,7 +25733,7 @@
sha256 = "1z37di9vk1l35my8kl8jnyqlkr1rnp0iz13hpc0r065mib67v58k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/handlebars-sgml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/handlebars-sgml-mode";
sha256 = "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w";
name = "handlebars-sgml-mode";
};
@@ -25649,7 +25754,7 @@
sha256 = "0whn8rc98dhncgizzrb22nx6b6cm655q1cf2fpn6g3knq1c2471r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/handoff";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/handoff";
sha256 = "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w";
name = "handoff";
};
@@ -25670,7 +25775,7 @@
sha256 = "124k803pgxc7fz325yy6jcyam69f5fk9kdwfgmnwwca9ablq4cfb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hardcore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hardcore-mode";
sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd";
name = "hardcore-mode";
};
@@ -25691,7 +25796,7 @@
sha256 = "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hardhat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hardhat";
sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z";
name = "hardhat";
};
@@ -25712,7 +25817,7 @@
sha256 = "1nswlbw4x461zksjcy2kllgiz8h270iyk44bls3m3l9y2nx82fxm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/harvest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/harvest";
sha256 = "1qfhfzjwlnqpbq4kfxvs97fa3xks8zi02fnwv0ik8wb1ppbb77qd";
name = "harvest";
};
@@ -25733,7 +25838,7 @@
sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haskell-emacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-emacs";
sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6";
name = "haskell-emacs";
};
@@ -25754,7 +25859,7 @@
sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haskell-emacs-base";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-emacs-base";
sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb";
name = "haskell-emacs-base";
};
@@ -25775,7 +25880,7 @@
sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haskell-emacs-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-emacs-text";
sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy";
name = "haskell-emacs-text";
};
@@ -25788,15 +25893,15 @@
haskell-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "haskell-mode";
- version = "20160516.1153";
+ version = "20160520.841";
src = fetchFromGitHub {
owner = "haskell";
repo = "haskell-mode";
- rev = "1776c705a423ab4116fecc116ed7bdc34597e2c3";
- sha256 = "0xz0c1m5xpkch7m428giv668qd3hr9p6dpzv7yh3c80xvz4cmqia";
+ rev = "995d85f0a18a382b3fab3dcb78af0d676c6f7bcc";
+ sha256 = "0ml96s3qk40h941i22qihygf6b116k8myadwdr5pzc51vwngh2q7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haskell-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-mode";
sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp";
name = "haskell-mode";
};
@@ -25817,7 +25922,7 @@
sha256 = "1wha5f2zx5hr6y0wvpmkg7jnxcgbzx99gd70h96c3dqqqhqz6d2a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haskell-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-snippets";
sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2";
name = "haskell-snippets";
};
@@ -25837,7 +25942,7 @@
sha256 = "0hfq8wpnyz5sqhkr53smw0k1wi7mb5k215xnvywkh5lhsq8cjhby";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haskell-tab-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-tab-indent";
sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7";
name = "haskell-tab-indent";
};
@@ -25858,7 +25963,7 @@
sha256 = "1gmh455ahd9if11f8mrqbfky24c784bb4fgdl3pj8i0n5sl51i88";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haste";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haste";
sha256 = "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf";
name = "haste";
};
@@ -25878,7 +25983,7 @@
sha256 = "106a7kpjj4laxl7x8aqpv75ih54569b3bs2a1b8z4rghmikqc4aw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haxe-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haxe-mode";
sha256 = "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l";
name = "haxe-mode";
};
@@ -25899,7 +26004,7 @@
sha256 = "1si5r86zvnp4wbzvvqyc4zhap14k8pcq5nqigx45mgvpdnwdvzln";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haxor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haxor-mode";
sha256 = "1y4m058whdqnkkf9s6hzi0h6w0fc8ajfawhpjj0wqjam4adnfkq5";
name = "haxor-mode";
};
@@ -25920,7 +26025,7 @@
sha256 = "0pjxyhh8a02i54a9jsqr8p1mcqfl6k9b8gv9lnzb242gy4518y3l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hayoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hayoo";
sha256 = "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9";
name = "hayoo";
};
@@ -25941,7 +26046,7 @@
sha256 = "0rgcj47h7a67qkw6696pcm1a4g4ryx8nrz55s69fw86958fp08hk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hc-zenburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hc-zenburn-theme";
sha256 = "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y";
name = "hc-zenburn-theme";
};
@@ -25962,7 +26067,7 @@
sha256 = "0hiw226gv73jh7s3jg4p1c15p4km4rs7i9ab4wgpkl5lg4vrz5i6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hcl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hcl-mode";
sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin";
name = "hcl-mode";
};
@@ -25980,7 +26085,7 @@
sha256 = "00j74cqdnaf5rl7w4wabm4z88cm20s152y0yxnv73z9pvqbknrmm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/header2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/header2";
sha256 = "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06";
name = "header2";
};
@@ -26001,7 +26106,7 @@
sha256 = "06hq6p6a4fzprbj4r885vsvzddlvx0wxqk5kik06v5bm7hjmnyrq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/headlong";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/headlong";
sha256 = "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6";
name = "headlong";
};
@@ -26014,15 +26119,15 @@
helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }:
melpaBuild {
pname = "helm";
- version = "20160516.1054";
+ version = "20160521.1234";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm";
- rev = "ec90fded17e719e7871a8e305b254a4ba3a00f75";
- sha256 = "0qagbyrym62pi1ky0afkibrwg8c4q97k7qcn051ymadam5i3gj04";
+ rev = "439f538d3c87a37d6a693683a52cf39de3c5bdcf";
+ sha256 = "0ivf2imrsxfyh8vc8c36c67c8470f3wzs62rbw7628ms2g7mwzmf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm";
sha256 = "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9";
name = "helm";
};
@@ -26043,7 +26148,7 @@
sha256 = "0nip0zrmn944wy0x2dc5ryr0m7a948rn2a8cbaajghs7a7zai4cr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-R";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-R";
sha256 = "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1";
name = "helm-R";
};
@@ -26064,7 +26169,7 @@
sha256 = "04rvbafa77blps7x7cmlsciys8fgmvhfhq4v51pk8z5q3j1lrgc5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ack";
sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni";
name = "helm-ack";
};
@@ -26085,7 +26190,7 @@
sha256 = "0hxfgdn56c7qr64r59g9hvxxwa4mw0ad9c9m0z5cj85bsdd7rlx4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ad";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ad";
sha256 = "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi";
name = "helm-ad";
};
@@ -26106,7 +26211,7 @@
sha256 = "0ybxjvhzpsg8k9j1315ls6xa3pqysm5xabn94xla99hc0n98mpw4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ag";
sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf";
name = "helm-ag";
};
@@ -26127,7 +26232,7 @@
sha256 = "1rifdkhzvf7xd2npban0i8v3rjcji69063dw9rs1d32w4n7fzlfa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ag-r";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ag-r";
sha256 = "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9";
name = "helm-ag-r";
};
@@ -26148,7 +26253,7 @@
sha256 = "153zq1q3s3ihjh15wyci9qdic3pin8f1j1gq2qlzyhmy0njlvgjb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-anything";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-anything";
sha256 = "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx";
name = "helm-anything";
};
@@ -26169,7 +26274,7 @@
sha256 = "1bnypr906gfc1fbyrqfsfilsl6wiacrnhr8flpa0gmdjhvmrw7af";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-aws";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-aws";
sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5";
name = "helm-aws";
};
@@ -26190,7 +26295,7 @@
sha256 = "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-backup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-backup";
sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3";
name = "helm-backup";
};
@@ -26211,7 +26316,7 @@
sha256 = "1zrs1gk95mna1kipgrq8mfhk0gqimvsb4b583f900fh86019nn1l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-bibtex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bibtex";
sha256 = "037pqgyyb2grg88yfxx1r8yp4lrgz2fyzz9fbbp34l8s6vk3cp4z";
name = "helm-bibtex";
};
@@ -26232,7 +26337,7 @@
sha256 = "10k7hjfz9jmfpbmsv20jy9vr6fqxx1yp8v115hprqvw057iifsl9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-bibtexkey";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bibtexkey";
sha256 = "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj";
name = "helm-bibtexkey";
};
@@ -26253,7 +26358,7 @@
sha256 = "1wmcy7q4ys2sf8ya5l4n7a6bq5m9d6m19amjfwkmkh4ajkwl041y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-bind-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bind-key";
sha256 = "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid";
name = "helm-bind-key";
};
@@ -26274,7 +26379,7 @@
sha256 = "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-bm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bm";
sha256 = "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh";
name = "helm-bm";
};
@@ -26295,7 +26400,7 @@
sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-bundle-show";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bundle-show";
sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7";
name = "helm-bundle-show";
};
@@ -26316,7 +26421,7 @@
sha256 = "0w4svbg32y63v049plvk7djc1m2amjzrr1v979d9s6jbnnpzlb5c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-c-moccur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-c-moccur";
sha256 = "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b";
name = "helm-c-moccur";
};
@@ -26337,7 +26442,7 @@
sha256 = "03c4w34r0q7xpz1ny8dya8f96rhjpc9r2c24n7vg9x6x4i2wl204";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-c-yasnippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-c-yasnippet";
sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90";
name = "helm-c-yasnippet";
};
@@ -26358,7 +26463,7 @@
sha256 = "0wkskm0d1mvh49l65xg6pgwd7yxy02llflkzx59ayqv4wjvsyayb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-chrome";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-chrome";
sha256 = "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz";
name = "helm-chrome";
};
@@ -26379,7 +26484,7 @@
sha256 = "1dmj4f8pris1i7wvfplp4dbnyfm403l6rplxfrfi0cd9afg7m68i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-chronos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-chronos";
sha256 = "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3";
name = "helm-chronos";
};
@@ -26400,7 +26505,7 @@
sha256 = "18j4ikb3q8ygdq74zqzm83wgb39x7w209n3186mm051n8lfmkaif";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-cider-history";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-cider-history";
sha256 = "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h";
name = "helm-cider-history";
};
@@ -26421,7 +26526,7 @@
sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-circe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-circe";
sha256 = "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v";
name = "helm-circe";
};
@@ -26442,7 +26547,7 @@
sha256 = "015b8zxh91ljhqvn6z43gy08di54xcw9skw0i7frj3d7gk984qhl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-clojuredocs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-clojuredocs";
sha256 = "0yz0wlyay9286by8i30gs3ispswq8ayqlcnna1s7bgspjvb7scmk";
name = "helm-clojuredocs";
};
@@ -26463,7 +26568,7 @@
sha256 = "10cp21v8vwgp8hv2rkdn9x8v2n8wqbphgslb561rlwc2rfpvzqvs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-cmd-t";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-cmd-t";
sha256 = "1w870ldq029wgicgv4cqm31zw2i8vkap3m9hsr9d0i3gv2virnc6";
name = "helm-cmd-t";
};
@@ -26484,7 +26589,7 @@
sha256 = "05nvbwz3inbmfj88am69sz032wsj8jkfpjk5drgfijw98il9blk9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-codesearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-codesearch";
sha256 = "1v21zwcyx73bc1lcfk60v8xim31bwdk4p06g9i4qag3cijdlli9q";
name = "helm-codesearch";
};
@@ -26505,7 +26610,7 @@
sha256 = "0fxrmvb64lav4aqs61z3a4d2mcp9s2nw7fvysyjn0r1291pkzk9j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-commandlinefu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-commandlinefu";
sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd";
name = "helm-commandlinefu";
};
@@ -26518,15 +26623,15 @@
helm-company = callPackage ({ company, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-company";
- version = "20160514.258";
+ version = "20160517.158";
src = fetchFromGitHub {
owner = "manuel-uberti";
repo = "helm-company";
- rev = "743a51a855bcd0f7e7df4a015186bc2659f5a345";
- sha256 = "17yrgc58mavwgjpk53nph2l1wgd7wqmnvkfz3kgqhfa56d40zcdh";
+ rev = "d796bfc43489656c87b269c4c893d84745effb31";
+ sha256 = "0kbm8w1hxff0nb8pyjnq2l43ra1m0ywzjvvqs0lncji5zqirvp8l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-company";
sha256 = "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3";
name = "helm-company";
};
@@ -26539,15 +26644,15 @@
helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "helm-core";
- version = "20160516.1232";
+ version = "20160522.637";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm";
- rev = "ec90fded17e719e7871a8e305b254a4ba3a00f75";
- sha256 = "0qagbyrym62pi1ky0afkibrwg8c4q97k7qcn051ymadam5i3gj04";
+ rev = "439f538d3c87a37d6a693683a52cf39de3c5bdcf";
+ sha256 = "0ivf2imrsxfyh8vc8c36c67c8470f3wzs62rbw7628ms2g7mwzmf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-core";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-core";
sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda";
name = "helm-core";
};
@@ -26568,7 +26673,7 @@
sha256 = "0nhi8xhcf7qpsibpyy5v364xx7lqkhskzai7awkg0xcdq8b5090x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-cscope";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-cscope";
sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4";
name = "helm-cscope";
};
@@ -26589,7 +26694,7 @@
sha256 = "01a3pahpsxb7d15dkfgxypl7gzqb4dy4f36lmid1w77b9rhs6nph";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-css-scss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-css-scss";
sha256 = "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak";
name = "helm-css-scss";
};
@@ -26610,7 +26715,7 @@
sha256 = "18d96alik66nw3rkk7k8740b4rx2bnh3pwn27ahpgj5yf51wm0ry";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ctest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ctest";
sha256 = "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm";
name = "helm-ctest";
};
@@ -26631,7 +26736,7 @@
sha256 = "03h9p3z6n9mi6hld86i6wj01glx4p058iifygrph0vvzczisixcq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-dash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-dash";
sha256 = "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy";
name = "helm-dash";
};
@@ -26652,7 +26757,7 @@
sha256 = "0y0xxs67bzh6j68j3f4zxzrl2ij5g1qvvxqklw7nz305xliis29g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-descbinds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-descbinds";
sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7";
name = "helm-descbinds";
};
@@ -26673,7 +26778,7 @@
sha256 = "0li9bi1lm5ldwfpvzahxp7hyfd94jr1kl43rprx0myxb016yk2p5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-describe-modes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-describe-modes";
sha256 = "0ajy9kwspm8rzafl0df57fad5867s86yjqj29shznqb12r91lpqb";
name = "helm-describe-modes";
};
@@ -26694,7 +26799,7 @@
sha256 = "0v5n46vkbhzsasz41dsllpmkn71y124zz9ycpdql4wsl3mlkhlcs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-dictionary";
sha256 = "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n";
name = "helm-dictionary";
};
@@ -26715,7 +26820,7 @@
sha256 = "14sifdrfg8ydvi9mj8qm2bfphbffglxrkb5ky4q5b3j96bn8v110";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-dired-recent-dirs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-dired-recent-dirs";
sha256 = "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs";
name = "helm-dired-recent-dirs";
};
@@ -26736,7 +26841,7 @@
sha256 = "183vj5yi575aqkak19hl8k4mw38r0ki9p1fnpa8nny2srjyy34yb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-dirset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-dirset";
sha256 = "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml";
name = "helm-dirset";
};
@@ -26757,7 +26862,7 @@
sha256 = "0c3mn5w98phsv7gsljyp5vxxmr2w6n3nczh5zm4hcpwsra3wh1v9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-emmet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-emmet";
sha256 = "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03";
name = "helm-emmet";
};
@@ -26778,7 +26883,7 @@
sha256 = "0330s07b41nw9q32xhjdl7yw83p8ikj6b2qkir3y0jyx16gk10dl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-emms";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-emms";
sha256 = "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5";
name = "helm-emms";
};
@@ -26799,7 +26904,7 @@
sha256 = "00yhmpv5xjlw1gwbcrznz83gkaby8zlqv74d3p7plca2cwjll1g9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-filesets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-filesets";
sha256 = "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f";
name = "helm-filesets";
};
@@ -26820,7 +26925,7 @@
sha256 = "04zvpdb6hrkss6mvvl2676b8blvykf6w6ks03ljrfb7sdw9d17ll";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-firefox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-firefox";
sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs";
name = "helm-firefox";
};
@@ -26841,7 +26946,7 @@
sha256 = "0mrck7qbqjqz5kpih3zb1yn2chjgv5ghrqc5cp80kmsmxasvk8zw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-flx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-flx";
sha256 = "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq";
name = "helm-flx";
};
@@ -26862,7 +26967,7 @@
sha256 = "062s08k8v657fpkqvdspv32awvj7dq929ks27w29k3kbzlqlrihp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-flycheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-flycheck";
sha256 = "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b";
name = "helm-flycheck";
};
@@ -26883,7 +26988,7 @@
sha256 = "1liaid4l4x8sb133lj944gwwpqngsf8hzibdwyfdmsi4m4abh73h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-flymake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-flymake";
sha256 = "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b";
name = "helm-flymake";
};
@@ -26904,7 +27009,7 @@
sha256 = "1k7invgzqrcm11plyvinqwf98yxibr8i4r9yw3csfsicc8b6if59";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-flyspell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-flyspell";
sha256 = "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f";
name = "helm-flyspell";
};
@@ -26925,7 +27030,7 @@
sha256 = "15am2dpva3fzj68sw9n4mpdxkw75l97l1k2j9vlvi2lbqk1h46pi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-fuzzier";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-fuzzier";
sha256 = "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc";
name = "helm-fuzzier";
};
@@ -26946,7 +27051,7 @@
sha256 = "1yxnmxq6ppfgwxrk5ryc5xfn82kjf4j65j14hy077gphr0q61q6a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-fuzzy-find";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-fuzzy-find";
sha256 = "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i";
name = "helm-fuzzy-find";
};
@@ -26967,7 +27072,7 @@
sha256 = "16p1gisbza48qircsvrwx020n96ss1c6s68d7cgqqfc0bf2467is";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ghc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ghc";
sha256 = "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d";
name = "helm-ghc";
};
@@ -26988,7 +27093,7 @@
sha256 = "0y379qap3mssz9nslb08vfzq5ihqcm156fbx0dszgz9d6xgkpdhw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ghq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ghq";
sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6";
name = "helm-ghq";
};
@@ -27009,7 +27114,7 @@
sha256 = "1yfy4a52hx44r32i0b75bka8gfcn5lp61jl86lzrsi2cr9wg10pn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-git";
sha256 = "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8";
name = "helm-git";
};
@@ -27030,7 +27135,7 @@
sha256 = "157b525h0kiaknn12fsw67fg26lzb20apx8sssmvlcicqcd51iaw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-git-files";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-git-files";
sha256 = "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6";
name = "helm-git-files";
};
@@ -27051,7 +27156,7 @@
sha256 = "1b29g71a2hwr83j6mamlzrczz5sydvds23wf50ja7svy2qvzyvp3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-git-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-git-grep";
sha256 = "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi";
name = "helm-git-grep";
};
@@ -27072,7 +27177,7 @@
sha256 = "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-github-stars";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-github-stars";
sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy";
name = "helm-github-stars";
};
@@ -27093,7 +27198,7 @@
sha256 = "0pd755s5zcg8y1svxj3g8m0znkp6cyx5y6lsj4lxczrk7lynzc3g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-gitignore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-gitignore";
sha256 = "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6";
name = "helm-gitignore";
};
@@ -27106,15 +27211,15 @@
helm-gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, gitlab, helm, lib, melpaBuild, s }:
melpaBuild {
pname = "helm-gitlab";
- version = "20150604.333";
+ version = "20160519.603";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "emacs-gitlab";
- rev = "1615468bbbe2bf07914dd525067ac39db2bc19c0";
- sha256 = "00mma30r7ixbrxjmmddz4klh517fcr3yn6ss4zw33fh2hzj3w6rl";
+ rev = "a1c1441ff5ffb290e695eb9ac05431e9385578f4";
+ sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-gitlab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-gitlab";
sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd";
name = "helm-gitlab";
};
@@ -27135,7 +27240,7 @@
sha256 = "0iyfn58h50xms5915i29b54wfyxh6vi9vy3v3r91g6dwlxrjibka";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-go-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-go-package";
sha256 = "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6";
name = "helm-go-package";
};
@@ -27156,7 +27261,7 @@
sha256 = "1addskcm325lb9plcbxfp1f6fsj3dcccb87gzihrp7ahiy7pmvih";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-google";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-google";
sha256 = "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32";
name = "helm-google";
};
@@ -27177,7 +27282,7 @@
sha256 = "1f88vd31fc7ksrhlc72i6c0wbbz62lxw9yakxdk0m72pfz345mz2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-grepint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-grepint";
sha256 = "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf";
name = "helm-grepint";
};
@@ -27198,7 +27303,7 @@
sha256 = "0p0mk44y2z875ra8mzcb6vlf4rbkiq9yank5hdxvg2x2sxsaambk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-growthforecast";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-growthforecast";
sha256 = "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh";
name = "helm-growthforecast";
};
@@ -27219,7 +27324,7 @@
sha256 = "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-gtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-gtags";
sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl";
name = "helm-gtags";
};
@@ -27232,15 +27337,15 @@
helm-hatena-bookmark = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-hatena-bookmark";
- version = "20160515.658";
+ version = "20160518.1210";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-hatena-bookmark";
- rev = "4b86899523d2e512083d1aa5906cce7db9987849";
- sha256 = "07cz5ikzkq8q912vdmd58q0nzx9kqzw57xlqgmjngcn9dgjq566x";
+ rev = "8f3e9a55a66f8a48e25bbd49f8e75d5fc1f907f2";
+ sha256 = "0s7xrk4wqyqmq4rd2zlx7ysl90rpsnqn9l6vg8y1byqdg9cvrqsx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-hatena-bookmark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-hatena-bookmark";
sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id";
name = "helm-hatena-bookmark";
};
@@ -27261,7 +27366,7 @@
sha256 = "08pfzs030d8g5s7vkpgicz4srp5cr3xpd84lhrr24ncrhbszxar9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-hayoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-hayoo";
sha256 = "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32";
name = "helm-hayoo";
};
@@ -27282,7 +27387,7 @@
sha256 = "05ksfx54ar2j4mypzwh0gfir8r26s4f1i4xw319q5pa1y2100cpn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-helm-commands";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-helm-commands";
sha256 = "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf";
name = "helm-helm-commands";
};
@@ -27303,7 +27408,7 @@
sha256 = "1l85kip4zd08d38sk7cdafmx0v68dh419cs86g7x0mgi0wn00kfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-hoogle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-hoogle";
sha256 = "0vhk4vwqfirdm5d0pppplfpqyc2sfj6jybhzp9n1w8xgrh2d1c0x";
name = "helm-hoogle";
};
@@ -27324,7 +27429,7 @@
sha256 = "0128nrhwyzslzl0l7wcjxn3dlx3h1sjmwnbbnp2fj4bjk7chc59q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-idris";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-idris";
sha256 = "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf";
name = "helm-idris";
};
@@ -27345,7 +27450,7 @@
sha256 = "0py4xs27z2jvg99i6qaf2ccz0mvk6bb9cvdyz8v8ngmnj3rw2vla";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-img";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-img";
sha256 = "0sq9l1wgm97ppfc45w3bdcv0qq5m85ygnanv1bdcp8bxbdl4vg0q";
name = "helm-img";
};
@@ -27366,7 +27471,7 @@
sha256 = "04vdin0n3514c8bycdjrwk3l6pkarrwanlklnm75315b91nkkbcp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-img-tiqav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-img-tiqav";
sha256 = "1m083hiih2rpyy8i439745mj4ldqy85fpnvms8qnv3042b8x35y0";
name = "helm-img-tiqav";
};
@@ -27387,7 +27492,7 @@
sha256 = "04ddjdia09y14gq4h6m8g6aiwkqvdxp66yjx3j5dh2xrkyxhlxpz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ispell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ispell";
sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0";
name = "helm-ispell";
};
@@ -27408,7 +27513,7 @@
sha256 = "1czgf5br89x192g3lh3x2n998f79hi1n2f309ll264qnl35kv14w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-itunes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-itunes";
sha256 = "0zi4wyraqkjwp954pkng8b23giv1q9618apd9v3dczsvlmaar9hf";
name = "helm-itunes";
};
@@ -27429,7 +27534,7 @@
sha256 = "0f2psp7p82sa2fip282w152zc1rjd3l0sna1g7rgwi9x29gcsh0v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-j-cheatsheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-j-cheatsheet";
sha256 = "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm";
name = "helm-j-cheatsheet";
};
@@ -27450,7 +27555,7 @@
sha256 = "0vhqpcv8xi6a6q7n6xxahdzijr1x5s40fvk9nc44q55psbyv627g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-jstack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-jstack";
sha256 = "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz";
name = "helm-jstack";
};
@@ -27471,7 +27576,7 @@
sha256 = "0nkmc17ggyfi7iz959mvzh6q7116j44zqwi7ydm9i8z49xfpzafy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-lobsters";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-lobsters";
sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp";
name = "helm-lobsters";
};
@@ -27492,7 +27597,7 @@
sha256 = "0yridy54p53zps33766hl7p2hq5pc4vxm08rb5vzbjw84vwaq07b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ls-git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ls-git";
sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj";
name = "helm-ls-git";
};
@@ -27513,7 +27618,7 @@
sha256 = "1msrsqiwk7bg5gry5cia8a6c7ifymfyn738hk8g2qwzzw4vkxxcs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ls-hg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ls-hg";
sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh";
name = "helm-ls-hg";
};
@@ -27529,11 +27634,11 @@
version = "20150717.339";
src = fetchsvn {
url = "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el";
- rev = "148749";
+ rev = "148903";
sha256 = "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ls-svn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ls-svn";
sha256 = "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d";
name = "helm-ls-svn";
};
@@ -27554,7 +27659,7 @@
sha256 = "1zxahr48s17di8mcy2sxvy4006ch9vwbvkbgkxdphijgqz41irqz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-make";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-make";
sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc";
name = "helm-make";
};
@@ -27575,7 +27680,7 @@
sha256 = "0gzlprf5js4y3vzkf7si2xc7ai5j97b5cqrs002hyjj5ij4f2vix";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-migemo";
sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x";
name = "helm-migemo";
};
@@ -27596,7 +27701,7 @@
sha256 = "1lbxb4vnnv6s46m90qihkj99qdbdylwncwaijjfd7i2kap2ayawh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-mode-manager";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-mode-manager";
sha256 = "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd";
name = "helm-mode-manager";
};
@@ -27617,7 +27722,7 @@
sha256 = "09rb8aq7fnf661w3liwbkkaczjph3dzvg26slm9cwcnl7pqnvagl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-mt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-mt";
sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a";
name = "helm-mt";
};
@@ -27638,7 +27743,7 @@
sha256 = "1q55x1rygqxriwxyp88azfp3phnibjfz9bwq4dwsvqah1zpzdzma";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-mu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-mu";
sha256 = "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2";
name = "helm-mu";
};
@@ -27659,7 +27764,7 @@
sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-nixos-options";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-nixos-options";
sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933";
name = "helm-nixos-options";
};
@@ -27680,7 +27785,7 @@
sha256 = "04c6k1rxdi175kwn146sb2nxd13mvx3irr9fbqykcfv81609kqx3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-notmuch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-notmuch";
sha256 = "1ixdc1ba4ygxl0lpg6ijk06dgj2hfv5p5k6ivq60ss0axyisnnv0";
name = "helm-notmuch";
};
@@ -27701,7 +27806,7 @@
sha256 = "1wkmbc7247f209krvw4dzja3z0wyny12x5yi1cn3fnfh5nx04851";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-open-github";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-open-github";
sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx";
name = "helm-open-github";
};
@@ -27722,7 +27827,7 @@
sha256 = "0glrbln15wang9n1h76dk19ykcgmc8hwphg1qcmc4fbbcgmh1a1p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-org-rifle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-org-rifle";
sha256 = "0hx764vql2qgw9i8qrr3kkn23lw6jx3x604dm1y33ig6a15gy3a3";
name = "helm-org-rifle";
};
@@ -27743,7 +27848,7 @@
sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-orgcard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-orgcard";
sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p";
name = "helm-orgcard";
};
@@ -27764,7 +27869,7 @@
sha256 = "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-package";
sha256 = "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y";
name = "helm-package";
};
@@ -27785,7 +27890,7 @@
sha256 = "1dyi3rs72jl7739knnikv8pawam54k0sxz5a4a33i6s2bg3ghxcd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-pages";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-pages";
sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj";
name = "helm-pages";
};
@@ -27806,7 +27911,7 @@
sha256 = "13wnagmgicl2mi4iksqckrjbaiz05j9ykbmvj26jy8zcbll5imfs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-perldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-perldoc";
sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb";
name = "helm-perldoc";
};
@@ -27827,7 +27932,7 @@
sha256 = "0wirqnzprfxbppdawfx6ah5rdawgyvl8b4zn2r3zm9mnj9jci4dw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-phpunit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-phpunit";
sha256 = "0anbrzlpmashcklifyvnnf2rwv5fk4x0kbls2dp2db1bliw3rdh6";
name = "helm-phpunit";
};
@@ -27848,7 +27953,7 @@
sha256 = "0bgpd50ningqyzwhfinfrn6gqacard5ynwllhg9clq0f683sbck2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-proc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-proc";
sha256 = "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx";
name = "helm-proc";
};
@@ -27869,7 +27974,7 @@
sha256 = "0j54c1kzsjgr05qx25rg3ylawvyw6n6liypiwaas47vpyfswbxhv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-project-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-project-persist";
sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld";
name = "helm-project-persist";
};
@@ -27890,7 +27995,7 @@
sha256 = "0wspzrzxd9qcpn686crxic85grxhx25hmswhkkll3h7lzczixzvh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-projectile";
sha256 = "18y7phrvbpdi3cnghwyhh0v1bwm95nwq1lymzf8lrcbmrwcvh36a";
name = "helm-projectile";
};
@@ -27911,7 +28016,7 @@
sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-prosjekt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-prosjekt";
sha256 = "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm";
name = "helm-prosjekt";
};
@@ -27932,7 +28037,7 @@
sha256 = "03ys40rr0pvgp35j5scw9c28j184f1c9m58a3x0c8f0lgyfpssjk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-pt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-pt";
sha256 = "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi";
name = "helm-pt";
};
@@ -27953,7 +28058,7 @@
sha256 = "1lxknzjfhl6irrspynlkc1dp02s0byp94y4qp69gcl9sla9262ip";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-purpose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-purpose";
sha256 = "0am8fy7ihk4hv07a6bnk9mwy986h6i6qxwpdmfhajzga71ixchg6";
name = "helm-purpose";
};
@@ -27974,7 +28079,7 @@
sha256 = "0admgfy0p13nilb4fi3dq8pm48w1fib8h8avi7h9ybi9k5h6x4ii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-pydoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-pydoc";
sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7";
name = "helm-pydoc";
};
@@ -27987,15 +28092,15 @@
helm-qiita = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-qiita";
- version = "20160515.651";
+ version = "20160522.312";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-qiita";
- rev = "f4bbc94e70ae37cbeaf775ae52715c9915246a47";
- sha256 = "1210l7am5czx0fir2qa3rachv7bgfyy3pw71mklhzz9c4ad7bq4f";
+ rev = "1adb50a144439b536523ae0af24fedb7faee2495";
+ sha256 = "12mkdjqg2vh95wwlr7iyv5janpvx7r745qfmxkjdx7c8ph14j5h7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-qiita";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-qiita";
sha256 = "1iz2w1901zz3zk9zazikmnkzng5klnvqn4ph1id7liksrcdpdmpm";
name = "helm-qiita";
};
@@ -28016,7 +28121,7 @@
sha256 = "1a26r21jvgzk21vh3mf29s1dhvvv70jh860zaq9ihrpfrrl91158";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-rails";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-rails";
sha256 = "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6";
name = "helm-rails";
};
@@ -28037,7 +28142,7 @@
sha256 = "1b74jsr28ldz80mrqz3d1bmykpcprdbhf3fzhc0awd5i5xdnfaid";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-rb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-rb";
sha256 = "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr";
name = "helm-rb";
};
@@ -28058,7 +28163,7 @@
sha256 = "1hfn7zk3pgz3w8mn44hh6dcv377j5272azx4r12p95kkp770xls2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-recoll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-recoll";
sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b";
name = "helm-recoll";
};
@@ -28079,7 +28184,7 @@
sha256 = "114maxzybs3sn32nv12fgm6aqsdqzn59fjdk6ra5cbbfyjvin16l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-rhythmbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-rhythmbox";
sha256 = "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a";
name = "helm-rhythmbox";
};
@@ -28100,7 +28205,7 @@
sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-robe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-robe";
sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw";
name = "helm-robe";
};
@@ -28121,7 +28226,7 @@
sha256 = "0s4hb1fvwr9za5gkz8s5w1kh9qjyygz6g59w7vmrg2d8ds2an03d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-rubygems-local";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-rubygems-local";
sha256 = "134qyqnh9l05lfj0vizlx35631q8ih6cdblrvka3p8i571300ikh";
name = "helm-rubygems-local";
};
@@ -28142,7 +28247,7 @@
sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-rubygems-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-rubygems-org";
sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs";
name = "helm-rubygems-org";
};
@@ -28163,7 +28268,7 @@
sha256 = "1ws5zxanaiaaxpgkcb2914qa8wxp6ml019hfnfcp7amjnajq9pyz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-safari";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-safari";
sha256 = "0lvwghcl5w67g0lc97r7hfvca7ss0mysy2mxj9axxbpyiq6fmh0y";
name = "helm-safari";
};
@@ -28184,7 +28289,7 @@
sha256 = "0padb6mncgc52wib3dgvdc9r4dp591gf8nblbfnsnxx4zjrcwawb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-sage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-sage";
sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj";
name = "helm-sage";
};
@@ -28205,7 +28310,7 @@
sha256 = "00wnqcgpf4hqdnqj5zrizr4s0pffb93xwya8k5c3rp4plncrcdzx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-sheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-sheet";
sha256 = "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc";
name = "helm-sheet";
};
@@ -28226,7 +28331,7 @@
sha256 = "0j3b5ypxq8k7mg6zlx3r15jpk3x2f0gx9p9bjr0h78h0sc0f46l7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-spaces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-spaces";
sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791";
name = "helm-spaces";
};
@@ -28247,7 +28352,7 @@
sha256 = "133dcqk42nq5gh5qlcbcmx3lczisfgymcnypnld318jvjgd2ma8a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-spotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-spotify";
sha256 = "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf";
name = "helm-spotify";
};
@@ -28268,7 +28373,7 @@
sha256 = "1iid2jcnqpd5b2g0jgas76n06i8m20kp3j4lhmalg9jnyvgrlf7s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-swoop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-swoop";
sha256 = "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8";
name = "helm-swoop";
};
@@ -28281,15 +28386,15 @@
helm-systemd = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, with-editor }:
melpaBuild {
pname = "helm-systemd";
- version = "20160502.320";
+ version = "20160518.233";
src = fetchFromGitHub {
owner = "lompik";
repo = "helm-systemd";
- rev = "5ce9d34b38cd664c8516172034f5323f31521fc3";
- sha256 = "1d3ffdim1qbp8a0xcd80v6a5hsy7k40iair7mrgja6dk607amxg7";
+ rev = "0892535baa405a2778be2f0f013bac768e72b1f9";
+ sha256 = "1yqwq8a5pw3iaj69kqvlgn4hr18ssx39lnm4vycbmsg1bi2ygfzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-systemd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-systemd";
sha256 = "1kcf9218l8aygrcj1h3czyklk1cxc5c73qmv4d3r3bzpxbxgf6ib";
name = "helm-systemd";
};
@@ -28310,7 +28415,7 @@
sha256 = "0a9h6rmjc6c6krkvxbgrzv35if260d9ma9a2k47jzm9psnyp9s2w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-themes";
sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j";
name = "helm-themes";
};
@@ -28331,7 +28436,7 @@
sha256 = "1ypnsbx623gg3q07gxrbkn82jzy38sj4p52hj1wcb54qjqzyznkg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-unicode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-unicode";
sha256 = "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4";
name = "helm-unicode";
};
@@ -28352,7 +28457,7 @@
sha256 = "0xlz9rxx7y9pkrzvxmv42vgys5iwx75zv9g50k8ihwc08z80dhcq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-w32-launcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-w32-launcher";
sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri";
name = "helm-w32-launcher";
};
@@ -28373,7 +28478,7 @@
sha256 = "0d47mqib4zkfadq26vpy0ih7j18d6n5v4c21wvr4hhg6hg205iiz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-w3m";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-w3m";
sha256 = "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz";
name = "helm-w3m";
};
@@ -28394,7 +28499,7 @@
sha256 = "03a5hzgqak8wg6i2h2p3fr9ij55lqarcsblml8qrnrj27ghcvzzh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-wordnet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-wordnet";
sha256 = "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f";
name = "helm-wordnet";
};
@@ -28415,7 +28520,7 @@
sha256 = "19l8vysjygscr1nsddjz2yv0fjhbsswfq40rdny8zsmaa6qhpj35";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-words";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-words";
sha256 = "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76";
name = "helm-words";
};
@@ -28436,7 +28541,7 @@
sha256 = "1yqr5z5sw7schvaq9pmwg79anp806gikm28s6xvrayzyn4idz2n6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-xcdoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-xcdoc";
sha256 = "1ikphlnj053i4g1l8r2pqaljvdqglj1yk0xx4vygnw98qyzdsx4v";
name = "helm-xcdoc";
};
@@ -28457,7 +28562,7 @@
sha256 = "11fznbfcv4rac4h50mkax1g66wd2f91f5dw2v4jxjq2f5y4h4w0g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-zhihu-daily";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-zhihu-daily";
sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r";
name = "helm-zhihu-daily";
};
@@ -28475,7 +28580,7 @@
sha256 = "00x3ln7x4d6r422x845smf3h0x1z85l5jqyjkrllqcs7qijcrk5w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/help-fns+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/help-fns+";
sha256 = "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia";
name = "help-fns-plus";
};
@@ -28493,7 +28598,7 @@
sha256 = "0qmf81maq6yvs68b8vlbxwkjk72qldamq75znrma9mhvlv8igrgx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/help-mode+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/help-mode+";
sha256 = "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra";
name = "help-mode-plus";
};
@@ -28511,7 +28616,7 @@
sha256 = "1r7kf9plnsjx87bhflsdh47wybvhis7gb10izqa1p6w0aqsg178s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/help+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/help+";
sha256 = "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi";
name = "help-plus";
};
@@ -28532,7 +28637,7 @@
sha256 = "178dvigiw162m01x7dm8pf61w2n3bq51lvk5q7jzpb9s35pz1697";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hemisu-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hemisu-theme";
sha256 = "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph";
name = "hemisu-theme";
};
@@ -28553,7 +28658,7 @@
sha256 = "0c45pib8qpwgyr271g5ddnsn7hzq68mqflv0yyc8803ni06w9vhj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/heroku";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/heroku";
sha256 = "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy";
name = "heroku";
};
@@ -28574,7 +28679,7 @@
sha256 = "15hk0v6ck076mahsz4spq75jcnv587fx4d3w50c7bdh423fl0xvx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/heroku-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/heroku-theme";
sha256 = "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9";
name = "heroku-theme";
};
@@ -28595,7 +28700,7 @@
sha256 = "1ghknn1fd6lwxq035amrawx9ixw3qwjsfarsjyqss7rhs70wrn5a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hexo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hexo";
sha256 = "0fgrxf6gdw0kzs6x6y8qr511cazaaiyk7licgkgznngj4w6g7jyn";
name = "hexo";
};
@@ -28613,7 +28718,7 @@
sha256 = "0rqjidjxa5j6rjknklfks743lczbq3qsyiranrf2z3ghzi0gf7fd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hexrgb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hexrgb";
sha256 = "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06";
name = "hexrgb";
};
@@ -28634,7 +28739,7 @@
sha256 = "1zr59kcnkd9bm5676shmz63n0wpnfr7yl9g4l01ng0xcili1n13i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hfst-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hfst-mode";
sha256 = "1w342n5k9ak1m5znysvrplpr9dhmi7hxbkr4d1dx51dn0azbpjh7";
name = "hfst-mode";
};
@@ -28655,7 +28760,7 @@
sha256 = "0l22sqi9lmy25idh231p0hgq22b3dxwb9wq60yxk8dck9zlkv7rr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hgignore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hgignore-mode";
sha256 = "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj";
name = "hgignore-mode";
};
@@ -28676,7 +28781,7 @@
sha256 = "1ky5s7hzqbxgasdz285q3rnvzh3irwsq61rlivjrcxyfdxdjbbvp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hgrc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hgrc-mode";
sha256 = "18400dhdackdpndkz6shjmd4klfh6b4vlccnnqlzf3a93alw6vqf";
name = "hgrc-mode";
};
@@ -28697,7 +28802,7 @@
sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hi2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hi2";
sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2";
name = "hi2";
};
@@ -28715,7 +28820,7 @@
sha256 = "1l5jvgjgd0kzv1sn6h467fbnl487hma4h4pkwq4x1dhbc26yvfpz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hide-comnt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hide-comnt";
sha256 = "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx";
name = "hide-comnt";
};
@@ -28733,7 +28838,7 @@
sha256 = "1q87yp1pr62cza3pqimqd09a39yyij4c7pncdww84zz7cii9qrn2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hide-lines";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hide-lines";
sha256 = "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q";
name = "hide-lines";
};
@@ -28751,7 +28856,7 @@
sha256 = "1zxrygpf47bzj6p808r3qhj3dfr3m8brp1xgxs33c7f88rinfval";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hide-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hide-region";
sha256 = "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm";
name = "hide-region";
};
@@ -28772,7 +28877,7 @@
sha256 = "1dr06b9njzih8z97k62l9w3x0a801x4bp043zvk7av9qkz8izl2r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hideshow-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hideshow-org";
sha256 = "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc";
name = "hideshow-org";
};
@@ -28790,7 +28895,7 @@
sha256 = "15ax1j3j7kylyc8a91ja825sp4mhbdgx0j4i5kqxwhvmwvpmyrv6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hideshowvis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hideshowvis";
sha256 = "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f";
name = "hideshowvis";
};
@@ -28808,7 +28913,7 @@
sha256 = "15s4463damlszd5wqi22a6w25i8l0m5rvqdg73k3yp01i65jc29z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight";
sha256 = "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0";
name = "highlight";
};
@@ -28829,7 +28934,7 @@
sha256 = "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-blocks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-blocks";
sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1";
name = "highlight-blocks";
};
@@ -28847,7 +28952,7 @@
sha256 = "18y6cw43mhizccvwfydv6g2kz8w7vff0n3k9sq5ghwq3rb3z14b2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-chars";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-chars";
sha256 = "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0";
name = "highlight-chars";
};
@@ -28865,7 +28970,7 @@
sha256 = "0r3kzs2fsi3kl5gqmsv75dc7lgfl4imrrqhg09ij6kq1ri8gjxjw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-cl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-cl";
sha256 = "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w";
name = "highlight-cl";
};
@@ -28884,7 +28989,7 @@
sha256 = "1aki7a7nnj9n7vh19k4fr0v7cqbwkrpc6b3f3yv95vcqj8a4y34c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-current-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-current-line";
sha256 = "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973";
name = "highlight-current-line";
};
@@ -28905,7 +29010,7 @@
sha256 = "1l10xnjyvcbv1v8xlldaca7z3fk5qav7nsbhfnjxxd0bgh5v9by2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-defined";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-defined";
sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms";
name = "highlight-defined";
};
@@ -28926,7 +29031,7 @@
sha256 = "0rs8zyjz5mh26n8bdxn6fmyw2809nihz1vp7ih59dq11lx3mf9az";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-escape-sequences";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-escape-sequences";
sha256 = "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6";
name = "highlight-escape-sequences";
};
@@ -28939,15 +29044,15 @@
highlight-indent-guides = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-indent-guides";
- version = "20151112.1527";
+ version = "20160519.1523";
src = fetchFromGitHub {
owner = "DarthFennec";
repo = "highlight-indent-guides";
- rev = "4473af2bbeb80d50681a64b66f5891262cf52346";
- sha256 = "10m1cr5plzsxbq08lck4c2w0whcdrnl9h2qm4bbr9srhnpry7fxj";
+ rev = "31e3b967dfc83d09c517e4570959bfe8a53e2101";
+ sha256 = "10rj4sl99kpsggw7009vv8l4p74rmpp2hfz1d4d3gyfq5k3zblb5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-indent-guides";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-indent-guides";
sha256 = "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm";
name = "highlight-indent-guides";
};
@@ -28968,7 +29073,7 @@
sha256 = "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-indentation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-indentation";
sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6";
name = "highlight-indentation";
};
@@ -28989,7 +29094,7 @@
sha256 = "1vy6j63jp83ljdqkrqglpys74yfh7p61sd0lqiwczgr5nqyc60rl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-leading-spaces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-leading-spaces";
sha256 = "0h2ww2vqmarghf4zg0wbwn0wgndmkcjy696mc885rwavck2dav4p";
name = "highlight-leading-spaces";
};
@@ -29010,7 +29115,7 @@
sha256 = "083jmw9jaxj5d5f0b0gxxb0gjdi4dv1sm66559105slbkl2nsa3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-numbers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-numbers";
sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv";
name = "highlight-numbers";
};
@@ -29020,6 +29125,26 @@
license = lib.licenses.free;
};
}) {};
+ highlight-operators = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "highlight-operators";
+ version = "20160517.1649";
+ 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";
+ sha256 = "00agrwp2i3mkacnp4qhqcnpwn5qlbj9qv97zrw7a7ldqga0vwvhn";
+ name = "highlight-operators";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/highlight-operators";
+ license = lib.licenses.free;
+ };
+ }) {};
highlight-parentheses = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-parentheses";
@@ -29031,7 +29156,7 @@
sha256 = "0kzqx1y6rr4ryxi2md9087saad4g4bzysckmp8272k521d46xa1r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-parentheses";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-parentheses";
sha256 = "1d38wxk5bwblddr74crzwjwpgyr8zgcl5h5ilywg35jpv7n66lp5";
name = "highlight-parentheses";
};
@@ -29052,7 +29177,7 @@
sha256 = "1gq8inxfni9zgz2brqm4nlswgr8b0spq15wr532xfrgr456g10ks";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-quoted";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-quoted";
sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl";
name = "highlight-quoted";
};
@@ -29073,7 +29198,7 @@
sha256 = "0gnr1dqkcmc9gfzqjaixh76g1kq7xp20mg1h6vl3c4na7nk6a3fg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-stages";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-stages";
sha256 = "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4";
name = "highlight-stages";
};
@@ -29094,7 +29219,7 @@
sha256 = "19cgyk0sh8nsmf3jbi92i8qsdx4l4yilfq5jj9zfdbj9p5gvwx96";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-symbol";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-symbol";
sha256 = "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4";
name = "highlight-symbol";
};
@@ -29112,7 +29237,7 @@
sha256 = "1bbiyqddqkrp3c7xsg1m4143611bhg1kkakrwscqjb4cfmx29qqg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-tail";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-tail";
sha256 = "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws";
name = "highlight-tail";
};
@@ -29133,7 +29258,7 @@
sha256 = "00s2nm0rfdgkpn2v9m36y0l42jyfah5hp5hd3bkwljgs99cp1ihk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-thing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-thing";
sha256 = "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1";
name = "highlight-thing";
};
@@ -29154,7 +29279,7 @@
sha256 = "0hhc2l4pz6q8injpplv6b5l08l8q2lnjdpwabp7gwmhraq54rhjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-unique-symbol";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-unique-symbol";
sha256 = "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx";
name = "highlight-unique-symbol";
};
@@ -29175,7 +29300,7 @@
sha256 = "06nnqry36ncqacfzd8yvc4q59bwk3vgf9a14rkpph2hk2rfvq2m6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight2clipboard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight2clipboard";
sha256 = "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0";
name = "highlight2clipboard";
};
@@ -29192,11 +29317,11 @@
src = fetchFromGitHub {
owner = "chrisdone";
repo = "hindent";
- rev = "546025b34a259ea4556505feee301462ac0e9def";
- sha256 = "03mnvhav2bm51s430z3vyig5z5q8rg9glr8zqxwdnw297ln2f3l6";
+ rev = "fe6a1f209d5e5a341606719c90eddf0c0c4e6df7";
+ sha256 = "03pwflw5qrf1vk5c5ks3kimg2hij689kd7amsymrwm9lai51qik6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hindent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hindent";
sha256 = "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz";
name = "hindent";
};
@@ -29217,7 +29342,7 @@
sha256 = "141ikpyns1gd6kjply8m9jy9gifx5xdw5bn4p29hrxgiw994a78d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hippie-exp-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hippie-exp-ext";
sha256 = "142s7cmgjnqdmac21yps3b071sv18lw068kmxchyxb0zsa067g9l";
name = "hippie-exp-ext";
};
@@ -29238,7 +29363,7 @@
sha256 = "1l76r8hzhaapx76f6spm5jmjbrrm5zf79cpd5024xw3hpj1jbkjp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hippie-expand-slime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hippie-expand-slime";
sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m";
name = "hippie-expand-slime";
};
@@ -29259,7 +29384,7 @@
sha256 = "0b5wrid428s11afc48d6mdifmd31gmzyrj9zcpd3jwk63ydiihdc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hippie-namespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hippie-namespace";
sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0";
name = "hippie-namespace";
};
@@ -29280,7 +29405,7 @@
sha256 = "17dcpwx2y464g8qi3ixlsf3la8dn0bkxax296bhfg4vh73dxccl3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hipster-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hipster-theme";
sha256 = "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2";
name = "hipster-theme";
};
@@ -29301,7 +29426,7 @@
sha256 = "1dmrg39g0faqqkgrpcbybjbb91vcpkwawxsplckkj92y59zanq3x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/history";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/history";
sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g";
name = "history";
};
@@ -29322,7 +29447,7 @@
sha256 = "1y275fchhx0n6dv038hsr44a3bjghqdhc8j1dcpm2rvs8chgm8g0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/historyf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/historyf";
sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s";
name = "historyf";
};
@@ -29343,7 +29468,7 @@
sha256 = "097lrj9lgfa7szww324hlqywwkbi31n1pxfqyg0zbfj45djkp9bx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hive";
sha256 = "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya";
name = "hive";
};
@@ -29364,7 +29489,7 @@
sha256 = "177blksgncxpxd1zi9kmbcfjnpd3ll1szjxiyc4am8a6hs1dyyqk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hiwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hiwin";
sha256 = "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g";
name = "hiwin";
};
@@ -29385,7 +29510,7 @@
sha256 = "10ps1rb5fqwaw4lz3nz2rbsry4y81asmi5557g229h8xjhp6gpnm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hl-anything";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-anything";
sha256 = "0czpc82j5hbzprc66aall72lqnk38dxgpzx4rs8sbx95cag12dxa";
name = "hl-anything";
};
@@ -29403,7 +29528,7 @@
sha256 = "170sz6hjd85cw1x0y2g81ks3x3niib4f7y2xz6k8x0dpw357ggv3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hl-defined";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-defined";
sha256 = "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx";
name = "hl-defined";
};
@@ -29424,7 +29549,7 @@
sha256 = "17apqs7yqd89mv5283kmwp7byaaimj7j0vis0z1d89jlmp8i6zbc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hl-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-indent";
sha256 = "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr";
name = "hl-indent";
};
@@ -29442,7 +29567,7 @@
sha256 = "1kxq79pfs83gp12p2g093m6shsf25q88mi29bvhapxx77ahmxpkn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hl-line+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-line+";
sha256 = "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix";
name = "hl-line-plus";
};
@@ -29463,7 +29588,7 @@
sha256 = "0pjfbm8p077frk475bx8xkygn8r4vdsvnx4rcqbjlpjawj0ndgxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hl-sentence";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-sentence";
sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs";
name = "hl-sentence";
};
@@ -29484,7 +29609,7 @@
sha256 = "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hl-sexp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-sexp";
sha256 = "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy";
name = "hl-sexp";
};
@@ -29502,7 +29627,7 @@
sha256 = "0m84d1rdsp9r5ip79jlrp69pf1daw0ch8c378q3kc328606i3p2d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hl-spotlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-spotlight";
sha256 = "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3";
name = "hl-spotlight";
};
@@ -29515,15 +29640,15 @@
hl-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hl-todo";
- version = "20160424.749";
+ version = "20160521.1029";
src = fetchFromGitHub {
owner = "tarsius";
repo = "hl-todo";
- rev = "6507868d63f3569a6f196716c38e09cf2b57d4e9";
- sha256 = "1ljakm15bsl9hv1rbg6lj0mnbc4qna5fr9rwkalnlwknjpka1bx3";
+ rev = "954ab8390b627499248986a608aacfaa6ddae4e0";
+ sha256 = "0rvkkzbcf36jbnk8adn39gmv0c8m0a189q9s235nasmbry8pjqmg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hl-todo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-todo";
sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4";
name = "hl-todo";
};
@@ -29544,7 +29669,7 @@
sha256 = "02mkfrs55d32948x739f94v35343gw6a0f7fknbcigbz56mzsvsp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hlint-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hlint-refactor";
sha256 = "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq";
name = "hlint-refactor";
};
@@ -29557,15 +29682,15 @@
hlinum = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hlinum";
- version = "20150621.2233";
+ version = "20160522.12";
src = fetchFromGitHub {
owner = "tom-tan";
repo = "hlinum-mode";
- rev = "22218c9883a2de6468bf6ad13864b50b44c93592";
- sha256 = "0yw89kxvz53i9rbq3lsbp5xkgfl1986s23vyra5pipakfv85gmq4";
+ rev = "bc92bb8344af61929ffb0cb4df9d6b30d7df80d1";
+ sha256 = "1yfq55gzg6p17qbd9xf0g9cza5bzkvl47rkjq19mf6kjxk0ihkh7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hlinum";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hlinum";
sha256 = "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv";
name = "hlinum";
};
@@ -29585,7 +29710,7 @@
sha256 = "1s3wgsgl1min2zbfr6wacb7wnff95r8kgmfzlma8b02440cmch5z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hoa-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hoa-mode";
sha256 = "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv";
name = "hoa-mode";
};
@@ -29606,7 +29731,7 @@
sha256 = "0g2r4d0ivbadqw1k8jsv0jwv8krpfahsg0qmzyi909p2yfddqk1l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hoa-pp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hoa-pp-mode";
sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla";
name = "hoa-pp-mode";
};
@@ -29627,7 +29752,7 @@
sha256 = "0yh9v5zng1j2kfjjadfkdds67jws79q52kvl2mx9s8mq28263idm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/homebrew-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/homebrew-mode";
sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj";
name = "homebrew-mode";
};
@@ -29648,7 +29773,7 @@
sha256 = "1d3dlkrv95xrpv4rv3jgn58mxs71f6vi2lr88bddhxz702vb11d8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hookify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hookify";
sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy";
name = "hookify";
};
@@ -29669,7 +29794,7 @@
sha256 = "1gm5nczq5lsxqkfb38ajffg65zwxkfqvqhk33bwnnd00rpa1ix6j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hound";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hound";
sha256 = "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v";
name = "hound";
};
@@ -29690,7 +29815,7 @@
sha256 = "0vygbdjy2dv7n50vrkcnqyswq48sgas0zzjfsac8x5g9vhxjkawj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/how-many-lines-in-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/how-many-lines-in-project";
sha256 = "1dfh1ydpjbrawqpsj6kydvy8sz3rlwn4ma5cizfw5spd2gcmj1zb";
name = "how-many-lines-in-project";
};
@@ -29711,7 +29836,7 @@
sha256 = "01sj9c8mxqaif8wh6zz9v2czjaq7vcdi66drldyjmifkln6rg2v8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/howdoi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/howdoi";
sha256 = "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b";
name = "howdoi";
};
@@ -29731,7 +29856,7 @@
sha256 = "0q9rjy8i263d6fcyj0s1l95s7vajf15i2fkbkbmhh4rp63nd04g3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/howm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/howm";
sha256 = "007r8mjn7m7m1mvsb1gaiqbizlwykh23k72g48nwan8bw556gfcr";
name = "howm";
};
@@ -29752,7 +29877,7 @@
sha256 = "17x5w5kzam8cgaphyasnqzm2yhc0hwm38azvmin7ra4h912vlisd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ht";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ht";
sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd";
name = "ht";
};
@@ -29773,7 +29898,7 @@
sha256 = "10lbxf56gvy26grzrhhx2p710fzs0h866jd2zmmgkisvyb0vaiay";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/html-check-frag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/html-check-frag";
sha256 = "0drancb9ryifiln44b40l6cal0c7nyp597a6q26288s3v909yk2a";
name = "html-check-frag";
};
@@ -29794,7 +29919,7 @@
sha256 = "0k9ga0qi6h33akip2vrpclfp4zljnbw5ax40lxyxc1813hwkdrmh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/html-script-src";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/html-script-src";
sha256 = "0pdyc2a9wxxc9rivjm2kgh4ysdxmdp73wg37nfy2nzka1m7qni7j";
name = "html-script-src";
};
@@ -29815,7 +29940,7 @@
sha256 = "09n3zm9ivln8ng80fv5vwwzh9mj355ni685axda3m85xfxgai8gi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/html-to-markdown";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/html-to-markdown";
sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv";
name = "html-to-markdown";
};
@@ -29834,7 +29959,7 @@
sha256 = "0lc2j0zifjwzab2khwmd769i5497ddx28rb96y6zv2k261xziyla";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/htmlize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/htmlize";
sha256 = "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp";
name = "htmlize";
};
@@ -29855,7 +29980,7 @@
sha256 = "1i0r677zwnl5xl64cqk47y0gfd87vw49nf6ry5v2imbc95ni56wc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/http";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/http";
sha256 = "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm";
name = "http";
};
@@ -29873,7 +29998,7 @@
sha256 = "1wp2rwc1hgd5c3yr6b96yzzakd1qmy5d95mhc6q4f6lx279nx0my";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/http-post-simple";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/http-post-simple";
sha256 = "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf";
name = "http-post-simple";
};
@@ -29894,7 +30019,7 @@
sha256 = "008iq5fhsw4qklw2l457a1cfqq8diadpnf1c1di5p07sc0za5562";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/http-twiddle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/http-twiddle";
sha256 = "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry";
name = "http-twiddle";
};
@@ -29915,7 +30040,7 @@
sha256 = "02jz8qwxl69zhwvpmlqc15znr8x4f30paqszmm7xrrrz5x1c1rn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/httpcode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/httpcode";
sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh";
name = "httpcode";
};
@@ -29936,7 +30061,7 @@
sha256 = "0wd4wmy99mx677x4sdbp57bxxll1fsnnf8hk97r85xdmmjsmrkld";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/httprepl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/httprepl";
sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh";
name = "httprepl";
};
@@ -29957,7 +30082,7 @@
sha256 = "1vy521ljn16a1lcmpj09mr9y0m15lfjhl6xk04sb7nisps3vljyl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hungry-delete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hungry-delete";
sha256 = "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz";
name = "hungry-delete";
};
@@ -29978,7 +30103,7 @@
sha256 = "0wn83n1780bvrzx9p870wln51n9rfdghsxl79dp968dxycyhyxvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hy-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hy-mode";
sha256 = "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m";
name = "hy-mode";
};
@@ -29999,7 +30124,7 @@
sha256 = "0k7r5zddlfipnf6za467lmjx8s6h68dflj7gk05vqr4n4xniwgja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hyai";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hyai";
sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s";
name = "hyai";
};
@@ -30020,7 +30145,7 @@
sha256 = "11vgz64f8vs8vqp4scj9qvrfdshag7bs615ly9zvzzlk68jivdya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hydandata-light-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hydandata-light-theme";
sha256 = "0jw43m91m10ifqg335y6d52r6ri77hcmxkird8wsyrpsnk3cfb60";
name = "hydandata-light-theme";
};
@@ -30041,7 +30166,7 @@
sha256 = "14sk9gai7sscvwgbl7y3dzz8fdhrqynilscmdimlncpm15w56m6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hyde";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hyde";
sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3";
name = "hyde";
};
@@ -30054,15 +30179,15 @@
hydra = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hydra";
- version = "20160511.452";
+ version = "20160518.1021";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "hydra";
- rev = "9c2589f9ae6c026f9b35dd469f025cef2017dbed";
- sha256 = "1px08m43gprj6k289xfbbby1zqciwrzrzl0adjnvr38k2k8r670c";
+ rev = "d2aaf869ecba10664e1fa8abd69689f941e3b8f8";
+ sha256 = "05d4h87hshfgr8wnfmdypr4a93sglk3a8z1nfvswlag8cgnvyz63";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hydra";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hydra";
sha256 = "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw";
name = "hydra";
};
@@ -30083,7 +30208,7 @@
sha256 = "17k41rah17l9kf7bvlm83x71nzz4aizgn7254cl5sb59mdhcm8pm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/i2b2-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/i2b2-mode";
sha256 = "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf";
name = "i2b2-mode";
};
@@ -30104,7 +30229,7 @@
sha256 = "1gl21li9vqfjvls4ffjw8a4bicas2c7hmaa621k3hpllgpy6qdg5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/iasm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iasm-mode";
sha256 = "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv";
name = "iasm-mode";
};
@@ -30125,7 +30250,7 @@
sha256 = "1s5qvlf310b0z7q9k1xhcf4qmyfqd37jpqd67ciahaxk7cp224rd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ibuffer-git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-git";
sha256 = "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z";
name = "ibuffer-git";
};
@@ -30146,7 +30271,7 @@
sha256 = "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ibuffer-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-projectile";
sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk";
name = "ibuffer-projectile";
};
@@ -30167,7 +30292,7 @@
sha256 = "15lapyj7qkkw1i1g1aizappm7gxkfnxhvd4fq66lghkzb76clz2m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ibuffer-rcirc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-rcirc";
sha256 = "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc";
name = "ibuffer-rcirc";
};
@@ -30188,7 +30313,7 @@
sha256 = "1mfrbr725p27p3s5nxh7xhm81pdr78ysz8l3kwrlp97bb6dmljmq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ibuffer-tramp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-tramp";
sha256 = "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32";
name = "ibuffer-tramp";
};
@@ -30209,7 +30334,7 @@
sha256 = "0fwxhkx5rkyv3w5vs2swhmly9siahlww2ipsmk7v8xmvk4a63bhp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ibuffer-vc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-vc";
sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla";
name = "ibuffer-vc";
};
@@ -30221,13 +30346,13 @@
}) {};
icicles = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "icicles";
- version = "20160328.25";
+ version = "20160521.1759";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/icicles.el";
sha256 = "1ppximw1j433hfp63apnsz9wgq1nj1lh5cd0zfchrkmgfyhymq7k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/icicles";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/icicles";
sha256 = "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92";
name = "icicles";
};
@@ -30245,7 +30370,7 @@
sha256 = "0z7v4pj0m6pwrjzyzz2xmwf6a53kmka9hxlzd1dxcpzx47pyvz3w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/icomplete+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/icomplete+";
sha256 = "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx";
name = "icomplete-plus";
};
@@ -30266,7 +30391,7 @@
sha256 = "0xd0zhbabb9cx4rsapvq6qs40w4q2cav6p16vrka54rmr98544vl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/id-manager";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/id-manager";
sha256 = "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm";
name = "id-manager";
};
@@ -30287,7 +30412,7 @@
sha256 = "1hknhbm3b5rsba2s84iwspylhzjsm91zdckz22j9gyrq37wjgyrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/idea-darkula-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idea-darkula-theme";
sha256 = "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk";
name = "idea-darkula-theme";
};
@@ -30308,7 +30433,7 @@
sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/identica-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/identica-mode";
sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q";
name = "identica-mode";
};
@@ -30329,7 +30454,7 @@
sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/idle-highlight-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idle-highlight-mode";
sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc";
name = "idle-highlight-mode";
};
@@ -30350,7 +30475,7 @@
sha256 = "0f8rxvc3dk2hi4x524l18fx73xrxy0qqwbybdma4ca67ck9n6xam";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/idle-require";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idle-require";
sha256 = "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj";
name = "idle-require";
};
@@ -30371,7 +30496,7 @@
sha256 = "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-at-point";
sha256 = "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0";
name = "ido-at-point";
};
@@ -30392,7 +30517,7 @@
sha256 = "14nmldahr0pj2x4vkzpnpx0bsxafmiihgjylk5j5linqvy8q6wk6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-clever-match";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-clever-match";
sha256 = "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m";
name = "ido-clever-match";
};
@@ -30413,7 +30538,7 @@
sha256 = "1aih8n10lcrw0bdgvlrkxzhkpxpmphw07cvbp6zd27ia25037fzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-complete-space-or-hyphen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-complete-space-or-hyphen";
sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc";
name = "ido-complete-space-or-hyphen";
};
@@ -30434,7 +30559,7 @@
sha256 = "13mcpc8qlv0mvabd33cah1zqybfa0hrzanp16ikbsc449zyz3889";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-completing-read+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-completing-read+";
sha256 = "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh";
name = "ido-completing-read-plus";
};
@@ -30455,7 +30580,7 @@
sha256 = "0055dda1la7yah33xsi19j4hcdmqp17ily2dvkipm4y6d3ww8yqa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-describe-bindings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-describe-bindings";
sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2";
name = "ido-describe-bindings";
};
@@ -30476,7 +30601,7 @@
sha256 = "1s93q47cadanynvm1y4y08s68yq0l8q8vfasdk7w39vrjsxxsj3x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-exit-target";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-exit-target";
sha256 = "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi";
name = "ido-exit-target";
};
@@ -30497,7 +30622,7 @@
sha256 = "0ifdwd5vnjv2iyb5bnz8pij35lc0ymmyx8j8zhpkbgjigz8f05ip";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-gnus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-gnus";
sha256 = "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg";
name = "ido-gnus";
};
@@ -30518,7 +30643,7 @@
sha256 = "1ip8g0r0aimhc4a1f06m711zmbs0krxn8hmayk99gk5kkz12igkb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-grid-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-grid-mode";
sha256 = "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr";
name = "ido-grid-mode";
};
@@ -30539,7 +30664,7 @@
sha256 = "01p4az128k1jvd9i1gshgg87z6048cw9cnm57l8qdlw01c3h6dkx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-hacks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-hacks";
sha256 = "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0";
name = "ido-hacks";
};
@@ -30560,7 +30685,7 @@
sha256 = "0l69sr3g1n2x61j6sv6hnbiyk8a2qra6y2kh413qp0sfpx4fzchv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-load-library";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-load-library";
sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj";
name = "ido-load-library";
};
@@ -30581,7 +30706,7 @@
sha256 = "15iajhrgy989pn91ijcd1mq2015bkaacaplm79rmb0ggxhh8vq38";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-migemo";
sha256 = "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi";
name = "ido-migemo";
};
@@ -30602,7 +30727,7 @@
sha256 = "0zlkq29wxd3a4vg0w6ds2jad5h1pja7ccd3l6ppl0kz1b1517qlr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-occasional";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-occasional";
sha256 = "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2";
name = "ido-occasional";
};
@@ -30623,7 +30748,7 @@
sha256 = "0j12li001yq08vzwh1b25qyq09llizrkgaay9k07g9pvfxlx6zb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-occur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-occur";
sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji";
name = "ido-occur";
};
@@ -30644,7 +30769,7 @@
sha256 = "0qvf3h2ljlbf3z36dhywzza62mfi6mqbrfc0sqfsbyia9bn1df4f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-select-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-select-window";
sha256 = "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23";
name = "ido-select-window";
};
@@ -30665,7 +30790,7 @@
sha256 = "149cznbybwj0gkjyvpnh4kn258kxw449m7cn95n9jbh1r45vljvy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-skk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-skk";
sha256 = "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw";
name = "ido-skk";
};
@@ -30686,7 +30811,7 @@
sha256 = "0w3cr2yf8644i0g8w6r147vi9wanibn41sg7dzws51yb9q0y92vd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-sort-mtime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-sort-mtime";
sha256 = "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2";
name = "ido-sort-mtime";
};
@@ -30707,7 +30832,7 @@
sha256 = "0p13q8xax2h3m6rddvmh1p9biw3d1shvwwmqfhg0c93xajlwdfqi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-springboard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-springboard";
sha256 = "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv";
name = "ido-springboard";
};
@@ -30728,7 +30853,7 @@
sha256 = "13mcpc8qlv0mvabd33cah1zqybfa0hrzanp16ikbsc449zyz3889";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-ubiquitous";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-ubiquitous";
sha256 = "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp";
name = "ido-ubiquitous";
};
@@ -30749,7 +30874,7 @@
sha256 = "1h0kwsrg0xaqmk37hij2ssi9vcvxq49bdc4s3amwc45x1i369q7q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-vertical-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-vertical-mode";
sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm";
name = "ido-vertical-mode";
};
@@ -30770,7 +30895,7 @@
sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-yes-or-no";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-yes-or-no";
sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana";
name = "ido-yes-or-no";
};
@@ -30791,7 +30916,7 @@
sha256 = "1vx2g1xgxpcabr49mkl6ggzrpa3k2zhm479j6262vb64swzx33jw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/idomenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idomenu";
sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h";
name = "idomenu";
};
@@ -30812,7 +30937,7 @@
sha256 = "0ngqsh0ncwcr377ifvnx5j352bf1f7lhcq7qc8avcn5pwlshri4w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/idris-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idris-mode";
sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s";
name = "idris-mode";
};
@@ -30833,7 +30958,7 @@
sha256 = "18dca47ds5fiihijd1vv7nif44n4b4nv4za2djjfqbhbvizra1fd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ids-edit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ids-edit";
sha256 = "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m";
name = "ids-edit";
};
@@ -30846,15 +30971,15 @@
iedit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "iedit";
- version = "20160515.1051";
+ version = "20160517.40";
src = fetchFromGitHub {
owner = "victorhge";
repo = "iedit";
- rev = "b2bffd978ce3405c736068c9539b2c9cc650a269";
- sha256 = "0b11r1c9ddadsvazzjm81sm30c3wbwrsg1xvjg64hncpsprjplfg";
+ rev = "4884f61a3b30c98cf9fc080aab4351e16cb6e5f4";
+ sha256 = "0wl3k7hl2gvxvzgrljwkyaxhkqqh0hi8n7yni5cl3y5z8cdafbzj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/iedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iedit";
sha256 = "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04";
name = "iedit";
};
@@ -30875,7 +31000,7 @@
sha256 = "0b86x675g95yrlc0alffx0z9fmficlwv3gpy5cy86z1xvvyh3nzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ietf-docs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ietf-docs";
sha256 = "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3";
name = "ietf-docs";
};
@@ -30896,7 +31021,7 @@
sha256 = "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/iflipb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iflipb";
sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d";
name = "iflipb";
};
@@ -30917,7 +31042,7 @@
sha256 = "1b4r4h8yrs8zkyr1hnnx2wjrmm39wbqxfhyxpjb5pxi4zk3fh4rj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ignoramus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ignoramus";
sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9";
name = "ignoramus";
};
@@ -30935,7 +31060,7 @@
sha256 = "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/igrep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/igrep";
sha256 = "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3";
name = "igrep";
};
@@ -30954,7 +31079,7 @@
sha256 = "11pss3hfxkfkyi273zfajdj43shdl6pn739zfv9jbm75v7m9bz6f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/igv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/igv";
sha256 = "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z";
name = "igv";
};
@@ -30975,7 +31100,7 @@
sha256 = "068z3ygq9p139ikm04xqhhqhc994an5isba5c7kpqs009y09xw3w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/image-archive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/image-archive";
sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp";
name = "image-archive";
};
@@ -30996,7 +31121,7 @@
sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/image-dired+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/image-dired+";
sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy";
name = "image-dired-plus";
};
@@ -31017,7 +31142,7 @@
sha256 = "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/image+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/image+";
sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg";
name = "image-plus";
};
@@ -31038,7 +31163,7 @@
sha256 = "0f3xdqhq9nprvl8bnmgrx20h08ddkfak0is29bsqwckkfgn7pmqp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/imakado";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imakado";
sha256 = "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3";
name = "imakado";
};
@@ -31059,7 +31184,7 @@
sha256 = "15lflvpapm5749qq7jzdwbd0isb89i6df3np4wn9y9gjl7y92wk7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/imapfilter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imapfilter";
sha256 = "0i893kqj6yzadhza800r6ri7fihl01r57z8yrzzh3d09qaias5vz";
name = "imapfilter";
};
@@ -31072,15 +31197,15 @@
imenu-anywhere = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "imenu-anywhere";
- version = "20160427.518";
+ version = "20160520.620";
src = fetchFromGitHub {
owner = "vspinu";
repo = "imenu-anywhere";
- rev = "938166bc02b88edd3af94dd1381755eed0b6d4e0";
- sha256 = "16r9jjl05ga016rds4v2vrir08mfz08rrphn3cmsdkpqxrzw6jhr";
+ rev = "d373d92763cb1e2cad3cfff08ab12ed6dcff4b99";
+ sha256 = "0md20p0pkk7s9fnh4a6j808iri79lq70sq30hcy97pjrafrqfkky";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/imenu-anywhere";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenu-anywhere";
sha256 = "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq";
name = "imenu-anywhere";
};
@@ -31101,7 +31226,7 @@
sha256 = "1j0p0zkk89lg5xk5qzdnj9nxxiaxhff2y9iv9lw456kvb3lsyvjk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/imenu-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenu-list";
sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s";
name = "imenu-list";
};
@@ -31119,7 +31244,7 @@
sha256 = "00w88d37mg2hdrzpw5cxrgqz5jbf7rylmir95hs8j1cm8fk787bb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/imenu+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenu+";
sha256 = "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d";
name = "imenu-plus";
};
@@ -31140,7 +31265,7 @@
sha256 = "1y57xp0w0c6hg3gn4f1l3612a18li4gwhfa4dy18fy94gr54ycpx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/imenus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenus";
sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r";
name = "imenus";
};
@@ -31161,7 +31286,7 @@
sha256 = "1q53r3f3x0hpzryxd1v1w3qgs54p384q0azi7xj2gppi1q49sa42";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/imgix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imgix";
sha256 = "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q";
name = "imgix";
};
@@ -31182,7 +31307,7 @@
sha256 = "0nzgfj083im8lc62ifgsh1pmbw0j9wivimjgih7k6ny3jgw834rs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/imgur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imgur";
sha256 = "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7";
name = "imgur";
};
@@ -31192,6 +31317,26 @@
license = lib.licenses.free;
};
}) {};
+ immortal-scratch = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "immortal-scratch";
+ version = "20160517.1718";
+ 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";
+ sha256 = "0rxhaqivvjij59hhv3mh4wwrc0bl0xv144j1i237xhlvhxk6nnn6";
+ name = "immortal-scratch";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/immortal-scratch";
+ license = lib.licenses.free;
+ };
+ }) {};
immutant-server = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "immutant-server";
@@ -31203,7 +31348,7 @@
sha256 = "0rbamm9qvipgswxng8g1d7rbdbcj7sgwrccg7imcfapwwq7xhj4h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/immutant-server";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/immutant-server";
sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i";
name = "immutant-server";
};
@@ -31224,7 +31369,7 @@
sha256 = "0vr4i3ayp1n8zg3v9rfv81qnr0vrdbkzphwd5kyadjgy4sbfjykj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/impatient-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/impatient-mode";
sha256 = "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg";
name = "impatient-mode";
};
@@ -31245,7 +31390,7 @@
sha256 = "1pv29qxiz9yqfp67fjj4mk8bqxs5y4qwcpx4kvznpfzdcwsza53j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/import-js";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/import-js";
sha256 = "0qzr4vfv3whdly73k7x621dwznca7nlhd3gpppr2w2sg12jym5ha";
name = "import-js";
};
@@ -31266,7 +31411,7 @@
sha256 = "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/import-popwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/import-popwin";
sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy";
name = "import-popwin";
};
@@ -31287,7 +31432,7 @@
sha256 = "1p54w9dwkc76nvc4m0q9a0lh4bdxp4ad1wzscadayqy8qbrylf97";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/indent-guide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/indent-guide";
sha256 = "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7";
name = "indent-guide";
};
@@ -31308,7 +31453,7 @@
sha256 = "1zsw68zzvjjh93cldc0w83k67hzcgi226vz3d0nzqc9sczqk8civ";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/indicators";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/indicators";
sha256 = "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss";
name = "indicators";
};
@@ -31329,7 +31474,7 @@
sha256 = "0kv0aj444i2rzksvcfz8sw0yyig3ca3m05agnhw9jzr01y05yl1n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/indy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/indy";
sha256 = "118n3n07h1vx576fdv6v5a94aa004q0gmy9hlsnrswpxa30ahnw7";
name = "indy";
};
@@ -31350,7 +31495,7 @@
sha256 = "1632q7zbqqs5nvvxly3b2fj9b9q9mgxwh5sspamj7442s7i0j645";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inf-clojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inf-clojure";
sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl";
name = "inf-clojure";
};
@@ -31371,7 +31516,7 @@
sha256 = "14kf3zvms1w8cbixhpgw3m2xxc2r87i57gmx00jwh89282i6kgsi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inf-mongo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inf-mongo";
sha256 = "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh";
name = "inf-mongo";
};
@@ -31392,7 +31537,7 @@
sha256 = "1z5ns94xgj2dkv2sc2ckax6bzwdxsm19pkvni24ys2w7d5nhajzr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inf-php";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inf-php";
sha256 = "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d";
name = "inf-php";
};
@@ -31413,7 +31558,7 @@
sha256 = "12qjz6bp6p6yh5nxin6w7snil9954mhd4kfnk0wwbijpd1lqw73l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inf-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inf-ruby";
sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp";
name = "inf-ruby";
};
@@ -31434,7 +31579,7 @@
sha256 = "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inflections";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inflections";
sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70";
name = "inflections";
};
@@ -31452,7 +31597,7 @@
sha256 = "068y1p44ynimxfrqgrrhrj4gldf661dr0kbc9p7dqm1mw928hxmm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/info+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/info+";
sha256 = "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr";
name = "info-plus";
};
@@ -31473,7 +31618,7 @@
sha256 = "19kc6a8jkx22rg9xp862pqfhv0an7q6fs7v7i2kxp3ji55aq001w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inform7-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inform7-mode";
sha256 = "0fpnf9rgizsfz9pn06k87v4s0dr7z1pn0gdxfi6hnnv68qni8hg3";
name = "inform7-mode";
};
@@ -31494,7 +31639,7 @@
sha256 = "1zykh80k2sy0as1rn7qaa2hyvkagcvzzmxik4jpb0apw0ha1bf6s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/init-loader";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/init-loader";
sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r";
name = "init-loader";
};
@@ -31515,7 +31660,7 @@
sha256 = "0xk7lyhd9pgahbscqwa2qkh2vgnbs5yz78am3zh930k4ig9lbmjh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/init-open-recentf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/init-open-recentf";
sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r";
name = "init-open-recentf";
};
@@ -31536,7 +31681,7 @@
sha256 = "1qvkxpxdv0n9qlzigvi25iw485824pgbpb10lwhh8bs2074dvrgq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/initsplit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/initsplit";
sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq";
name = "initsplit";
};
@@ -31557,7 +31702,7 @@
sha256 = "063v3a783si5fi8jrnysss60qma1c3whvyb48i10qbrrrx750cmv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inkpot-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inkpot-theme";
sha256 = "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7";
name = "inkpot-theme";
};
@@ -31578,7 +31723,7 @@
sha256 = "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inline-crypt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inline-crypt";
sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n";
name = "inline-crypt";
};
@@ -31599,7 +31744,7 @@
sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inlineR";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inlineR";
sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw";
name = "inlineR";
};
@@ -31620,7 +31765,7 @@
sha256 = "198pgj0xsfyp8s1kkjjp48w7j3i5cf6zsp46vdwiifj64yfmq7yi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/insert-shebang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/insert-shebang";
sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v";
name = "insert-shebang";
};
@@ -31641,7 +31786,7 @@
sha256 = "112s3c0ii8zjc6vlj2im2qd2pl3hb95pq4zibm86gjpw428wd8iy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/insfactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/insfactor";
sha256 = "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn";
name = "insfactor";
};
@@ -31661,7 +31806,7 @@
sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/instapaper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/instapaper";
sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn";
name = "instapaper";
};
@@ -31682,7 +31827,7 @@
sha256 = "0mvhydb4lfm2kazmb7fab8zh7sd8l9casghn8wl42mqji3v7lfwh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/interaction-log";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/interaction-log";
sha256 = "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j";
name = "interaction-log";
};
@@ -31695,15 +31840,15 @@
interleave = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "interleave";
- version = "20160208.537";
+ version = "20160517.1248";
src = fetchFromGitHub {
owner = "rudolfochrist";
repo = "interleave";
- rev = "6b28363eac939227c6cdc8a73a1d3ea5b002442d";
- sha256 = "1qs6j9cz152wfy54c5d1a558l0df6wxv3djlvfl2mx58wf0sk73h";
+ rev = "425d8e5e48b79bee54152f919652838d38bd401b";
+ sha256 = "06x47lfpad24arc2zyvdcdg222pyndxsc66m376rgj23s7wlr5hd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/interleave";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/interleave";
sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy";
name = "interleave";
};
@@ -31724,7 +31869,7 @@
sha256 = "1zv6m24ryls9hvla3hf8wzp6r7fzbxa1lzr1mb0wz0s292l38wjz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/interval-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/interval-list";
sha256 = "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf";
name = "interval-list";
};
@@ -31745,7 +31890,7 @@
sha256 = "0fqnn9xhrc9hkaiziafjgg288l6m05416z9kz8l5845fnqsb7pb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/interval-tree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/interval-tree";
sha256 = "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9";
name = "interval-tree";
};
@@ -31766,7 +31911,7 @@
sha256 = "10xpxmbzhmi0lmby2rpmxrbr3qf1vlbif2inmfsvkj85wyh8a7rp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/io-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/io-mode";
sha256 = "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q";
name = "io-mode";
};
@@ -31787,7 +31932,7 @@
sha256 = "1ard88kc13c57y9zdkyr012w8rdrwahz8a3fb5v6hwqymg16m20s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/io-mode-inf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/io-mode-inf";
sha256 = "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc";
name = "io-mode-inf";
};
@@ -31808,7 +31953,7 @@
sha256 = "1rz5wf19lg1lnm0h73ynhb0vl3c99k7vpipay2f8jls24pv60bra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ioccur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ioccur";
sha256 = "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6";
name = "ioccur";
};
@@ -31829,7 +31974,7 @@
sha256 = "14zfxa8fc7h4rkz1hyplwf4q2lga3l5dd7a2xq5kk0kvf2fs4mk3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/iodine-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iodine-theme";
sha256 = "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj";
name = "iodine-theme";
};
@@ -31850,7 +31995,7 @@
sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/iplayer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iplayer";
sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r";
name = "iplayer";
};
@@ -31871,7 +32016,7 @@
sha256 = "0skyd9c7pz68v17aj3h47ralszbmc4gqg552q8jpimcjd1lacc7l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ipretty";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ipretty";
sha256 = "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4";
name = "ipretty";
};
@@ -31892,7 +32037,7 @@
sha256 = "1cy9xwhswj9vahg8zr16r2crm2mm3vczqs73gc580iidasb1q1i2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ir-black-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ir-black-theme";
sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v";
name = "ir-black-theme";
};
@@ -31913,7 +32058,7 @@
sha256 = "1ch610b3d0x3nxglp749305syliivamc108rgv9if4ihb67gp8b5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/iregister";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iregister";
sha256 = "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm";
name = "iregister";
};
@@ -31931,7 +32076,7 @@
sha256 = "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/irfc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/irfc";
sha256 = "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i";
name = "irfc";
};
@@ -31952,7 +32097,7 @@
sha256 = "0i9f22njz02y7p4869sxkz1bsxvcf37y00gc3bkvkvyc5p4wzdyg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/irony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/irony";
sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a";
name = "irony";
};
@@ -31973,7 +32118,7 @@
sha256 = "01fjpfixfcca01a5fnnpd2wga4j30p0kwhbai25prvib4qcp1kqn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/irony-eldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/irony-eldoc";
sha256 = "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6";
name = "irony-eldoc";
};
@@ -31994,7 +32139,7 @@
sha256 = "17d0816awadvsw1qc7r0p6ira75jmgxaj9hsk9ypayxsaf6ynyrb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/isearch-dabbrev";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isearch-dabbrev";
sha256 = "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x";
name = "isearch-dabbrev";
};
@@ -32012,7 +32157,7 @@
sha256 = "00m4kh2j4a2rqlagz4b5wdhnrk266whbncwkjbxx0rlxzvsi5skh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/isearch+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isearch+";
sha256 = "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r";
name = "isearch-plus";
};
@@ -32030,7 +32175,7 @@
sha256 = "1i1ypganr2ivwgi0vgjihgk1s4yglwj8nbqnqjiiwdywf8g5hcmr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/isearch-prop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isearch-prop";
sha256 = "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9";
name = "isearch-prop";
};
@@ -32051,7 +32196,7 @@
sha256 = "09z49850c32x0rchxg203cxg504xi2b6cjgnd0i4axcs5fmq7gv9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/isearch-symbol-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isearch-symbol-at-point";
sha256 = "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8";
name = "isearch-symbol-at-point";
};
@@ -32072,7 +32217,7 @@
sha256 = "022j39r2vvppnh3p5rp9i4cgc3lg24ksjcmcjmbmna1vf624izn0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/isend-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isend-mode";
sha256 = "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv";
name = "isend-mode";
};
@@ -32093,7 +32238,7 @@
sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/isgd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isgd";
sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi";
name = "isgd";
};
@@ -32114,7 +32259,7 @@
sha256 = "0992lzgar0kz9i1sk5vz17q9qzfgl8fkyxa1q0hmhgnpjf503cnj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/iss-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iss-mode";
sha256 = "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc";
name = "iss-mode";
};
@@ -32135,7 +32280,7 @@
sha256 = "1az986mk8j8hyvr1mi9hirixwcd73jcqkjsw4xy34vjbwxi122r9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/itail";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/itail";
sha256 = "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7";
name = "itail";
};
@@ -32156,7 +32301,7 @@
sha256 = "1174f75p3rkq812gl2rs1x51nqbz4fqxwsbrd7djh1vkd2zii3aw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/itasca";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/itasca";
sha256 = "01075ad0sb5q7aql6j5wmjdk2qhdgbbm5xb0ikrnl7rzc1afvv6j";
name = "itasca";
};
@@ -32177,7 +32322,7 @@
sha256 = "006lw8zjxz0702wlrs0nb0ijwh5air3yc3cam7dbkyy7mh632vhi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/iterator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iterator";
sha256 = "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z";
name = "iterator";
};
@@ -32198,7 +32343,7 @@
sha256 = "12nqpzcmz724wpk8p16lc3z26rxma3wp6pf6dvrsqagnlixrs9si";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ivariants";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivariants";
sha256 = "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw";
name = "ivariants";
};
@@ -32219,7 +32364,7 @@
sha256 = "1926pyfsbr6j7cn3diq8ibs0db94rgsf0aifvbqrqp4grs85pkva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ivs-edit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivs-edit";
sha256 = "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2";
name = "ivs-edit";
};
@@ -32232,16 +32377,16 @@
ivy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ivy";
- version = "20160516.330";
+ version = "20160522.306";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "c20867b7468643fe2cd4894b5fc80f6cdfc4932f";
- sha256 = "09lag11n2vw4bbs9clndrp5nbyy7dzr4vp3vfy58i3j90nxvrzfm";
+ rev = "12145d74ebd884ce5b674be71df8ac69b59e7d04";
+ sha256 = "0xzskxyj9w01w1kjy1y5igcirinhr3y6rqfj32g1f1xkn0f91sg5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ivy";
- sha256 = "1y1izabz2gx2f26ayrfg0094ygb1n5val0ng226p3pfxgj07wfss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy";
+ sha256 = "0xf5p91r2ljl93wbr5wbgnb4hzhs00wkaf4fmdlf31la8xwwp5ci";
name = "ivy";
};
packageRequires = [ emacs ];
@@ -32261,7 +32406,7 @@
sha256 = "1zrs1gk95mna1kipgrq8mfhk0gqimvsb4b583f900fh86019nn1l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ivy-bibtex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy-bibtex";
sha256 = "0qni48s09lgzqr98r49dhrzpfqp9yfwga11h7vhqclscjvlalpc2";
name = "ivy-bibtex";
};
@@ -32271,6 +32416,48 @@
license = lib.licenses.free;
};
}) {};
+ ivy-gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, gitlab, ivy, lib, melpaBuild, s }:
+ melpaBuild {
+ pname = "ivy-gitlab";
+ version = "20160519.612";
+ src = fetchFromGitHub {
+ owner = "nlamirault";
+ repo = "emacs-gitlab";
+ rev = "a1c1441ff5ffb290e695eb9ac05431e9385578f4";
+ sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy-gitlab";
+ sha256 = "0gbwsmb6my0327f9j96s20mybnjaw9yaiwhs3sy3vav0qww91z1y";
+ name = "ivy-gitlab";
+ };
+ packageRequires = [ dash gitlab ivy s ];
+ meta = {
+ homepage = "https://melpa.org/#/ivy-gitlab";
+ license = lib.licenses.free;
+ };
+ }) {};
+ ivy-hydra = callPackage ({ emacs, fetchFromGitHub, fetchurl, hydra, ivy, lib, melpaBuild }:
+ melpaBuild {
+ pname = "ivy-hydra";
+ version = "20160517.1649";
+ src = fetchFromGitHub {
+ owner = "abo-abo";
+ repo = "swiper";
+ rev = "12145d74ebd884ce5b674be71df8ac69b59e7d04";
+ sha256 = "0xzskxyj9w01w1kjy1y5igcirinhr3y6rqfj32g1f1xkn0f91sg5";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy-hydra";
+ sha256 = "1xv8nfi6dzhx868h44ydq4f5jmsa7rbqfa7jk8g0z0ifv477hrvx";
+ name = "ivy-hydra";
+ };
+ packageRequires = [ emacs hydra ivy ];
+ meta = {
+ homepage = "https://melpa.org/#/ivy-hydra";
+ license = lib.licenses.free;
+ };
+ }) {};
ix = callPackage ({ fetchFromGitHub, fetchurl, grapnel, lib, melpaBuild }:
melpaBuild {
pname = "ix";
@@ -32282,7 +32469,7 @@
sha256 = "069alh9vs6is3hvbwxbwr9g8qq9md5c92wg5bfswi99yciqdvc4i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ix";
sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3";
name = "ix";
};
@@ -32303,7 +32490,7 @@
sha256 = "0bcm3y3qvsrk7gd23xfzz5bgcnm3h4l63w9hv8cr9n86sm8475m1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/iy-go-to-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iy-go-to-char";
sha256 = "10szn9y7gl8947p3f9w6p6vzjf1a9cjif9mbj3qdqx4vbsl9mqpz";
name = "iy-go-to-char";
};
@@ -32324,7 +32511,7 @@
sha256 = "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/j-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/j-mode";
sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i";
name = "j-mode";
};
@@ -32344,7 +32531,7 @@
sha256 = "138mj06dd057nw617n5lanzg3q8y0iyq4c7cc3378a3sj4nmqkcr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jabber";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jabber";
sha256 = "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8";
name = "jabber";
};
@@ -32365,7 +32552,7 @@
sha256 = "0yv86nadp6dfzl05vhk8c1kahg2pcrhfmd3mnfjrngp7ksac5lyf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jabber-otr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jabber-otr";
sha256 = "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0";
name = "jabber-otr";
};
@@ -32385,7 +32572,7 @@
sha256 = "1a33z07m9rh42pbcjv7sd640gf6jjzs4yn6idx52g8i5vzns0dkh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jack-connect";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jack-connect";
sha256 = "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q";
name = "jack-connect";
};
@@ -32398,15 +32585,15 @@
jade-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jade-mode";
- version = "20150801.1244";
+ version = "20160520.935";
src = fetchFromGitHub {
owner = "brianc";
repo = "jade-mode";
- rev = "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb";
- sha256 = "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506";
+ rev = "fd48e74686679633d8eba4d1029092b667be498e";
+ sha256 = "0rif2ln4kif1fg71pb9r6xqb12llrais5qcm7g7bcn5sw1gr3rhh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jade-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jade-mode";
sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94";
name = "jade-mode";
};
@@ -32427,7 +32614,7 @@
sha256 = "1gnj8vmpxds2wdkz49swiby5vq2hvbf64q5hhvwymfdvwlk54v55";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jammer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jammer";
sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z";
name = "jammer";
};
@@ -32448,7 +32635,7 @@
sha256 = "1mwm9wpnxqq3nw7fl0jf40a92ha51yd95vvr58zllhbxdpy3q9pv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/japanese-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/japanese-holidays";
sha256 = "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9";
name = "japanese-holidays";
};
@@ -32469,7 +32656,7 @@
sha256 = "1lrsm282lhp7pf0gwr3aad2228lvpqnqs1qdv2xk0zljqnqc0bhx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/japanlaw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/japanlaw";
sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa";
name = "japanlaw";
};
@@ -32490,7 +32677,7 @@
sha256 = "0xmv7gw5xms6nhjcl51cw33yvjgw0c6bpnlyca3195x7g34sg1zj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jape-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jape-mode";
sha256 = "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly";
name = "jape-mode";
};
@@ -32511,7 +32698,7 @@
sha256 = "1p7w3hq2cyn1245q0zn8m7hpjs8nbp7kqfmd2gzi2k209czipy21";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jar-manifest-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jar-manifest-mode";
sha256 = "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd";
name = "jar-manifest-mode";
};
@@ -32532,7 +32719,7 @@
sha256 = "1zcrxijcwqfs6r1cd6w4jq8g3ly0a69nf0cbx93w5v86x2kjpz0l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jasminejs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jasminejs-mode";
sha256 = "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52";
name = "jasminejs-mode";
};
@@ -32553,7 +32740,7 @@
sha256 = "1bv0al89wlwdv3bhasxnwhsv84phgnixclgrh4l52385rjn8v53f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jaunte";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jaunte";
sha256 = "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf";
name = "jaunte";
};
@@ -32574,7 +32761,7 @@
sha256 = "1wk9i43b147bjcvhq27vcqxi6y1yl6w3n4i2sw3krk4vxcm1mwnm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/java-imports";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/java-imports";
sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98";
name = "java-imports";
};
@@ -32595,7 +32782,7 @@
sha256 = "0w67vjpazbrgd9j5xzsrj3m45iw6lyqkgxx1ap5afvgyn5hqhkih";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/java-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/java-snippets";
sha256 = "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp";
name = "java-snippets";
};
@@ -32616,7 +32803,7 @@
sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/javadoc-lookup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/javadoc-lookup";
sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79";
name = "javadoc-lookup";
};
@@ -32637,7 +32824,7 @@
sha256 = "070r4mg4v937n4h2bmzdbn3vsmmq7ijz69nankqs761jxv5gcwlg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/javap-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/javap-mode";
sha256 = "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay";
name = "javap-mode";
};
@@ -32658,7 +32845,7 @@
sha256 = "1430xwd86fdlv1gzkdlp9a0x3w4blbplw24z0m7y8b0j9rhl4fka";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jaword";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jaword";
sha256 = "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d";
name = "jaword";
};
@@ -32679,7 +32866,7 @@
sha256 = "0dikmd1w6jh152hvawgvzlpv87xqnf669a8x427rbshnbj2bly64";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jazz-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jazz-theme";
sha256 = "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g";
name = "jazz-theme";
};
@@ -32700,7 +32887,7 @@
sha256 = "1gns0y05kyxl2fcyiawgdx2hi0vslz97kvirbckg19id50cv9ac1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jbeans-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jbeans-theme";
sha256 = "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl";
name = "jbeans-theme";
};
@@ -32721,7 +32908,7 @@
sha256 = "01dcxf47qlp089sf3b23kzaad7zrxzgcxf4s2awcj69ips8zkbik";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jdee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jdee";
sha256 = "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3";
name = "jdee";
};
@@ -32742,7 +32929,7 @@
sha256 = "1xkzf7p3ws5s5i8aymz60c4vhifchj68595878nc3yrk5zzlhyjr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jedi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jedi";
sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4";
name = "jedi";
};
@@ -32763,7 +32950,7 @@
sha256 = "1xkzf7p3ws5s5i8aymz60c4vhifchj68595878nc3yrk5zzlhyjr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jedi-core";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jedi-core";
sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f";
name = "jedi-core";
};
@@ -32784,7 +32971,7 @@
sha256 = "1pgi5vnwz5agrpvy7nwg3gv2nfbbmimhk8dxkg81k6yf1iiqxcap";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jedi-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jedi-direx";
sha256 = "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1";
name = "jedi-direx";
};
@@ -32805,7 +32992,7 @@
sha256 = "0rx72rid7922mhw21j85kxmx0fhpkmkv9jvxmj9izy01xnjbk00c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jekyll-modes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jekyll-modes";
sha256 = "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si";
name = "jekyll-modes";
};
@@ -32826,7 +33013,7 @@
sha256 = "08ywfmsjv3vjqy95hx095kasy8knh3asl7mrlkgmv9wjwnxw45zs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jenkins";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jenkins";
sha256 = "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s";
name = "jenkins";
};
@@ -32847,7 +33034,7 @@
sha256 = "0jayhv8j7b527dimhvcs0d7ax25x7v50dk0k6apisqc23psvkq66";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jenkins-watch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jenkins-watch";
sha256 = "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m";
name = "jenkins-watch";
};
@@ -32868,7 +33055,7 @@
sha256 = "164wm83av3p2c9dkhpmqrb7plq9ngmnsa5aly3a1xam1cds22hp4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jg-quicknav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jg-quicknav";
sha256 = "1pxyv1nbnqb0s177kczy6b6q4l8d2r52xqhx2rdb0wxdmp6m5x9c";
name = "jg-quicknav";
};
@@ -32889,7 +33076,7 @@
sha256 = "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jinja2-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jinja2-mode";
sha256 = "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx";
name = "jinja2-mode";
};
@@ -32907,7 +33094,7 @@
sha256 = "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jira";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jira";
sha256 = "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6";
name = "jira";
};
@@ -32928,7 +33115,7 @@
sha256 = "1ack7dmapva3wc2gm22prd5wd3cmq19sl4xl9f04a3nk2msr6ksx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jira-markup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jira-markup-mode";
sha256 = "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp";
name = "jira-markup-mode";
};
@@ -32949,7 +33136,7 @@
sha256 = "0mh7990zqrprsa1g9jzpqm666pynlqd2nh9z236zyzykf8d8il8c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jist";
sha256 = "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar";
name = "jist";
};
@@ -32970,7 +33157,7 @@
sha256 = "1idby2rjkslw85593qd4zy6an9zz71yzwqc6rck57r54xyfs8mij";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jknav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jknav";
sha256 = "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089";
name = "jknav";
};
@@ -32991,7 +33178,7 @@
sha256 = "1a0091r1xs3fpvg1wynh53xibdsiaf2khz1gp6s8dc45z8r0bclx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jonprl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jonprl-mode";
sha256 = "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z";
name = "jonprl-mode";
};
@@ -33012,7 +33199,7 @@
sha256 = "08wffbljnaxz2sh72vsqpq1lc47mnh4d47fl71dvw4pqs50zp8v0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jq-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jq-mode";
sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin";
name = "jq-mode";
};
@@ -33033,7 +33220,7 @@
sha256 = "0gh2bgmsbi9lby89ssvl49kpz07jqrfnyg47g6b9xmf5rw42s1z9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jquery-doc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jquery-doc";
sha256 = "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj";
name = "jquery-doc";
};
@@ -33054,7 +33241,7 @@
sha256 = "1f1zad423q5adycbbh62094m622gl8ncwbr8vxad1a6zcga70cgi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/js-comint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js-comint";
sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1";
name = "js-comint";
};
@@ -33075,7 +33262,7 @@
sha256 = "12kwjkhw5x6jb79m49gbypb6br482bpi73788h71lgl5i3g95s5q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/js-doc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js-doc";
sha256 = "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk";
name = "js-doc";
};
@@ -33096,7 +33283,7 @@
sha256 = "0105vx7bc681q9v2x6wj2r63pwp7g0cjjgpg7k4r852zmndfbzsc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/js2-closure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-closure";
sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7";
name = "js2-closure";
};
@@ -33117,7 +33304,7 @@
sha256 = "1gad5a18m3jfhnklsj0ka3p2wbihh1yvpcn7mwlmm7cjjxcaly9g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/js2-highlight-vars";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-highlight-vars";
sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475";
name = "js2-highlight-vars";
};
@@ -33138,7 +33325,7 @@
sha256 = "1gh18j5492mgnq77c5zzhwa8i8qnh6q2x7p5775x3z2hwaq6c31b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/js2-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-mode";
sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv";
name = "js2-mode";
};
@@ -33159,7 +33346,7 @@
sha256 = "0lksky7b2qfd4lvgpbanhcpr6i2prm9nd6gc3rja0axv51p03y9a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/js2-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-refactor";
sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r";
name = "js2-refactor";
};
@@ -33180,7 +33367,7 @@
sha256 = "18c0s3i21b77pi5y86zi7jg9pwxc0h5dzznjiyrig0jab0cksln5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/js3-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js3-mode";
sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r";
name = "js3-mode";
};
@@ -33201,7 +33388,7 @@
sha256 = "1bqsv2drhcs8ia7nxss33f80p2mhcl4mr1nalphzw6s1f4mq2sgy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jscs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jscs";
sha256 = "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv";
name = "jscs";
};
@@ -33222,7 +33409,7 @@
sha256 = "0h9gx5cl3lashk0n8pv9yzb0mm8dyziddfbwfqfm70638p93ylhc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jsfmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jsfmt";
sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd";
name = "jsfmt";
};
@@ -33243,7 +33430,7 @@
sha256 = "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/json-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-mode";
sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70";
name = "json-mode";
};
@@ -33264,7 +33451,7 @@
sha256 = "05bjyw0hkpiyfadsx3giawykbj4qinfr1ilzd0xvx8akzq2ipq0y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/json-reformat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-reformat";
sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na";
name = "json-reformat";
};
@@ -33285,7 +33472,7 @@
sha256 = "0cbqhijv2zv9mhnjxadr2kbz5b6jcvciwmza22jkwds0nkn2snmp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/json-rpc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-rpc";
sha256 = "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k";
name = "json-rpc";
};
@@ -33306,7 +33493,7 @@
sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/json-snatcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-snatcher";
sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4";
name = "json-snatcher";
};
@@ -33327,7 +33514,7 @@
sha256 = "07yd7sxb5f2mbm2nva7b2nwyxxkmsi2rdd5qig0bq1b2mf3g5l83";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jss";
sha256 = "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k";
name = "jss";
};
@@ -33348,7 +33535,7 @@
sha256 = "16jgmabcqrjb3v9c6q711jqn9dna88bmzm4880mdry69ixwcydxy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jst";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jst";
sha256 = "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i";
name = "jst";
};
@@ -33369,7 +33556,7 @@
sha256 = "1g648r0wrd8m5ggl5jrplmj7jmr68bh2ykyii5wv30zfba97r1sh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jsx-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jsx-mode";
sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b";
name = "jsx-mode";
};
@@ -33388,7 +33575,7 @@
sha256 = "03w5y9c1109kpsn6xnxdaz3maiwbvxywqshc1l5wngfc85jwiv8y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jtags";
sha256 = "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r";
name = "jtags";
};
@@ -33398,18 +33585,39 @@
license = lib.licenses.free;
};
}) {};
+ judge-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "judge-indent";
+ version = "20160520.734";
+ src = fetchFromGitHub {
+ owner = "yascentur";
+ repo = "judge-indent-el";
+ rev = "1a95ea5cdc8d1ae55f06f822be34fac365d68e5d";
+ sha256 = "1p32w1xbhbs7cfs3fdkik0437pmja8h8skl1hd4qsrq2bbf2pff9";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/judge-indent";
+ sha256 = "1gakdhnlxfq8knnykqdw4bizb5y67m8xhi07zannd7bsfwi4k6rh";
+ name = "judge-indent";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/judge-indent";
+ license = lib.licenses.free;
+ };
+ }) {};
julia-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "julia-mode";
- version = "20160407.1601";
+ version = "20160517.1343";
src = fetchFromGitHub {
owner = "JuliaLang";
repo = "julia-emacs";
- rev = "4f72dfa5af900212299133170ddefb45ebfafef4";
- sha256 = "0b6fk40yhzi2iy75gpi7fx3qa6zhr83wgvkmcn140i74f92wc1yk";
+ rev = "2d860b18582e6423de271500530a390469f93294";
+ sha256 = "1394z087h07zw86xzi4kr87j0yn3v3r7pzjbnf3hgivjmz2w48bj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/julia-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/julia-mode";
sha256 = "0m49v67fs5yq0q3lwkcfmrzsjdzi1qrkfjyvjcdwnfmp29w14kq6";
name = "julia-mode";
};
@@ -33430,7 +33638,7 @@
sha256 = "056pyq31fq86fskwhqny8n6jzavgcjv979kkg9hwbz7h90zvf9q4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/julia-shell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/julia-shell";
sha256 = "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410";
name = "julia-shell";
};
@@ -33451,7 +33659,7 @@
sha256 = "1f0kai4cz3r25fqlnryyvnyf80cf57xa655dvv1rx8si3xd20x4j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jumblr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jumblr";
sha256 = "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp";
name = "jumblr";
};
@@ -33472,7 +33680,7 @@
sha256 = "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jump";
sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364";
name = "jump";
};
@@ -33493,7 +33701,7 @@
sha256 = "1dgghswf6s7h6h04mhfnsh2m0ld8qqk70l0dq3cxhdjzqx16vnms";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jump-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jump-char";
sha256 = "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n";
name = "jump-char";
};
@@ -33514,7 +33722,7 @@
sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jump-to-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jump-to-line";
sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr";
name = "jump-to-line";
};
@@ -33535,7 +33743,7 @@
sha256 = "0ykzvy8034mchq6ffyi7vqnwyrj6gnqqgn39ki81pv97qh8hh8yl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jumplist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jumplist";
sha256 = "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf";
name = "jumplist";
};
@@ -33556,7 +33764,7 @@
sha256 = "0k91cdjlpil8npc4d3zsgx2gk41crl7qgm9r85khcgxs59kmkniw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jvm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jvm-mode";
sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w";
name = "jvm-mode";
};
@@ -33577,7 +33785,7 @@
sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kaesar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaesar";
sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l";
name = "kaesar";
};
@@ -33598,7 +33806,7 @@
sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kaesar-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaesar-file";
sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc";
name = "kaesar-file";
};
@@ -33619,7 +33827,7 @@
sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kaesar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaesar-mode";
sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry";
name = "kaesar-mode";
};
@@ -33640,7 +33848,7 @@
sha256 = "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kakapo-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kakapo-mode";
sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss";
name = "kakapo-mode";
};
@@ -33659,7 +33867,7 @@
sha256 = "14g0f51jig8b1y6zfaw7b1cp692lddqzkc0ngf4y89sw9gbmsh3w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kanban";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kanban";
sha256 = "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb";
name = "kanban";
};
@@ -33680,7 +33888,7 @@
sha256 = "0rxf44kszxazkpjmccz3wnks7si3g8vsfi2lamwynmksk8sw5d7g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kanji-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kanji-mode";
sha256 = "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5";
name = "kanji-mode";
};
@@ -33701,7 +33909,7 @@
sha256 = "0vqjbv3pqlbyibqylfsqqjzkvjhdg01hlxszfblpg72fziyzcci5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kaomoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaomoji";
sha256 = "1p61pbqf2lnwr6ryxxc4jkd5bmlgknrc27lg89h3b4pw7k39cqy1";
name = "kaomoji";
};
@@ -33722,7 +33930,7 @@
sha256 = "12v242kfcx849j8w95v2g7djh9xqbx8n033iaxyavfxnz0pp7zdl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/karma";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/karma";
sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc";
name = "karma";
};
@@ -33743,7 +33951,7 @@
sha256 = "1kkzs7nrcr74qn1m456vaj52a9j3ah4biakimz06hls415l56yk9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kerl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kerl";
sha256 = "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss";
name = "kerl";
};
@@ -33761,7 +33969,7 @@
sha256 = "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/key-chord";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-chord";
sha256 = "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an";
name = "key-chord";
};
@@ -33782,7 +33990,7 @@
sha256 = "1is7s50lgn77lxxwgakiaywx6jqdfg8045d18m4zn3ilxg6k8ljf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/key-combo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-combo";
sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf";
name = "key-combo";
};
@@ -33803,7 +34011,7 @@
sha256 = "143nfs8pgi5yy3mjq7nirffplk4vb8kik4q7zypynh2pddip30a4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/key-intercept";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-intercept";
sha256 = "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16";
name = "key-intercept";
};
@@ -33824,7 +34032,7 @@
sha256 = "14xk0crl25alcckkcg0wx7gwb65hmicfn01db1zip8swk249g9w3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/key-leap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-leap";
sha256 = "0z1fhpf8g0c4rh3bf8dfmdgyhj5w686kavjr214czaga0x7mwlwj";
name = "key-leap";
};
@@ -33845,7 +34053,7 @@
sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/key-seq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-seq";
sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74";
name = "key-seq";
};
@@ -33866,7 +34074,7 @@
sha256 = "0xgm80dbg45bs3k8psd3pv49z1xbvzm156xs55gmxdzbgxbzpazr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/keychain-environment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keychain-environment";
sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v";
name = "keychain-environment";
};
@@ -33887,7 +34095,7 @@
sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/keydef";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keydef";
sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992";
name = "keydef";
};
@@ -33908,7 +34116,7 @@
sha256 = "1dhdk4f6q340n0r9n8jld2n2fykp7m40x23n7sw4wpm8g151gxin";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/keyfreq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keyfreq";
sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7";
name = "keyfreq";
};
@@ -33929,7 +34137,7 @@
sha256 = "1c4qqfq7c1d31v9ap7fgq019l5vds7jzqq9c2dp4gj7j00d9vvlx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/keymap-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keymap-utils";
sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9";
name = "keymap-utils";
};
@@ -33950,7 +34158,7 @@
sha256 = "0cm6naqlwk65xy9lwnn5r7m6nc1l7ims2ckydmyzny5ak8y5jbws";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/keyset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keyset";
sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg";
name = "keyset";
};
@@ -33963,15 +34171,15 @@
keyword-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "keyword-search";
- version = "20160415.541";
+ version = "20160519.455";
src = fetchFromGitHub {
owner = "keyword-search";
repo = "keyword-search";
- rev = "8a529ebe3ff43a5b21c5fe05a2afd530e52a8dea";
- sha256 = "0li7x72ppxjh111njkkrc00lvsfm14h784m6yh3cvgsbx02lywbq";
+ rev = "616ae4bdb1a22114127bc2c0b155657c3d1b01ed";
+ sha256 = "0qvjiqgfylqi92y2yxa8cswmjqbak90jr4s0wblam6bi119yhq5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/keyword-search";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keyword-search";
sha256 = "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa";
name = "keyword-search";
};
@@ -33992,7 +34200,7 @@
sha256 = "0xq835xzywks4b4kaz5i0pp759i23kibs5gkvvxasw0dncqh7j5c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kfg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kfg";
sha256 = "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs";
name = "kfg";
};
@@ -34013,7 +34221,7 @@
sha256 = "0s2hb2lvfmcvm3n1fg4biaafc1p7j7w990d7w15gicaw6rr2j4nr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kibit-helper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kibit-helper";
sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s";
name = "kibit-helper";
};
@@ -34034,7 +34242,7 @@
sha256 = "0a2jmk4wryngs56rqh6sxiyk5yh25l2qvping86yipic2wia17n8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kill-or-bury-alive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kill-or-bury-alive";
sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8";
name = "kill-or-bury-alive";
};
@@ -34055,7 +34263,7 @@
sha256 = "0yrc09k64rv5is4wvss938mkj2pkvbr98lr3ahsi7p0aqn7s444v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kill-ring-search";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kill-ring-search";
sha256 = "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan";
name = "kill-ring-search";
};
@@ -34076,7 +34284,7 @@
sha256 = "05rbh5hkj3jsn9pw0qa4d5a5pi6367vdqkijcn9k14fdfbmyd30x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/killer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/killer";
sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma";
name = "killer";
};
@@ -34097,7 +34305,7 @@
sha256 = "1cr4i66lws6yhyxmyx5jw6d5x7i75435mafkkych4nfa0mv4vicd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kite";
sha256 = "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m";
name = "kite";
};
@@ -34118,7 +34326,7 @@
sha256 = "0ralsdjzj09g6nsa04jvyyzr6cgsi0d7gi1ji77f52m31dl0b8cw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kite-mini";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kite-mini";
sha256 = "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh";
name = "kite-mini";
};
@@ -34135,11 +34343,11 @@
src = fetchFromGitHub {
owner = "kivy";
repo = "kivy";
- rev = "318fb6b23516c2ef7bc23ec4f2241add552af314";
- sha256 = "1mh5nhx6bi5ra0954xcyijbd5dghdbdw3ifwgdbyf233sdls7nv1";
+ rev = "206cc763de49e2be5cf8113da1b5f7f4f36930f8";
+ sha256 = "17kvn611aiiqlqz5lym8npms4j3j0pqz1d8lmqxz2qsdsismagq3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kivy-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kivy-mode";
sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1";
name = "kivy-mode";
};
@@ -34160,7 +34368,7 @@
sha256 = "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kixtart-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kixtart-mode";
sha256 = "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp";
name = "kixtart-mode";
};
@@ -34181,7 +34389,7 @@
sha256 = "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/know-your-http-well";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/know-your-http-well";
sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q";
name = "know-your-http-well";
};
@@ -34202,7 +34410,7 @@
sha256 = "0yr4yxwxgxp5pm9f8gaqlikxp26inv01inq0ya42dzam5yphkafw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kolon-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kolon-mode";
sha256 = "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3";
name = "kolon-mode";
};
@@ -34223,7 +34431,7 @@
sha256 = "1bh2zpprh2zwhfgdw131lm0j7zm0hmnb0zqcahps104xna9s5x60";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kooten-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kooten-theme";
sha256 = "1kkk8nl1xykc4c487icmjrc2xsv8i4s2r5h5gbcpyrk2myqi4179";
name = "kooten-theme";
};
@@ -34244,7 +34452,7 @@
sha256 = "0hbzr5x9ykzrbwzfsf6rc4pbiw9m59ny3cgcx26nbi6ijbjl2fxj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kpm-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kpm-list";
sha256 = "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0";
name = "kpm-list";
};
@@ -34265,7 +34473,7 @@
sha256 = "11axxmhdpwgrcyjz200pf5bqzjw9wz4085r8p1n2vr5gx98374fr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kroman";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kroman";
sha256 = "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7";
name = "kroman";
};
@@ -34278,15 +34486,15 @@
ksp-cfg-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ksp-cfg-mode";
- version = "20160511.1112";
+ version = "20160521.1633";
src = fetchFromGitHub {
owner = "lashtear";
repo = "ksp-cfg-mode";
- rev = "0069a0bc12f8e23d50b0cee82dab4c68d80096fe";
- sha256 = "163v6bdxx6vx9m0yj7w0wln5z5w5h42jrzvyd8bljmp91gbcka8i";
+ rev = "07a957512e66030e1b9f8ac0f259051386acb5b5";
+ sha256 = "1kbmlhfxbp704mky8v69lzqd20bbnqijfnv110yigsy3kxi7hdrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ksp-cfg-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ksp-cfg-mode";
sha256 = "0azcn4qvziacbw1qy33fwdaldw7xpzr672vzjsqhr0b2vg9m2ipi";
name = "ksp-cfg-mode";
};
@@ -34307,7 +34515,7 @@
sha256 = "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kurecolor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kurecolor";
sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f";
name = "kurecolor";
};
@@ -34328,7 +34536,7 @@
sha256 = "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kv";
sha256 = "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb";
name = "kv";
};
@@ -34349,7 +34557,7 @@
sha256 = "0irbfgip493hyh45msnb7climgfwr8f05nvc97bzaqggnay88scy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kwin";
sha256 = "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki";
name = "kwin";
};
@@ -34362,15 +34570,15 @@
labburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "labburn-theme";
- version = "20160411.421";
+ version = "20160519.436";
src = fetchFromGitHub {
owner = "ksjogo";
repo = "labburn-theme";
- rev = "24e2cd2385cf7026512b0bd58dcb2c3442bfb8dd";
- sha256 = "0ldjkwfxac3lkfl5r1qgbjf74yc6k2b7f5imgcina34vd3jk0s3h";
+ rev = "2e54e5d7fdb0ec5a728e40ccddaae523dad502a6";
+ sha256 = "14v7w85mkbdymz8nsl1phdpn3agpr47f2qang1wp7syzsbsfcjd4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/labburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/labburn-theme";
sha256 = "09qqb62hfga88zka0pc27rc8i43cxi84cv1x8wj0vvzx6mvic1lm";
name = "labburn-theme";
};
@@ -34388,7 +34596,7 @@
sha256 = "01vs0v17l76zwyrblf9c6x0xg5fagd4qv8pr1fwfw7kl64hb9aa2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lacarte";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lacarte";
sha256 = "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9";
name = "lacarte";
};
@@ -34409,7 +34617,7 @@
sha256 = "135k7inkvdz51j7al3nndaamrkyn989vlv1mxcp8lwx8cgq0rqfj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lang-refactor-perl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lang-refactor-perl";
sha256 = "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9";
name = "lang-refactor-perl";
};
@@ -34430,7 +34638,7 @@
sha256 = "0svci7xs4iysv8ysf93g382arip0xpgi0fllw8xx2vrd70sz7lff";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/langdoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/langdoc";
sha256 = "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7";
name = "langdoc";
};
@@ -34451,7 +34659,7 @@
sha256 = "1rj0j4vxfwss0w6bwh591w5mbyzjg5rkbwyjaphyi6p7wq5w6np1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/langtool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/langtool";
sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw";
name = "langtool";
};
@@ -34472,7 +34680,7 @@
sha256 = "1cqbdgk3sd0xbw76qrhlild9dvgds3vgldq0rcl200kh7y8l6g4k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/latest-clojure-libraries";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latest-clojure-libraries";
sha256 = "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5";
name = "latest-clojure-libraries";
};
@@ -34493,7 +34701,7 @@
sha256 = "07aavdr1dlw8hca27l8a0i8cs5ga1wqqdf1v1iyvjz61vygld77a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/latex-extra";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-extra";
sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj";
name = "latex-extra";
};
@@ -34514,7 +34722,7 @@
sha256 = "0cxmvadkiqhvhmvmx3vvwxasw7wll8abhviss7wgizwqf4i2p3v4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/latex-math-preview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-math-preview";
sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr";
name = "latex-math-preview";
};
@@ -34534,7 +34742,7 @@
sha256 = "0h9hncf2ghfkd3i3342ajj1niykhfr0aais3j6sjg1vkm16xbr3b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/latex-pretty-symbols";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-pretty-symbols";
sha256 = "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl";
name = "latex-pretty-symbols";
};
@@ -34555,7 +34763,7 @@
sha256 = "1bvhrh9xfl7p474b8jcczw255d2pjmrz5b60wis0lmmxdljplrfa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/latex-preview-pane";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-preview-pane";
sha256 = "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw";
name = "latex-preview-pane";
};
@@ -34576,7 +34784,7 @@
sha256 = "10i4r81pm95990d4yrabzdm49gp47mqpv15h4r4sih10p1kbn83h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/latex-unicode-math-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-unicode-math-mode";
sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr";
name = "latex-unicode-math-mode";
};
@@ -34597,7 +34805,7 @@
sha256 = "0ciycsqzyj6ld60c7sfqjq59ln3jvk3w9vy606kqzpcvj01ihmv1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/launch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/launch";
sha256 = "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6";
name = "launch";
};
@@ -34618,7 +34826,7 @@
sha256 = "154z7bhb7qagvl3dlgrlsxdg4chz2863ijglg47xs3yhjp5ypanj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/launchctl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/launchctl";
sha256 = "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9";
name = "launchctl";
};
@@ -34639,7 +34847,7 @@
sha256 = "1mg923rs2dk104bcr461dif3mg42r081ii8ipnnr588w7il0xh7k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lavender-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lavender-theme";
sha256 = "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1";
name = "lavender-theme";
};
@@ -34660,7 +34868,7 @@
sha256 = "03mv2r6k9syr7bk4vmdafmpa8kz19hv5h68ahj2bmdcmwlvwhkf3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ldap-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ldap-mode";
sha256 = "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq";
name = "ldap-mode";
};
@@ -34681,7 +34889,7 @@
sha256 = "1hp65aai2bp5l7b3dhr6bz042xcikkk8vssirzibdw5qq6zqzgxm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ledger-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ledger-mode";
sha256 = "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s";
name = "ledger-mode";
};
@@ -34702,7 +34910,7 @@
sha256 = "0yrrlwmxg1wy65bqyacjpzd5ksljgp41x4zyizl7h0zx9rmqcdvn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/leerzeichen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/leerzeichen";
sha256 = "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp";
name = "leerzeichen";
};
@@ -34723,7 +34931,7 @@
sha256 = "05zpc8b2pyjz76fvmgr7zkl56g6nf6hi4nmxdg6gkw8fx6p8i19f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/legalese";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/legalese";
sha256 = "18rkvfknaqwkmhsjpgrf2hknrb2zj61aw8rb4907gsbs9rciqpdd";
name = "legalese";
};
@@ -34744,7 +34952,7 @@
sha256 = "0n6jrm5ilm5wzfrh7yjxn3sr5m10hwdm55b179ild32lh4795zj7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lemon-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lemon-mode";
sha256 = "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5";
name = "lemon-mode";
};
@@ -34765,7 +34973,7 @@
sha256 = "0ab84qiqaz3swiraks8lx0y1kzwylpy9wz2104xgnpwnc5169z65";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lenlen-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lenlen-theme";
sha256 = "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9";
name = "lenlen-theme";
};
@@ -34786,7 +34994,7 @@
sha256 = "04h6vk7w25yp4kzkwqnsmc59bm0182qqkyk5nxm3a1lv1v1590lf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lentic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lentic";
sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m";
name = "lentic";
};
@@ -34807,7 +35015,7 @@
sha256 = "0c6wkfz6sdcs4aglvx6h3slhma2vbj7idckwzvp8ji6s7p1mavlv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lentic-server";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lentic-server";
sha256 = "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56";
name = "lentic-server";
};
@@ -34828,7 +35036,7 @@
sha256 = "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/less-css-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/less-css-mode";
sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8";
name = "less-css-mode";
};
@@ -34849,7 +35057,7 @@
sha256 = "06hggcbz98qhfbvp0fxn89j98d0mmki4wc4k8kfzp5fhg071chbi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/letcheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/letcheck";
sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2";
name = "letcheck";
};
@@ -34870,7 +35078,7 @@
sha256 = "03racy7vni8xnylsqd0bapm1hm14drn08v22by741rrzn8kkq7fi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/leuven-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/leuven-theme";
sha256 = "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a";
name = "leuven-theme";
};
@@ -34888,7 +35096,7 @@
sha256 = "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/levenshtein";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/levenshtein";
sha256 = "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2";
name = "levenshtein";
};
@@ -34909,7 +35117,7 @@
sha256 = "167ayfl1k8dnajw173hh67nbwbk4frmjc4fzc515q67m9d7m5932";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lexbind-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lexbind-mode";
sha256 = "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl";
name = "lexbind-mode";
};
@@ -34926,11 +35134,11 @@
src = fetchFromGitHub {
owner = "rvirding";
repo = "lfe";
- rev = "fa527311d8acb215fb84ab2a52acbae1e0782fca";
- sha256 = "1zjwfw1ck91g6xnbmk4b5zbvwaly0kq6m8gbxh0wfvviaj831p4c";
+ rev = "b8961c2155ad44582d99397b0a760abeb0bb8382";
+ sha256 = "1sa96ww2zc96svsa979n8wnwspd35xvccqngz7h1v30rgx2l2wf6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lfe-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lfe-mode";
sha256 = "0smncyby53ipm8yqslz88sqjafk0x6r8d0qwk4wzk0pbgfyklhgs";
name = "lfe-mode";
};
@@ -34948,7 +35156,7 @@
sha256 = "077cy2clllrvabw44wb1pzcqz97r3y92j7cb9lnhd9pix0wpcq6g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lib-requires";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lib-requires";
sha256 = "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx";
name = "lib-requires";
};
@@ -34969,7 +35177,7 @@
sha256 = "039awlam3nrgkxrarcapfyc2myvc77aw7whrkcsjjybzylpzv0pr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/libmpdee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/libmpdee";
sha256 = "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0";
name = "libmpdee";
};
@@ -34990,7 +35198,7 @@
sha256 = "11c3vmxyddx7zm8fpxmzhq2xygyijbszinfiwllgb4l738bxwljb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lice";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lice";
sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x";
name = "lice";
};
@@ -35011,7 +35219,7 @@
sha256 = "04dik8z2mg6qr4d3fkd26kg29b4c5crvbnc1lfsrzyrik7ipvsi8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/light-soap-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/light-soap-theme";
sha256 = "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk";
name = "light-soap-theme";
};
@@ -35032,7 +35240,7 @@
sha256 = "0rkx0hk3y79rwhjqs3wvgxhg1rj83mxbqkhhm3jfawp8c1av4f40";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lingr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lingr";
sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff";
name = "lingr";
};
@@ -35053,7 +35261,7 @@
sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/link";
sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8";
name = "link";
};
@@ -35074,7 +35282,7 @@
sha256 = "0w6n6m766vr7d2i5jw30dkq9326r1mx02n222vm8z1mxydkw1n3i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/link-hint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/link-hint";
sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89";
name = "link-hint";
};
@@ -35095,7 +35303,7 @@
sha256 = "01yv6239z90hvncwmm9g5nh4xvyxv2ig3h4hsmxdn4kacfxvc84n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/linphone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/linphone";
sha256 = "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7";
name = "linphone";
};
@@ -35116,7 +35324,7 @@
sha256 = "1pvgp76n2qnm01l5f9mkb9yqwfxag9x23wwqbsna66rmvsag69w0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/linum-off";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/linum-off";
sha256 = "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay";
name = "linum-off";
};
@@ -35137,7 +35345,7 @@
sha256 = "11bjnqqwvr9zrvz5dlm8a0yw4zg9ysh3jdiq5a6iw09d3f0h1v2s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/linum-relative";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/linum-relative";
sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj";
name = "linum-relative";
};
@@ -35158,7 +35366,7 @@
sha256 = "01ycjy3amzbplp3zf0x5fahsja92gyg2252xhzcyiazmhaz7gkrd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/liso-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/liso-theme";
sha256 = "014a71dnhnr0dr36sl2h8ffp6il9nasij31ahqz0bjgn4r16s5gy";
name = "liso-theme";
};
@@ -35179,7 +35387,7 @@
sha256 = "0ah4nnjgjw7z7j9wz76zyq88rdmina9aw5adhn9b9pwr9s5frfkz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lisp-extra-font-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lisp-extra-font-lock";
sha256 = "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk";
name = "lisp-extra-font-lock";
};
@@ -35197,7 +35405,7 @@
sha256 = "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lispxmp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lispxmp";
sha256 = "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4";
name = "lispxmp";
};
@@ -35218,7 +35426,7 @@
sha256 = "177ymxd6znrshyxa730688wvv47j0hw9jd13qcv587akp1jnj980";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lispy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lispy";
sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g";
name = "lispy";
};
@@ -35239,7 +35447,7 @@
sha256 = "0n0mk01h9c3f24gzpws5xf6syrdwkq4kzs9mgwl74x9l0x904rgf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lispyscript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lispyscript-mode";
sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr";
name = "lispyscript-mode";
};
@@ -35260,7 +35468,7 @@
sha256 = "1szbs16jlxfj71986dbg0d3j5raaxcwz0xq5ar352731r5mdcqw4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/list-environment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-environment";
sha256 = "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h";
name = "list-environment";
};
@@ -35281,7 +35489,7 @@
sha256 = "02l7q5376ydz6a8i9x74bsx5bbxz8xkasmv1lzvf79d3jbg28l1s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/list-packages-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-packages-ext";
sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk";
name = "list-packages-ext";
};
@@ -35300,7 +35508,7 @@
sha256 = "1bssvyjgk1h1wiaxxdi2m5gjy6a790a9rwvi0r22hin7iskg300a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/list-processes+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-processes+";
sha256 = "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky";
name = "list-processes-plus";
};
@@ -35321,7 +35529,7 @@
sha256 = "1pr7vmjmyildg44n7psg0zmj8a3kfsw5xmgh600fhs95wqxn3sag";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/list-register";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-register";
sha256 = "0kza9xfhmxc8qia5yixx5z2y9j4wb1530rcvgxn545b903fs55kv";
name = "list-register";
};
@@ -35342,7 +35550,7 @@
sha256 = "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/list-unicode-display";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-unicode-display";
sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha";
name = "list-unicode-display";
};
@@ -35363,7 +35571,7 @@
sha256 = "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/list-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-utils";
sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3";
name = "list-utils";
};
@@ -35384,7 +35592,7 @@
sha256 = "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lit-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lit-mode";
sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59";
name = "lit-mode";
};
@@ -35405,7 +35613,7 @@
sha256 = "1nbz119ldwjvkm3xd9m0dx820lc177frz5mn585fsd7kqdbkam99";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/litable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/litable";
sha256 = "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji";
name = "litable";
};
@@ -35426,7 +35634,7 @@
sha256 = "1lb26csih1i8jyjy7mh25zqpq7a4rb9db4y2mbygcz5psbaazvfb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/litecoin-ticker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/litecoin-ticker";
sha256 = "14gak0av8wljmyq9lcf44dc2bvlfjb86filanqh0wkf2swpbdw85";
name = "litecoin-ticker";
};
@@ -35447,7 +35655,7 @@
sha256 = "1wxysnsigjw40ykdwngg0gqfaag0dx6zg029i2zx25kl3gr1lflc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/literate-coffee-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/literate-coffee-mode";
sha256 = "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40";
name = "literate-coffee-mode";
};
@@ -35468,7 +35676,7 @@
sha256 = "1v37bii372w2g3pl09n5dcrk6y7glhpg8qiv17zsk9jy3ps2xm1b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/literate-starter-kit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/literate-starter-kit";
sha256 = "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy";
name = "literate-starter-kit";
};
@@ -35489,7 +35697,7 @@
sha256 = "1j0qa96vlsqybhp0082a466qb1hd2b0621306brl9pfl5srf5jsj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/live-code-talks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/live-code-talks";
sha256 = "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma";
name = "live-code-talks";
};
@@ -35502,15 +35710,15 @@
live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "live-py-mode";
- version = "20160515.1224";
+ version = "20160521.1430";
src = fetchFromGitHub {
owner = "donkirkby";
repo = "live-py-plugin";
- rev = "48bdcafb9b322cdaec1e7035368f651b97f5eab1";
- sha256 = "06vpbjahv78azb20msw4z539h71ry4g1s4afcsp054z7wh1mi63w";
+ rev = "8f782f58aa2fa2c805b6f488ade9e1c33fed6edb";
+ sha256 = "0vmkqlgiahcc6aa0ky4jjdc5nxnn2i7qwfl6wkgy5rmq051nk4k0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/live-py-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/live-py-mode";
sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq";
name = "live-py-mode";
};
@@ -35531,7 +35739,7 @@
sha256 = "1qxw7i23z6c4yimrzpaqna8j39rashgbswdv4m0x4qg4sqc7szdp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lively";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lively";
sha256 = "0qnyqlhqmmfq2f47zmy29hn6wqrx5yvsax8kn63nmxw380gw1z18";
name = "lively";
};
@@ -35552,7 +35760,7 @@
sha256 = "0kqjz0i0zapyhh8z57cvc8ifiizngix3ca01mjnvyq3zxg1bqrsg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/livescript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/livescript-mode";
sha256 = "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj";
name = "livescript-mode";
};
@@ -35573,7 +35781,7 @@
sha256 = "178ldzpk8a9m9abn8xlplxn5jgcca71dpkp82bs5g7bsccp3rx6p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/livid-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/livid-mode";
sha256 = "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d";
name = "livid-mode";
};
@@ -35589,11 +35797,11 @@
version = "20150910.944";
src = fetchgit {
url = "http://llvm.org/git/llvm";
- rev = "91b5ad4eb5d2c6af50e07040f263d152766dcbb0";
- sha256 = "0bxdcw3x5pi8idjbfb5rwrz04xcq7hn8drn88zq817a1qyr5bmg6";
+ rev = "5afdcbe0c7cd2abeff450f66487800052a2df423";
+ sha256 = "152im9nwy1rssd8rfh9rfk0pcw558g7m8cfmn83hy2sdicgyn3d7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/llvm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/llvm-mode";
sha256 = "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7";
name = "llvm-mode";
};
@@ -35614,7 +35822,7 @@
sha256 = "0izrli7f20iq1pz1r1l0kshzpz7vl4p1gyn2n5mdjv5lbpq7cykb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/load-relative";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/load-relative";
sha256 = "0j8ybbjzhzgjx47pqqdbsqi8n6pzqcf6zqc38x7cf1kkklgc87ay";
name = "load-relative";
};
@@ -35635,7 +35843,7 @@
sha256 = "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/load-theme-buffer-local";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/load-theme-buffer-local";
sha256 = "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4";
name = "load-theme-buffer-local";
};
@@ -35656,7 +35864,7 @@
sha256 = "0i0ainawjvfl3qix329hx01x7rxyfin2xgpjk7y5dgmh4p3xhv94";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/loc-changes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/loc-changes";
sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh";
name = "loc-changes";
};
@@ -35677,7 +35885,7 @@
sha256 = "1npz90zf91wqf35bqd3zmkh0b538i69w8ygc78x5w2x5005aqr0p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/loccur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/loccur";
sha256 = "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h";
name = "loccur";
};
@@ -35698,7 +35906,7 @@
sha256 = "1cdnm270kzixa0kpis0xw2ybkw8lqh7kykc7blxkxjrr9yjvbawl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lodgeit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lodgeit";
sha256 = "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq";
name = "lodgeit";
};
@@ -35719,7 +35927,7 @@
sha256 = "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/log4e";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/log4e";
sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34";
name = "log4e";
};
@@ -35739,7 +35947,7 @@
sha256 = "15x6368pk4bbvhbd6cqnazcxfdz0b3f70029x0884a5797janln5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/log4j-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/log4j-mode";
sha256 = "06lam4iqxlbl9ib2n2db2nj6jbjzrw2ak8r99n6w4s3fny1q3yxx";
name = "log4j-mode";
};
@@ -35760,7 +35968,7 @@
sha256 = "0lj3i9i3mg17xws13gzx8myc6d7djgsj47yx4kaq5hycgkni1p7q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/logalimacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logalimacs";
sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6";
name = "logalimacs";
};
@@ -35781,7 +35989,7 @@
sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/logito";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logito";
sha256 = "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l";
name = "logito";
};
@@ -35802,7 +36010,7 @@
sha256 = "05px3zc3is7k2jmh7mal0al5zx5cqvn1bzmhgqq02pp6lwsx5xqa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/logstash-conf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logstash-conf";
sha256 = "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh";
name = "logstash-conf";
};
@@ -35812,22 +36020,22 @@
license = lib.licenses.free;
};
}) {};
- logview = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ logview = callPackage ({ datetime, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "logview";
- version = "20160306.1555";
+ version = "20160520.1641";
src = fetchFromGitHub {
owner = "doublep";
repo = "logview";
- rev = "4008fc5085a9f399e64e87b79220949b7b88b0ae";
- sha256 = "14mrj3c8b5dhcl262dd6nh8zfyqgmvl75lyd7319jzwlliyxz673";
+ rev = "0d1c20c9e5b7b61a2e40e95180a10c2d29ca97f7";
+ sha256 = "0xjfm39pk1z2wj6rr9v9jzsxy5p2vdi4rinzfpl719lcknpvzkw3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/logview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logview";
sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh";
name = "logview";
};
- packageRequires = [ emacs ];
+ packageRequires = [ datetime emacs ];
meta = {
homepage = "https://melpa.org/#/logview";
license = lib.licenses.free;
@@ -35844,7 +36052,7 @@
sha256 = "0pyfgywmmnlz1arvdxwyw96gr6xcg2sp3bqjli8xfcl8i0nww4kb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lolcode-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lolcode-mode";
sha256 = "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw";
name = "lolcode-mode";
};
@@ -35865,7 +36073,7 @@
sha256 = "0w9pbjcp4d2w3qb3nnyzq2d0d9f0pgz5lyzapidxa9z1xcj51ccj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/look-dired";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/look-dired";
sha256 = "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd";
name = "look-dired";
};
@@ -35883,7 +36091,7 @@
sha256 = "0sl6hqggi6qn2qp9khw11qp5hamngwxrrwx98k3pwpj9kgicdpgp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/look-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/look-mode";
sha256 = "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj";
name = "look-mode";
};
@@ -35904,7 +36112,7 @@
sha256 = "1wmd7s3dk9krgmhs4f92mig18vx6y551n45ai7cvj92f4fbrsd08";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/loop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/loop";
sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar";
name = "loop";
};
@@ -35925,7 +36133,7 @@
sha256 = "0grzl4kqpc1x6569yfh9xdzzbgmhcskxwk6f7scjpl32acr88cmx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lorem-ipsum";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lorem-ipsum";
sha256 = "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h";
name = "lorem-ipsum";
};
@@ -35946,7 +36154,7 @@
sha256 = "179r4pz3hlb5p6bjfhdikkx1zvh09ln5dbw3c3rmlyww1q7v26yl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/love-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/love-minor-mode";
sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m";
name = "love-minor-mode";
};
@@ -35967,7 +36175,7 @@
sha256 = "03k7nqk6vz8949pj77lsmw2rrzip7xnfp5nyy18y5d8rvifrcdgw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lua-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lua-mode";
sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94";
name = "lua-mode";
};
@@ -35988,7 +36196,7 @@
sha256 = "0mv73s89n59m44szc37086wq55py5sx0lc0jxncfybawhsqyd0ar";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lush-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lush-theme";
sha256 = "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p";
name = "lush-theme";
};
@@ -36009,7 +36217,7 @@
sha256 = "1r1xfn0dyc4m49064g9n6hpwn4r763kpbg3dgprsv30i5ska61qa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lusty-explorer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lusty-explorer";
sha256 = "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps";
name = "lusty-explorer";
};
@@ -36030,7 +36238,7 @@
sha256 = "090gk0il4yyypzjbh2qrjdaldwf90fi30impmh4zcfl73bic5q9q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lxc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lxc";
sha256 = "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka";
name = "lxc";
};
@@ -36051,7 +36259,7 @@
sha256 = "1rrfvshl6zbsrswg5hrvq1p0rd9vacqwbr4s44kln7vg4ybcgr24";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/m-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/m-buffer";
sha256 = "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc";
name = "m-buffer";
};
@@ -36072,7 +36280,7 @@
sha256 = "119c77s3qp1vqc5m2yf7m4s81aphkhsvsnwqmpq6xl08r3592zxz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/macro-math";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/macro-math";
sha256 = "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00";
name = "macro-math";
};
@@ -36090,7 +36298,7 @@
sha256 = "07iw9iarz6z9n6vnhqqljfjpvq6vb97ca2hwj9v0k5k8mafdqg7d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/macros+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/macros+";
sha256 = "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi";
name = "macros-plus";
};
@@ -36111,7 +36319,7 @@
sha256 = "0g9bnq4p3ffvva30hpll80dn3i41m51mcvw3qf787zg1nmc5a0j6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/macrostep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/macrostep";
sha256 = "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c";
name = "macrostep";
};
@@ -36132,7 +36340,7 @@
sha256 = "1flamyk7z3r723cczqra0f4yabc6kmgwjaw2bvs3kisppqmmz72g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mag-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mag-menu";
sha256 = "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2";
name = "mag-menu";
};
@@ -36145,15 +36353,15 @@
magic-filetype = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "magic-filetype";
- version = "20160508.1007";
+ version = "20160522.1029";
src = fetchFromGitHub {
owner = "zonuexe";
repo = "magic-filetype.el";
- rev = "1b8eddc15c278021cd194bf3cba8f07141a990e9";
- sha256 = "0994jiqjamc0h87s7dj86xw4h24nmghwaq6p3m7lrl551l30pm3p";
+ rev = "3f58122429ea24c54fca79a91605eb660ee5bc3e";
+ sha256 = "109j4czb71qg9jlnflzph0qmbxyfajddmg0yqwhl368pa29alvrk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magic-filetype";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magic-filetype";
sha256 = "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg";
name = "magic-filetype";
};
@@ -36174,7 +36382,7 @@
sha256 = "1gmhb8g1pl4qqk1d32hlvmhx2jqfsn3hkc4lkzhgk1n3qzfrq4hf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magic-latex-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magic-latex-buffer";
sha256 = "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8";
name = "magic-latex-buffer";
};
@@ -36187,15 +36395,15 @@
magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, git-commit, lib, magit-popup, melpaBuild, with-editor }:
melpaBuild {
pname = "magit";
- version = "20160514.1751";
+ version = "20160521.1808";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "cf9a99189e8a24290af9877c571d001696644d23";
- sha256 = "0mgpj1c43vllmlv2amjhssicv85vwrv4k31hljhzd7nlq8bjkyp9";
+ rev = "826f72e72784315d3eceb96144bdfc9e225af6bf";
+ sha256 = "1q12hya4zj9f3k8r992fv1c8yx542w452z9cm808n0fagsz6y2il";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit";
sha256 = "0518ax2y7y2ji4jp7yghy84yxm0zgb059aqfa4v17grm4kr8p16q";
name = "magit";
};
@@ -36223,7 +36431,7 @@
sha256 = "19w8143c4spa856xyzx8fylndbj4s9nwn27f6v1ckqxvm5l0pph0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-annex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-annex";
sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys";
name = "magit-annex";
};
@@ -36244,7 +36452,7 @@
sha256 = "0nkxxhxkhy314jv1l3hza84vigl8q7fc8hjjvrx58gfgsfgifx6r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-filenotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-filenotify";
sha256 = "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7";
name = "magit-filenotify";
};
@@ -36265,7 +36473,7 @@
sha256 = "1j3jsrp0qpaa2xd98d1g9z0zc4b93knwajrlnlsc7l6g0vlfsddb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-find-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-find-file";
sha256 = "1y66nsq1hbv1sb4n71gdxv7p1rz37vd9lkf7zl7avy0dchs499ik";
name = "magit-find-file";
};
@@ -36286,7 +36494,7 @@
sha256 = "0mms0gxv9a3ns8lk5k2wjibm3088y1cmpr3axjdh6ppv7r5wdvii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-gerrit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-gerrit";
sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4";
name = "magit-gerrit";
};
@@ -36307,7 +36515,7 @@
sha256 = "1cnvfvf8c2f1jvxxl4qggzwhk082q0hfljhfm1znhc5qxh1vyc4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-gh-pulls";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-gh-pulls";
sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d";
name = "magit-gh-pulls";
};
@@ -36328,7 +36536,7 @@
sha256 = "0ibb0fs21hwmhxrm43d0zb9wlnzr9mlbl5nxg2k6rd4x5xd1869d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-gitflow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-gitflow";
sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf";
name = "magit-gitflow";
};
@@ -36349,7 +36557,7 @@
sha256 = "01ifl1bg3sd5d4b5ms9kyw074as8bkzqpwhxppp79ml46vp1np2x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-p4";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-p4";
sha256 = "19p7h3a21jjr2h52ika14lyczdv6z36gl7hk1v17bffffac8q069";
name = "magit-p4";
};
@@ -36362,15 +36570,15 @@
magit-popup = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "magit-popup";
- version = "20160512.628";
+ version = "20160521.1521";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "cf9a99189e8a24290af9877c571d001696644d23";
- sha256 = "0mgpj1c43vllmlv2amjhssicv85vwrv4k31hljhzd7nlq8bjkyp9";
+ rev = "826f72e72784315d3eceb96144bdfc9e225af6bf";
+ sha256 = "1q12hya4zj9f3k8r992fv1c8yx542w452z9cm808n0fagsz6y2il";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-popup";
sha256 = "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj";
name = "magit-popup";
};
@@ -36383,15 +36591,15 @@
magit-rockstar = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "magit-rockstar";
- version = "20160430.713";
+ version = "20160517.951";
src = fetchFromGitHub {
owner = "tarsius";
repo = "magit-rockstar";
- rev = "76f85a97d152777df6d27fecce4cf43d3dd5b3d9";
- sha256 = "14g9idwdvvx5b1cw9ba99pzbylaikl7w8xqgs87f3smzaqr6151w";
+ rev = "47780d27141ba50f225f0bd8109f92ba6d1db8d5";
+ sha256 = "075gxm4shbh5zfr17zpfn35w8ndgz9aqz6y3wws23wa4ff2n8kdc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-rockstar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-rockstar";
sha256 = "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n";
name = "magit-rockstar";
};
@@ -36412,7 +36620,7 @@
sha256 = "163a1rddl54jgxm5dygnbp1pz1as4hhjszan1rcabvzcfnfdpakj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-stgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-stgit";
sha256 = "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv";
name = "magit-stgit";
};
@@ -36433,7 +36641,7 @@
sha256 = "0r3nkrisyjawjwbm74yi6fqiwcqzlfkypsdscfhii0q50ky8plph";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-svn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-svn";
sha256 = "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0";
name = "magit-svn";
};
@@ -36454,7 +36662,7 @@
sha256 = "06fbjv3zd92lvg4xjsp9l4jkxx2glhng3ys3s9jmvy5y49pymwb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-topgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-topgit";
sha256 = "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i";
name = "magit-topgit";
};
@@ -36475,7 +36683,7 @@
sha256 = "1pq6ckxp3dcb2f6xfsd4jwd43r9d0920m30ammp39glgc39p9lsq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magma-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magma-mode";
sha256 = "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc";
name = "magma-mode";
};
@@ -36496,7 +36704,7 @@
sha256 = "1hqz26zm4bdz5wavna4j9yia3ns4z19dnszl7k0lcpgbgmb0wh8y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magnatune";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magnatune";
sha256 = "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d";
name = "magnatune";
};
@@ -36517,7 +36725,7 @@
sha256 = "06sjwl0bk648wnnrmyh6qgnlqmxypjmy0gkfl6kpv01r8vh7x2q5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/main-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/main-line";
sha256 = "06rihx9h2h8ayrirbx74d9qdf26laz9yxffvxyldzm9hymlbzadd";
name = "main-line";
};
@@ -36538,7 +36746,7 @@
sha256 = "1s4sm59wz03yz4srqzav7myq6p0gmijw5zj2kbpvxfanlr8b2rb1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/majapahit-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/majapahit-theme";
sha256 = "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s";
name = "majapahit-theme";
};
@@ -36559,7 +36767,7 @@
sha256 = "1ky3scyjb69wi76xg6a8qx4ja6lr6mk530bv5gmhj7fxbq8b3x5c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/make-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/make-color";
sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k";
name = "make-color";
};
@@ -36580,7 +36788,7 @@
sha256 = "00j5n9pil1qik4mrzvam4rp6213w8jm4qw7c4z8sxpq57xa0b679";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/make-it-so";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/make-it-so";
sha256 = "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73";
name = "make-it-so";
};
@@ -36601,7 +36809,7 @@
sha256 = "0w3kar52yf8clf9801c4jzfrixi10clc8fs8ni2d4pzhdwwca2zw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/maker-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/maker-mode";
sha256 = "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a";
name = "maker-mode";
};
@@ -36622,7 +36830,7 @@
sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/makey";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/makey";
sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4";
name = "makey";
};
@@ -36643,7 +36851,7 @@
sha256 = "0hlxs9gi2vml2id9q0r1r0xdm0zshjzc1w3phjf2ab0aa3hl5k6l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/malabar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/malabar-mode";
sha256 = "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk";
name = "malabar-mode";
};
@@ -36664,7 +36872,7 @@
sha256 = "04j7x7kkilfrk4i76aizkdhmghi9a5hc63mj6mhm8x0v1c4f15lj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/malinka";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/malinka";
sha256 = "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp";
name = "malinka";
};
@@ -36685,7 +36893,7 @@
sha256 = "18x3cssfn81k8hg4frj7dhzphg784321z51wbbvn3bjhq7s6j3a2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mallard-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mallard-mode";
sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd";
name = "mallard-mode";
};
@@ -36706,7 +36914,7 @@
sha256 = "0qk7i47nmyp4llwp6x0i1i5dk82ck26iyz1sjvvlihaw8a5akny2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mallard-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mallard-snippets";
sha256 = "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8";
name = "mallard-snippets";
};
@@ -36727,7 +36935,7 @@
sha256 = "1lfq4hsq2n33l58ja5kzy6bwk9jxbcdsg6y8gqlk71lcslzqldrk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/man-commands";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/man-commands";
sha256 = "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq";
name = "man-commands";
};
@@ -36748,7 +36956,7 @@
sha256 = "10wl7kc76dyijrmdlcl5cx821jg7clsj35r22955mbbgh7zl1x07";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/manage-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/manage-minor-mode";
sha256 = "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6";
name = "manage-minor-mode";
};
@@ -36769,7 +36977,7 @@
sha256 = "0g2rxq0xy3kgd9v100nanisyg045gl93jqvgwbib6qzaf9bfvh60";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mandoku";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mandoku";
sha256 = "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv";
name = "mandoku";
};
@@ -36790,7 +36998,7 @@
sha256 = "0pd6bh7wrrh59blp86a2jl2vi4qkzx49z0hy7dkc71ccg0wjsgz1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/map-progress";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/map-progress";
sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7";
name = "map-progress";
};
@@ -36811,7 +37019,7 @@
sha256 = "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/map-regexp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/map-regexp";
sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj";
name = "map-regexp";
};
@@ -36832,7 +37040,7 @@
sha256 = "1qf724y1zq3z6fzm23qhwjl2knhs49nbz0vizwf8g9s51bk6bny2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/marcopolo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marcopolo";
sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0";
name = "marcopolo";
};
@@ -36853,7 +37061,7 @@
sha256 = "1x3anvy3hlmydxyfzr1rhaiy502yi1yz3v54sg8wc1w7jrvwaj29";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mark-multiple";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mark-multiple";
sha256 = "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4";
name = "mark-multiple";
};
@@ -36874,7 +37082,7 @@
sha256 = "0k4zvbs09mkr8vdffv18s55rn9cyxldzav9vw04lm7v296k94ivz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mark-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mark-tools";
sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq";
name = "mark-tools";
};
@@ -36884,6 +37092,27 @@
license = lib.licenses.free;
};
}) {};
+ markdown-mac-link = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "markdown-mac-link";
+ version = "20160520.521";
+ src = fetchFromGitHub {
+ owner = "xuchunyang";
+ repo = "markdown-mac-link";
+ rev = "73b8ab881f0beff878a426e509bbf263e755313c";
+ sha256 = "0lqxl8myshmk99hnj94ivz8xrpbgsf8dmjivkf35x58k06drbn4f";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-mac-link";
+ sha256 = "075hmv3mchxbawyxzm9r2hjdy4xislh8590bn077w5rscha8d713";
+ name = "markdown-mac-link";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/markdown-mac-link";
+ license = lib.licenses.free;
+ };
+ }) {};
markdown-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "markdown-mode";
@@ -36895,7 +37124,7 @@
sha256 = "0cy9qmvy7xm1hl8dcfqcfd8rcn0pg2zarjbxf1mafvpzp5w30jsb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/markdown-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-mode";
sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14";
name = "markdown-mode";
};
@@ -36916,7 +37145,7 @@
sha256 = "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/markdown-mode+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-mode+";
sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00";
name = "markdown-mode-plus";
};
@@ -36937,7 +37166,7 @@
sha256 = "1i5gr3j9dq41p2zl4bfyvzv6i5z7hgrxzrycmbdc3s7nja36k9z4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/markdown-preview-eww";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-preview-eww";
sha256 = "0j6924f84is41dspib68y5lnz1f8nm7pqyhv47alxra50cjrpxnx";
name = "markdown-preview-eww";
};
@@ -36958,7 +37187,7 @@
sha256 = "1yi5hsgf8hr7v1wyn3bw650g3ysbglwn5qfrmb6yl3s08lvi1vlf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/markdown-preview-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-preview-mode";
sha256 = "0i0mld45d8y96nkqn2r77nvbyw6wgsf8r54d3c2jrv04mnaxs7pg";
name = "markdown-preview-mode";
};
@@ -36979,7 +37208,7 @@
sha256 = "0l687bna8rrc49y1fyn1ldjcwh290qgvi3p86c63yj4xy24fmdm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/markdown-toc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-toc";
sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv";
name = "markdown-toc";
};
@@ -37000,7 +37229,7 @@
sha256 = "1i95b15mvkkki2iq8hysdr7jr1d5nix9jjkh7jz0alvaybqlsnqi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/markup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markup";
sha256 = "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf";
name = "markup";
};
@@ -37021,7 +37250,7 @@
sha256 = "1w6i1m7xdr9cijnmdj35cl99r12vl83qws0qlfhrgvisilshnr27";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/markup-faces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markup-faces";
sha256 = "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq";
name = "markup-faces";
};
@@ -37042,7 +37271,7 @@
sha256 = "1ygznmqb3fqy94p8qi71i223m7cpw3f596pkls2ybjlbpb4psjcl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/marmalade";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marmalade";
sha256 = "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s";
name = "marmalade";
};
@@ -37063,7 +37292,7 @@
sha256 = "017k109nfif5mzkj547py8pdnzlr4sxb74yqqsl944znflq67blr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/marmalade-client";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marmalade-client";
sha256 = "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq";
name = "marmalade-client";
};
@@ -37084,7 +37313,7 @@
sha256 = "0fwhhzfd6vgpaf5mrw90hvm35j2kzhk9h3gbrwd7y7q08nrmsx9p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/marshal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marshal";
sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl";
name = "marshal";
};
@@ -37105,7 +37334,7 @@
sha256 = "1j1282bvsjj71nhswpz0nr11gc7nzxvr113ara49ya58vqhm42gb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/material-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/material-theme";
sha256 = "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq";
name = "material-theme";
};
@@ -37126,7 +37355,7 @@
sha256 = "0k1ayv0a9g778b50jni3hh70pg6axmq34wl8x3zgphadgms1w9dd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/math-symbol-lists";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/math-symbol-lists";
sha256 = "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27";
name = "math-symbol-lists";
};
@@ -37147,7 +37376,7 @@
sha256 = "1chyxi096krjbi9zgbrnrkvwgmn4wygnia9m57m0jh4arlbm28la";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/math-symbols";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/math-symbols";
sha256 = "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx";
name = "math-symbols";
};
@@ -37167,7 +37396,7 @@
sha256 = "0pwbq6hpvd4n9aw94dfpzynli6xc8r21q6kjpiwpfmyvag0lvyg9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/matlab-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/matlab-mode";
sha256 = "1bybc5xv5hbjh8afmh03qda5g3m2wcgsk6lgj6jkyyxzdfxqkrck";
name = "matlab-mode";
};
@@ -37187,7 +37416,7 @@
sha256 = "0z79l8md683vvc51fz0nmbazb6i7hklkm0asglflr96pldil50l8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/matrix-client";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/matrix-client";
sha256 = "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6";
name = "matrix-client";
};
@@ -37208,7 +37437,7 @@
sha256 = "1sn9bdaq3mf2vss5gzmxhnp9fz43cakxh36qjdgqrvx302nlnv52";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/maude-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/maude-mode";
sha256 = "1w5v3r905xkwchkm2gzvzpswba5p2m7hqpyg9fzq2ldlr8kk7ah3";
name = "maude-mode";
};
@@ -37229,7 +37458,7 @@
sha256 = "1xn2yyr8mr90cynbxgv0h5v180pzf0ydnjr9spg34mrdicqlki6c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/maven-test-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/maven-test-mode";
sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm";
name = "maven-test-mode";
};
@@ -37250,7 +37479,7 @@
sha256 = "0g9kpsg6623nmxnshj49q8k952xybrkmqqy6m892m8wnm22pjdz1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/maxframe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/maxframe";
sha256 = "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj";
name = "maxframe";
};
@@ -37268,7 +37497,7 @@
sha256 = "0w8clp96jblsc9v87404zpc280ms0d644in34jdgjc5r33f4i0g3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mb-depth+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mb-depth+";
sha256 = "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w";
name = "mb-depth-plus";
};
@@ -37289,7 +37518,7 @@
sha256 = "1pbs7hb7bhbsnwrs7fc4max2k471bzkjigc2w123szmwmsvz84k6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mb-url";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mb-url";
sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h";
name = "mb-url";
};
@@ -37310,7 +37539,7 @@
sha256 = "1zywygdgnp2zr8fxqhl0cbrgbl43931k936b9imhqi96p6622pb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mbe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mbe";
sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3";
name = "mbe";
};
@@ -37331,7 +37560,7 @@
sha256 = "1vr85fdlb4zwgid1v00ndppla9fqqk25g2x2f5alm69pfqssr75z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mbo70s-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mbo70s-theme";
sha256 = "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb";
name = "mbo70s-theme";
};
@@ -37352,7 +37581,7 @@
sha256 = "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mc-extras";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mc-extras";
sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym";
name = "mc-extras";
};
@@ -37373,7 +37602,7 @@
sha256 = "1j8gp3byanf1mq8sc4hv838rgcywlv35d8q1vjwzsjaznvz8hvc3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/md-readme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/md-readme";
sha256 = "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3";
name = "md-readme";
};
@@ -37394,7 +37623,7 @@
sha256 = "136lh39hakwx46rd1gsmsfhsj78mrpamid766v2vjx9rkkprk0zv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/meacupla-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/meacupla-theme";
sha256 = "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d";
name = "meacupla-theme";
};
@@ -37415,7 +37644,7 @@
sha256 = "0kzmvsbzqrkrlnr5sf1xwazm9zyzbrflb4d1jrkp206q9yk439cr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mediawiki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mediawiki";
sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6";
name = "mediawiki";
};
@@ -37436,7 +37665,7 @@
sha256 = "0bilwhvprzk634sk5hnxilrvrl0yv593swzznch0p38hqxl585ld";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mellow-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mellow-theme";
sha256 = "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0";
name = "mellow-theme";
};
@@ -37457,7 +37686,7 @@
sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/melpa-upstream-visit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/melpa-upstream-visit";
sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf";
name = "melpa-upstream-visit";
};
@@ -37478,7 +37707,7 @@
sha256 = "0pjqax3pi6pb650yb8iwa4brwwl6cdka7jym3cfkpppyy782dm0q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/memento";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/memento";
sha256 = "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8";
name = "memento";
};
@@ -37499,7 +37728,7 @@
sha256 = "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/memoize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/memoize";
sha256 = "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6";
name = "memoize";
};
@@ -37520,7 +37749,7 @@
sha256 = "1jd4rjv812iv7kp4wyxdz8sk7j0442m8x2ypk6hiqis0braxnspm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/memolist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/memolist";
sha256 = "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh";
name = "memolist";
};
@@ -37541,7 +37770,7 @@
sha256 = "11hyydc13jdai6lkxx8nqf8xljh0gx7fcmywhik4f1hf3pdv7i2q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mentor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mentor";
sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s";
name = "mentor";
};
@@ -37559,7 +37788,7 @@
sha256 = "0v3n0227fmdk6hshnc1x1sxqci0pi3954nqy5ym4k9bmvw3cyxlg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/menu-bar+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/menu-bar+";
sha256 = "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90";
name = "menu-bar-plus";
};
@@ -37580,7 +37809,7 @@
sha256 = "0vk1b9gjhjq47jhjhwh6h2x2cl2w7pz4018s6c444paw46gmgkln";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/merlin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/merlin";
sha256 = "177cy9xcrjckxv8gvi1zhg2ndfr8cmsr37inyvpi5dxqy6d6alhp";
name = "merlin";
};
@@ -37598,7 +37827,7 @@
sha256 = "05ic97plsysh4nqwdrsl5m9f24m11w24bahj8bxzfdawfima2bkf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/message-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/message-x";
sha256 = "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj";
name = "message-x";
};
@@ -37619,7 +37848,7 @@
sha256 = "1x425ah3ymjyp3pxvyzyp4gd8zrjx8lgdzprml8qvf1yk82iv45l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/meta-presenter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/meta-presenter";
sha256 = "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d";
name = "meta-presenter";
};
@@ -37640,7 +37869,7 @@
sha256 = "0n4nv1s25z70xfy3bl1wy467abz3agj4qmpx4rwdwzbarnqp9ps3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/metafmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/metafmt";
sha256 = "1ca102al7r3k2g92b4jkqv53crnmxy3z7cz31w1rprf41s69mn75";
name = "metafmt";
};
@@ -37661,7 +37890,7 @@
sha256 = "1rascpmv17dksyn9y0llmjb8r4484x5ax54w6r83k1x7ha1iacx5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/metascript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/metascript-mode";
sha256 = "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn";
name = "metascript-mode";
};
@@ -37682,7 +37911,7 @@
sha256 = "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/metaweblog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/metaweblog";
sha256 = "10kwqnfafby4ap0572mfkkdssr13y9p2gl9z3nmxqjjy04fkfi8b";
name = "metaweblog";
};
@@ -37703,7 +37932,7 @@
sha256 = "1rkipcv53p7zra3gbjc77ywyxn8d1kx2gniyfqq16d2p2jw0lbzb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mew";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mew";
sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk";
name = "mew";
};
@@ -37724,7 +37953,7 @@
sha256 = "0bhllmyk1r9y63jw5gx10v09791w33lc54qs31gcxbnss094l6py";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mexican-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mexican-holidays";
sha256 = "0awf4vv6mbp1xr92nsgdn513g4adqhp21k12q4fbm85b2l3jlspb";
name = "mexican-holidays";
};
@@ -37745,7 +37974,7 @@
sha256 = "0ahbf4cd9q65xrvsc1clym3swdwwsl8llccrl5l1qgxqx5xg61hv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mhc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mhc";
sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql";
name = "mhc";
};
@@ -37766,7 +37995,7 @@
sha256 = "0l7xfana2cb894w5qi6wwx7w9k89c3i8k40fpsd93sm3hgi5ryii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mic-paren";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mic-paren";
sha256 = "042dzp0nal18nxq94qlwwksh0nnypsyc0yykmc6l3kayp9pv4hw7";
name = "mic-paren";
};
@@ -37787,7 +38016,7 @@
sha256 = "0r6l6iqn5z9wp4w58flnls7kk6300qlxyy04fw0np00nvwsy4qvp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/micgoline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/micgoline";
sha256 = "0xixcy006my2s0wn0isiag0b4rm38kswa5m0xnhg5n30qjjfzf4i";
name = "micgoline";
};
@@ -37808,7 +38037,7 @@
sha256 = "1cigsr0hkbi1860w38k2j8fw6j4w43pgv2bpkmdsifbqy6l8grpg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/midje-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/midje-mode";
sha256 = "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3";
name = "midje-mode";
};
@@ -37829,7 +38058,7 @@
sha256 = "1az4mnmanhz9ga0g46jf33w8axcw8lnrb9lmszajwv7y5j9nk7yr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/migemo";
sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr";
name = "migemo";
};
@@ -37850,7 +38079,7 @@
sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/milkode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/milkode";
sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh";
name = "milkode";
};
@@ -37870,7 +38099,7 @@
sha256 = "1b2kn4c90hl07lzdg10wamd4lq8f24wmaj4zvr728pwyga99b2av";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/minesweeper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minesweeper";
sha256 = "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag";
name = "minesweeper";
};
@@ -37891,7 +38120,7 @@
sha256 = "14dqa37z96nhmrhiczri0cyrzmjc3larw8sszvdal9prj47363sh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mingus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mingus";
sha256 = "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi";
name = "mingus";
};
@@ -37912,7 +38141,7 @@
sha256 = "1n4b039448826w2jcsv4r2iw3v2vlrsxw8dbci8wcfigmkbfc879";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/minibuf-isearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minibuf-isearch";
sha256 = "0n36d152lc53zj9jy38b0c7hlww0z6hx94y3x2njy6cmh3p5g8nh";
name = "minibuf-isearch";
};
@@ -37933,7 +38162,7 @@
sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/minibuffer-complete-cycle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minibuffer-complete-cycle";
sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2";
name = "minibuffer-complete-cycle";
};
@@ -37954,7 +38183,7 @@
sha256 = "011kg76zr4hfhi2gngnc7jlmp0l0nvhmlgyc0y9bir2jbjf4yyvz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/minibuffer-cua";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minibuffer-cua";
sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw";
name = "minibuffer-cua";
};
@@ -37975,7 +38204,7 @@
sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/miniedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/miniedit";
sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87";
name = "miniedit";
};
@@ -37996,7 +38225,7 @@
sha256 = "1sj5sq932w079y3vy55q5b6wybwrzz30y092iq1mpfg5xvl42sbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/minimal-session-saver";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minimal-session-saver";
sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i";
name = "minimal-session-saver";
};
@@ -38017,7 +38246,7 @@
sha256 = "1iy1z2kwnbzxhz5r4gsy4zm0l3xbwy314dqxliprbl8n2m9w0lmz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/minimal-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minimal-theme";
sha256 = "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm";
name = "minimal-theme";
};
@@ -38038,7 +38267,7 @@
sha256 = "0m37gjrcsjsvprq8w19qw5ivd4l1xb12609ixvbv1k21b15s1x38";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/minitest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minitest";
sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw";
name = "minitest";
};
@@ -38059,7 +38288,7 @@
sha256 = "0808cl5ixvmhd8pa6fc8rn7wbxzvqjgz43mz1pambj89vbkzmw1c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/minizinc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minizinc-mode";
sha256 = "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c";
name = "minizinc-mode";
};
@@ -38077,7 +38306,7 @@
sha256 = "0vwvvhzqiad82qvfwygb2arq1mdvh1lj6q2as0a92fg1vc95qcb0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/minor-mode-hack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minor-mode-hack";
sha256 = "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj";
name = "minor-mode-hack";
};
@@ -38098,7 +38327,7 @@
sha256 = "12k9ii4090dn03xvgqisl4zl4qi33054zxyfkqzzpa9wv72h4knc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mip-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mip-mode";
sha256 = "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar";
name = "mip-mode";
};
@@ -38116,7 +38345,7 @@
sha256 = "0sc4l0prwmakxmdq22xd5mj8ddwhzrs034zmx2swi2k3s07x15id";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/misc-cmds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/misc-cmds";
sha256 = "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl";
name = "misc-cmds";
};
@@ -38134,7 +38363,7 @@
sha256 = "1mksmxy741sv7d5lr9wlj4klb0sg06bg5z1zpd5hj0bd4b3mx7x0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/misc-fns";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/misc-fns";
sha256 = "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam";
name = "misc-fns";
};
@@ -38155,7 +38384,7 @@
sha256 = "1d08i2cfn1q446nyyji0hi9vlw7bzkpxhn6653jz2k77vd2y0wmk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mkdown";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mkdown";
sha256 = "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1";
name = "mkdown";
};
@@ -38176,7 +38405,7 @@
sha256 = "1lcc2p9qz70kpykgx82isv0qiqlsajp4vvcj6bvag92d7h9yk9bv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mmm-jinja2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmm-jinja2";
sha256 = "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z";
name = "mmm-jinja2";
};
@@ -38196,7 +38425,7 @@
sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mmm-mako";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmm-mako";
sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn";
name = "mmm-mako";
};
@@ -38217,7 +38446,7 @@
sha256 = "04rapmqblfjvmdccm9kqi8gn0him1x2q7hjwsyb8mg4lwxcd7qp9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mmm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmm-mode";
sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw";
name = "mmm-mode";
};
@@ -38238,7 +38467,7 @@
sha256 = "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmt";
sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq";
name = "mmt";
};
@@ -38259,7 +38488,7 @@
sha256 = "1dh92hzpicfvrlg6swrw4igwb771xbsmsf7hxp1a4iry4w8dk398";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mo-git-blame";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mo-git-blame";
sha256 = "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x";
name = "mo-git-blame";
};
@@ -38280,7 +38509,7 @@
sha256 = "0k0scl9z35d8x4ikxm2db1frpbx151p2m181fa1armxbd9lbfvnn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mo-vi-ment-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mo-vi-ment-mode";
sha256 = "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7";
name = "mo-vi-ment-mode";
};
@@ -38301,7 +38530,7 @@
sha256 = "04hbd7mv29v3fv4ld0b3skrir0wp9dix2n5nbqp63fj6n5i4cyyz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mobdebug-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mobdebug-mode";
sha256 = "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8";
name = "mobdebug-mode";
};
@@ -38322,7 +38551,7 @@
sha256 = "0wddbk510k2c8gnz0b1l1v4bw1vxk8y0fk1ln7kb67h5kvhyr9h3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mocha";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mocha";
sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx";
name = "mocha";
};
@@ -38343,7 +38572,7 @@
sha256 = "1f8h5c9vvwynq92b1ii5hdpqmf52l5j443ir5hdbiigq30wkwlhx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mocha-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mocha-snippets";
sha256 = "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds";
name = "mocha-snippets";
};
@@ -38364,7 +38593,7 @@
sha256 = "0dngznaraphpc5amn9n120la7ga3rj7h67pnnal6qwflh5rqcmss";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mocker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mocker";
sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3";
name = "mocker";
};
@@ -38385,7 +38614,7 @@
sha256 = "0r24186d1q9436h3qhqz1z8q978d01an0dvpvzirf4x9ickrib3k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/modalka";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/modalka";
sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c";
name = "modalka";
};
@@ -38406,7 +38635,7 @@
sha256 = "0npv2njvmn07cscz4zll6jdg584wsc0hw4v343vlknl097ixxfi5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mode-icons";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mode-icons";
sha256 = "1dqcry27rz7afyvjg7345wysp6wmh8fpj32ysk5iw5i7v5scf6kf";
name = "mode-icons";
};
@@ -38427,7 +38656,7 @@
sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mode-line-debug";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mode-line-debug";
sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd";
name = "mode-line-debug";
};
@@ -38445,7 +38674,7 @@
sha256 = "1dlprk1jlfw7b7vnxi0d0mf85737wkjc5fkvycx8nawngb2fqhbw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/modeline-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/modeline-char";
sha256 = "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp";
name = "modeline-char";
};
@@ -38463,7 +38692,7 @@
sha256 = "1r4zq355h570hk7qq0ik121bwsr4hjnhacal4d4h119d11gq2p8d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/modeline-posn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/modeline-posn";
sha256 = "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk";
name = "modeline-posn";
};
@@ -38473,6 +38702,27 @@
license = lib.licenses.free;
};
}) {};
+ modern-cpp-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "modern-cpp-font-lock";
+ version = "20160520.528";
+ src = fetchFromGitHub {
+ owner = "ludwigpacifici";
+ repo = "modern-cpp-font-lock";
+ rev = "6b19fb50bc03b7cf5bb77ca98e0f1eccbf3df56e";
+ sha256 = "1p0wnfzb4dq8q9mnzx403bip90lwa0j8rcd9h2z2399is6fghd53";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/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;
+ };
+ }) {};
modtime-skip-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "modtime-skip-mode";
@@ -38484,7 +38734,7 @@
sha256 = "0ri841cwx2mx8ri50lhvifmxnysdc022421mlmklql0252kn775l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/modtime-skip-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/modtime-skip-mode";
sha256 = "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28";
name = "modtime-skip-mode";
};
@@ -38505,7 +38755,7 @@
sha256 = "1567k0zacdf9zlmypb8fywz49n37hm8p60vrq2jqql8n8nq325gq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/moe-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/moe-theme";
sha256 = "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6";
name = "moe-theme";
};
@@ -38526,7 +38776,7 @@
sha256 = "1hqa59pdrnwfykyl58lr8pfbh2f13sygvmrh707hbwc2aii0jjv2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/molokai-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/molokai-theme";
sha256 = "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf";
name = "molokai-theme";
};
@@ -38547,7 +38797,7 @@
sha256 = "0z8mcfhj425hb91fkj1pyg3apw1kf4mgy8lx6n1sc8zmib38py0x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mongo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mongo";
sha256 = "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai";
name = "mongo";
};
@@ -38568,7 +38818,7 @@
sha256 = "1p9p0yp68wb7f1qf0c02fk7ayb7dw6gv57368ksa6nw76w58hhfm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/monky";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/monky";
sha256 = "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz";
name = "monky";
};
@@ -38589,7 +38839,7 @@
sha256 = "1sxhpvxapzgrwvzibkg7zd3ppmfcz5rhrbvg73b8rggjg4m5snyf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/monochrome-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/monochrome-theme";
sha256 = "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9";
name = "monochrome-theme";
};
@@ -38610,7 +38860,7 @@
sha256 = "02fyhijyn9awa5ag57kyk637vy9pfdica58zhdv24vqd4m81yby3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/monokai-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/monokai-theme";
sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a";
name = "monokai-theme";
};
@@ -38631,7 +38881,7 @@
sha256 = "0jac2i5hwdi65rrif0xq86wsimxlpwcfbzsv7fjhc5f16bs6dmnk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/monroe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/monroe";
sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig";
name = "monroe";
};
@@ -38652,7 +38902,7 @@
sha256 = "0bz35m0drjl12f9y42a79nnzxz5ahf5m7c2l2nfz8fyif270ph1y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/moonscript";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/moonscript";
sha256 = "1fi4hg5gk5zpfkrk0hqghghkzbbi33v48piq2i085i4nc6m3imp0";
name = "moonscript";
};
@@ -38665,15 +38915,15 @@
morlock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "morlock";
- version = "20150815.1134";
+ version = "20160521.1030";
src = fetchFromGitHub {
owner = "tarsius";
repo = "morlock";
- rev = "804131c7cff5dafa762c666fd66458111e4ee36f";
- sha256 = "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy";
+ rev = "185e3679ebeef3dc58555301e0958e864de775e5";
+ sha256 = "0kjqdm6kzhgjmfdj4n95ivffw1wqf4r3gk62fvhfi4w29g7wd16j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/morlock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/morlock";
sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna";
name = "morlock";
};
@@ -38694,7 +38944,7 @@
sha256 = "10mf96r75558scn71pri71aa8nhp6hmnb5rwjxlh5dlf80r5dfd7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mote-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mote-mode";
sha256 = "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9";
name = "mote-mode";
};
@@ -38715,7 +38965,7 @@
sha256 = "17570labnwdnwca2cg4ga0mrrm00n0h3wlxry823k5yn3k93rnj1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/motion-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/motion-mode";
sha256 = "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0";
name = "motion-mode";
};
@@ -38733,7 +38983,7 @@
sha256 = "0rakxcpqdx175hic3ykwbd5if53dvvf0sxhq0gplpsybpqvkimyv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mouse+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mouse+";
sha256 = "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8";
name = "mouse-plus";
};
@@ -38754,7 +39004,7 @@
sha256 = "05pzplb3gmlnlvn2azbxdlf4vrkvk8fc9dkgi2nq4shysnh4c9v7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mouse-slider-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mouse-slider-mode";
sha256 = "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy";
name = "mouse-slider-mode";
};
@@ -38772,7 +39022,7 @@
sha256 = "1831jpi06hi5v2jdjgs83jma7fp8xiqdmvvwxfyp2zpbfwi1lkb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mouse3";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mouse3";
sha256 = "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777";
name = "mouse3";
};
@@ -38793,7 +39043,7 @@
sha256 = "0baynb6gq04rxh10l6rn0myrhg7c7fwqaryiiyddp4jy7llf83c8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/move-dup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/move-dup";
sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f";
name = "move-dup";
};
@@ -38814,7 +39064,7 @@
sha256 = "1i8nbxmxi9yblik7ma3wm19sajk1pgpw83mj990vhj1yl1k7m136";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/move-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/move-text";
sha256 = "04bfrkanafmbrdyw06ciw9kiyn7h3kpikxk3clx2gc04jl67hzgy";
name = "move-text";
};
@@ -38835,7 +39085,7 @@
sha256 = "179mc70x3dvj0cz6yyhs00ndh0xvk71gmiscln9y0f1ngxr5h338";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mowedline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mowedline";
sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb";
name = "mowedline";
};
@@ -38856,7 +39106,7 @@
sha256 = "1g06i3d8xv8ja6nfww4k60l3467xr1s9xsk7i6dbicq0lf8559h9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/moz";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/moz";
sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi";
name = "moz";
};
@@ -38877,7 +39127,7 @@
sha256 = "0fssn33ld6xhjlwg1dbrjg8sa0pjmglq0dw792yrmvm4fj0zjph8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/moz-controller";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/moz-controller";
sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd";
name = "moz-controller";
};
@@ -38887,6 +39137,27 @@
license = lib.licenses.free;
};
}) {};
+ mozc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "mozc";
+ version = "20160102.1806";
+ src = fetchFromGitHub {
+ owner = "google";
+ repo = "mozc";
+ rev = "0ccaad35074f21caeb3732348b71b60af6b2a461";
+ sha256 = "1l1qds7mzn7cx0ijdwcdihqbmidwh16a96v4la9ris07k5fxqiph";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mozc";
+ sha256 = "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba";
+ name = "mozc";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/mozc";
+ license = lib.licenses.free;
+ };
+ }) {};
mozc-im = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mozc }:
melpaBuild {
pname = "mozc-im";
@@ -38898,7 +39169,7 @@
sha256 = "0cpcldizgyr125j7lzkl8l6jw1hc3fb12cwgkpjrl6pjpr80vb15";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mozc-im";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mozc-im";
sha256 = "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10";
name = "mozc-im";
};
@@ -38919,7 +39190,7 @@
sha256 = "1mbpkjc6sk7qqmgsmr5a5l2ycwnqp8bkwgikdavgs6hnal10bkmn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mozc-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mozc-popup";
sha256 = "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687";
name = "mozc-popup";
};
@@ -38940,7 +39211,7 @@
sha256 = "1vwciy6hcbcyid41bykibx6ii1y9ln7kdxn7cjwfjrgd3kl9wg19";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mozc-temp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mozc-temp";
sha256 = "0x1bsa1py0kn73hzbsb4ijl0bqng8nib191vgn6xq8f5cx55044d";
name = "mozc-temp";
};
@@ -38961,7 +39232,7 @@
sha256 = "11c8pr3s77aq34ic32lnsialwh8bw3m78kj838xl2aab2pgrlny2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mpages";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mpages";
sha256 = "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs";
name = "mpages";
};
@@ -38982,7 +39253,7 @@
sha256 = "09731mwm23b6ic53366lnxy2p7dfd245yh75gaf6ijfa22jks7gb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mpg123";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mpg123";
sha256 = "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8";
name = "mpg123";
};
@@ -39003,7 +39274,7 @@
sha256 = "193j90sgn1zgl00mji86wll4djj57vk5arhwbmhhf5b1qx3wpbhm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mpv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mpv";
sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l";
name = "mpv";
};
@@ -39024,7 +39295,7 @@
sha256 = "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/msvc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/msvc";
sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3";
name = "msvc";
};
@@ -39045,7 +39316,7 @@
sha256 = "1gxspy50gh7j4sysvr17fvvp8p417ww39ii5dy0fxncfwczdsa19";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mu-cite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mu-cite";
sha256 = "0ap21sw4r2x774q2np6rhrxh2m2rf3f6ak3k71iar159chx32y6q";
name = "mu-cite";
};
@@ -39066,7 +39337,7 @@
sha256 = "0klnpbb47l3s8cdv1ikldiqw83mggxcbnhlvs3g13a36vx6cxxp4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mu4e-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mu4e-alert";
sha256 = "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm";
name = "mu4e-alert";
};
@@ -39087,7 +39358,7 @@
sha256 = "1cvpzs65fjmhdza1vi2lpk68vkvivb0igrpgm42andi42gc6k50b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mu4e-maildirs-extension";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mu4e-maildirs-extension";
sha256 = "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi";
name = "mu4e-maildirs-extension";
};
@@ -39108,7 +39379,7 @@
sha256 = "0f5hc6mgq0hg1wwnvqd4fp7ck58lcavvgqjggz9zlhrjgkmynjxx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/multi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi";
sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig";
name = "multi";
};
@@ -39129,7 +39400,7 @@
sha256 = "1aswpv1m02n26620hgkcfd38f06bzmmijlr9rs5krv6snq5gdb8g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/multi-compile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-compile";
sha256 = "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz";
name = "multi-compile";
};
@@ -39147,7 +39418,7 @@
sha256 = "1w1jwfznpl214a1xx46zlgqbx9c5yjzpyqqrkn3xqjgnj485yhkl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/multi-eshell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-eshell";
sha256 = "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d";
name = "multi-eshell";
};
@@ -39160,15 +39431,15 @@
multi-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "multi-line";
- version = "20151206.1913";
+ version = "20160520.1810";
src = fetchFromGitHub {
owner = "IvanMalison";
repo = "multi-line";
- rev = "a46b34340a3dd1cba42ee0f41d6b599500f06233";
- sha256 = "13rp6kbabjy9dy0x4696065yyaxlgmfnwcqq9vcw2jhbb2gl9gs5";
+ rev = "9e40a0e345f29b8a5e47e9bd4b02ceb57161928e";
+ sha256 = "0j0wb4a9hbaahhzc2xbmqg80jbsi2kyw9ngzrxgs36rgj7zh2s5s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/multi-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-line";
sha256 = "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp";
name = "multi-line";
};
@@ -39188,7 +39459,7 @@
sha256 = "0lcx73vzm7zwvzzc53pfb5y16bhvq9cm9fdy63d3242s8v834z3c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/multi-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-project";
sha256 = "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x";
name = "multi-project";
};
@@ -39206,7 +39477,7 @@
sha256 = "062c52xd469jdmsq4fvdhsmgfjrlanv0bb1w5vglz7bsn68d2bim";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/multi-term";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-term";
sha256 = "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx";
name = "multi-term";
};
@@ -39227,7 +39498,7 @@
sha256 = "0mc4kkgwnwfk27wwc21nw5ly7qcsl7y5bd8wf2y8r6pxhvwran4n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/multi-web-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-web-mode";
sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5";
name = "multi-web-mode";
};
@@ -39248,7 +39519,7 @@
sha256 = "1ispa0wxpkydm0cyj4scyyacfrbilrip5v8bsrcqfc6qs597z8rf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/multicolumn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multicolumn";
sha256 = "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09";
name = "multicolumn";
};
@@ -39269,7 +39540,7 @@
sha256 = "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/multifiles";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multifiles";
sha256 = "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz";
name = "multifiles";
};
@@ -39282,15 +39553,15 @@
multiple-cursors = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "multiple-cursors";
- version = "20160513.616";
+ version = "20160520.851";
src = fetchFromGitHub {
owner = "magnars";
repo = "multiple-cursors.el";
- rev = "432a3fc8d636175986b0f33beb6db3daae7fbae8";
- sha256 = "15lqf24xi04hixx94jf40qd56r09yx16ii4gg6msj6kflg1f21yk";
+ rev = "a508978cd9213fc8c9f065ad5aa933462b86f215";
+ sha256 = "173ljscxgzsfznlc9b6mhy63769g8jh57z1vqdryykg63l7zkbd5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/multiple-cursors";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multiple-cursors";
sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x";
name = "multiple-cursors";
};
@@ -39311,7 +39582,7 @@
sha256 = "1n2ymd92qpvsby6ms0l3kjhdzzc47rri2aiscc6bs07hm4mjpr9q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mustache";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mustache";
sha256 = "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g";
name = "mustache";
};
@@ -39332,7 +39603,7 @@
sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mustache-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mustache-mode";
sha256 = "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs";
name = "mustache-mode";
};
@@ -39353,7 +39624,7 @@
sha256 = "19qd34dcfspv621p4y07zhq2pr8pwss3lcssm9sfhr6w2vmvgcr4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mustang-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mustang-theme";
sha256 = "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr";
name = "mustang-theme";
};
@@ -39374,7 +39645,7 @@
sha256 = "170qhbbvcv9dg6jzfd9r95in5m8z1k647mn0gaqflfj0hvq5hwgf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mustard-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mustard-theme";
sha256 = "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik";
name = "mustard-theme";
};
@@ -39395,7 +39666,7 @@
sha256 = "0w9blrm3596hmip8jg2hlz9sl31ci89b90jglmg4ipldgrgj3ly6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mutant";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mutant";
sha256 = "0m5l5r37zb0ig96757ldyl9hbb01lknzqf08ap6dsmdwr1zayvp1";
name = "mutant";
};
@@ -39413,7 +39684,7 @@
sha256 = "1xihp3zdqs9054j3bfrd9wnahsvvxjk1ags1iy50ncv5850ppjis";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/muttrc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/muttrc-mode";
sha256 = "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn";
name = "muttrc-mode";
};
@@ -39434,7 +39705,7 @@
sha256 = "1jg3xrk44lspxli0zr02jcsl8phj0ns7ly3dkd7rx2wgsk69ari3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mvn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mvn";
sha256 = "0bpg9zpyfdyn9xvrbmq4gb10hd701mc49np8arlmnilphb3fdgzs";
name = "mvn";
};
@@ -39455,7 +39726,7 @@
sha256 = "0qdlbyq47gr65yq5ri8s9lxw4wp9fmyqc2prkh560d4hkvw60aw3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mwe-log-commands";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mwe-log-commands";
sha256 = "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn";
name = "mwe-log-commands";
};
@@ -39476,7 +39747,7 @@
sha256 = "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mwim";
sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k";
name = "mwim";
};
@@ -39497,7 +39768,7 @@
sha256 = "0cf0c9g9k2lk1ifi2dlw7c601sh1ycxf3fgl2hy5wliyd6l9rf86";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/myanmar-input-methods";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/myanmar-input-methods";
sha256 = "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd";
name = "myanmar-input-methods";
};
@@ -39518,7 +39789,7 @@
sha256 = "0a9a6hmv8vjmp6h9mnzin9vc0sncg79v5z72pasvbrplfxijzan0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mykie";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mykie";
sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj";
name = "mykie";
};
@@ -39539,7 +39810,7 @@
sha256 = "18ml0qz3iipm9w36zvwz77cbbrg885jgvzk6z4a33xcfp524xhma";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mynt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mynt-mode";
sha256 = "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b";
name = "mynt-mode";
};
@@ -39560,7 +39831,7 @@
sha256 = "0q5809hq22hyzxx5xr2hwwf3jh3qlpf3mkbl3fxqq93gm16plh1i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mysql2sqlite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mysql2sqlite";
sha256 = "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd";
name = "mysql2sqlite";
};
@@ -39581,7 +39852,7 @@
sha256 = "18wqgjn38jxzsbivmf2fkcq3r1y4lffh3dbpv1jj7s9qn91pyp6a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/myterminal-controls";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/myterminal-controls";
sha256 = "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2";
name = "myterminal-controls";
};
@@ -39602,7 +39873,7 @@
sha256 = "1lp1bx9110vqzjww94va8pdks39qvqzl8rf0p8na1q0qn06rnk9h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/n3-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/n3-mode";
sha256 = "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh";
name = "n3-mode";
};
@@ -39623,7 +39894,7 @@
sha256 = "1pd6c0jc1zxx3i3nk4qdx7gdf1qn8sc9jgqd72pkkpzvdwv998cp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/n4js";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/n4js";
sha256 = "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m";
name = "n4js";
};
@@ -39641,7 +39912,7 @@
sha256 = "0zq13qjqfpxjba1bhdqqxkvgxq1dxyb7hd1bpnk6cbhsxr6mr50i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/naked";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/naked";
sha256 = "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq";
name = "naked";
};
@@ -39662,7 +39933,7 @@
sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/name-this-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/name-this-color";
sha256 = "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb";
name = "name-this-color";
};
@@ -39683,7 +39954,7 @@
sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nameframe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nameframe";
sha256 = "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp";
name = "nameframe";
};
@@ -39704,7 +39975,7 @@
sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nameframe-perspective";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nameframe-perspective";
sha256 = "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x";
name = "nameframe-perspective";
};
@@ -39725,7 +39996,7 @@
sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nameframe-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nameframe-projectile";
sha256 = "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k";
name = "nameframe-projectile";
};
@@ -39746,7 +40017,7 @@
sha256 = "1g8852c68ca4b4wf781aiyhbgk2a3g39jw1mijzpp0lmmnsbmmwc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nameless";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nameless";
sha256 = "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq";
name = "nameless";
};
@@ -39767,7 +40038,7 @@
sha256 = "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/names";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/names";
sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg";
name = "names";
};
@@ -39788,7 +40059,7 @@
sha256 = "157hhb253m6a9l5wy6x8w5ar3x0qz1326l7a0npxif6pma0dd140";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/namespaces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/namespaces";
sha256 = "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr";
name = "namespaces";
};
@@ -39809,7 +40080,7 @@
sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nand2tetris";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nand2tetris";
sha256 = "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd";
name = "nand2tetris";
};
@@ -39830,7 +40101,7 @@
sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nand2tetris-assembler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nand2tetris-assembler";
sha256 = "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy";
name = "nand2tetris-assembler";
};
@@ -39850,7 +40121,7 @@
sha256 = "1nzkamy53kl1g4y1jm7j5zgpkdsyg5ykp8zp1f0bg5mhy8mmf75w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nanowrimo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nanowrimo";
sha256 = "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31";
name = "nanowrimo";
};
@@ -39871,7 +40142,7 @@
sha256 = "0mxf61ky1dd7r2qd4j7k6bdppmkilkq5l9gv257a12539wkw5yq2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/naquadah-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/naquadah-theme";
sha256 = "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1";
name = "naquadah-theme";
};
@@ -39889,7 +40160,7 @@
sha256 = "1lyszm94pd3jxs73v7k0aaazm0sd2rpz2pphcdag7lk7k6vppd9n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/narrow-indirect";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/narrow-indirect";
sha256 = "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj";
name = "narrow-indirect";
};
@@ -39910,7 +40181,7 @@
sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/narrow-reindent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/narrow-reindent";
sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0";
name = "narrow-reindent";
};
@@ -39931,7 +40202,7 @@
sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/narrowed-page-navigation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/narrowed-page-navigation";
sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7";
name = "narrowed-page-navigation";
};
@@ -39952,7 +40223,7 @@
sha256 = "1vkvv8v26ln8ngxf33h9cg31py2nlaf9wgc17i6v9i3s6am9gmkr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nasm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nasm-mode";
sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17";
name = "nasm-mode";
};
@@ -39973,7 +40244,7 @@
sha256 = "0kfqpji6z3ra8sc951vmm1bzyhkws7vb5q6djvl45wlf1wrgkc4p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nav";
sha256 = "0ly1fk4ak1p8gkz3qmmxyslcjgicnfm8bpqqgndvwcznp8pvpjml";
name = "nav";
};
@@ -39994,7 +40265,7 @@
sha256 = "07wjicbvzg7cz983hv0p2qw1qlln07djigkmbqfpwvg3fk50fdyg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nav-flash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nav-flash";
sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3";
name = "nav-flash";
};
@@ -40015,7 +40286,7 @@
sha256 = "0vmrh8y8q7zch48iz9lk4n0b3s1b8zp3wki3906s709b5ajfvk7h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/navi-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/navi-mode";
sha256 = "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi";
name = "navi-mode";
};
@@ -40036,7 +40307,7 @@
sha256 = "15l2zmm8bp4ip8m1hfxkvswfwa29pg72kisfya2n5v900r184a4m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/navi2ch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/navi2ch";
sha256 = "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3";
name = "navi2ch";
};
@@ -40057,7 +40328,7 @@
sha256 = "0g7rmvfm0ldv0d2x7f8k761mgmi47siyspfi1ns40ijhkpc15x8l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/navorski";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/navorski";
sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7";
name = "navorski";
};
@@ -40078,7 +40349,7 @@
sha256 = "0gbv5fv401z58ycbqlivqamf5kp3x6krhi36q7q0m4gvy448xz0n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ncl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ncl-mode";
sha256 = "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9";
name = "ncl-mode";
};
@@ -40099,7 +40370,7 @@
sha256 = "178gjv7kq97p9i4naxql7xabvmchw5x8idkpyjqqky3b24v5wkis";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nclip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nclip";
sha256 = "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw";
name = "nclip";
};
@@ -40120,7 +40391,7 @@
sha256 = "0xij6gqa6xmjz041vmi4k1xfp7bsp51vk4x6mdy4rv7556sznrrb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nemerle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nemerle";
sha256 = "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6";
name = "nemerle";
};
@@ -40141,7 +40412,7 @@
sha256 = "1sf8yw1vg01r4969jk1x1k4nad4q7bf1fd8vnranxvhz9md34262";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/neotree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/neotree";
sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06";
name = "neotree";
};
@@ -40162,7 +40433,7 @@
sha256 = "1kkflj2qnrn6kzh1l6bjl5n5507qilb22pqj3h0f2m6hfyn0sw5z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/netherlands-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/netherlands-holidays";
sha256 = "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf";
name = "netherlands-holidays";
};
@@ -40183,7 +40454,7 @@
sha256 = "0p00mmid04pfsna4ify3cy0b9lx431q1r5h772hihsg4f1rs2ppy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/never-comment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/never-comment";
sha256 = "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s";
name = "never-comment";
};
@@ -40204,7 +40475,7 @@
sha256 = "1zzsfyqwj1k4zh30gl491ipavr9pp9djwjq3zz2q3xh7jys68w8r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/newlisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/newlisp-mode";
sha256 = "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd";
name = "newlisp-mode";
};
@@ -40225,7 +40496,7 @@
sha256 = "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nexus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nexus";
sha256 = "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd";
name = "nexus";
};
@@ -40246,7 +40517,7 @@
sha256 = "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nginx-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nginx-mode";
sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c";
name = "nginx-mode";
};
@@ -40267,7 +40538,7 @@
sha256 = "0hgrf628ris94pmvmgibkq6zmwrqkv9q70c5a2gsbdpqmfikj8m1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/niceify-info";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/niceify-info";
sha256 = "1s9c8yxbab9zl5jx38alwa2hpp4zj5cb9a5gfm3x09jf3iw768bl";
name = "niceify-info";
};
@@ -40288,7 +40559,7 @@
sha256 = "147vw3qlsply5h8cjmjzqr5dv9jzf9xlmhjnmcpyb1r7krh1l8xm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/niflheim-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/niflheim-theme";
sha256 = "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36";
name = "niflheim-theme";
};
@@ -40309,7 +40580,7 @@
sha256 = "04f5ff7s9ma6wrb5hyjcy7qnr6pmb013kan4f0is31n6nmsidzqn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nim-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nim-mode";
sha256 = "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6";
name = "nim-mode";
};
@@ -40330,7 +40601,7 @@
sha256 = "14iwzyxm0g45315n1761a5q6h28q54cy2yh5hb5070s6fcbkqp09";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ninja-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ninja-mode";
sha256 = "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik";
name = "ninja-mode";
};
@@ -40351,7 +40622,7 @@
sha256 = "08nzcsn33hchm1bg814karc8f7amma5zvj4mrrzmhmxh0541w07w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nix-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nix-mode";
sha256 = "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s";
name = "nix-mode";
};
@@ -40372,7 +40643,7 @@
sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nix-sandbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nix-sandbox";
sha256 = "13zr0jbc6if2wvyiplay2gkd5548imfm38x1qy1dw6m2vhbzwp0k";
name = "nix-sandbox";
};
@@ -40393,7 +40664,7 @@
sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nixos-options";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nixos-options";
sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm";
name = "nixos-options";
};
@@ -40406,15 +40677,15 @@
nlinum-relative = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, nlinum }:
melpaBuild {
pname = "nlinum-relative";
- version = "20160515.859";
+ version = "20160520.903";
src = fetchFromGitHub {
owner = "CodeFalling";
repo = "nlinum-relative";
- rev = "de688db04a9bc2a0e3803dfeb34d3dc0a42eaf5d";
- sha256 = "1ibp5svlcnbhsv47j70pcyxic431n0dh3381hg3bfsylrx970cx6";
+ rev = "52f81737b5b888bd0d4389b1d7e9af6302527931";
+ sha256 = "090qgpi46m2ypgi23lkb34vji6m13xydp90y367585p43sh4qw55";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nlinum-relative";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nlinum-relative";
sha256 = "15ifh5bfsarkifx6m7d5rhx6hqlnm231plkf623885kar7i85ia4";
name = "nlinum-relative";
};
@@ -40435,7 +40706,7 @@
sha256 = "1skbjmyikzyiic470sngskggs05r35m8vzm69wbmrjapczginnak";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nm";
sha256 = "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw";
name = "nm";
};
@@ -40456,7 +40727,7 @@
sha256 = "0gzxcq0gki89dz9ad26683zhq1nif3wdz185cdplwy68z9szbdx1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nnir-est";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nnir-est";
sha256 = "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv";
name = "nnir-est";
};
@@ -40477,7 +40748,7 @@
sha256 = "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/noccur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/noccur";
sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g";
name = "noccur";
};
@@ -40498,7 +40769,7 @@
sha256 = "1a1pp3sd5g4wkhywb5jfchcdpjsjb0iyhk2sxvd0gpc4kk4zh6xs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/noctilux-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/noctilux-theme";
sha256 = "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp";
name = "noctilux-theme";
};
@@ -40519,7 +40790,7 @@
sha256 = "1cgmq00ackabwcl4h0n2bb8y08wz0ir5rzca2q3sk4asly6d02m7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/node-resolver";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/node-resolver";
sha256 = "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh";
name = "node-resolver";
};
@@ -40540,7 +40811,7 @@
sha256 = "03vcs458rcn1hgfvmgmijadjvri7zlh2z4lxgaplzfnga13mapym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nodejs-repl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nodejs-repl";
sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907";
name = "nodejs-repl";
};
@@ -40561,7 +40832,7 @@
sha256 = "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/noflet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/noflet";
sha256 = "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3";
name = "noflet";
};
@@ -40580,7 +40851,7 @@
sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nose";
sha256 = "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk";
name = "nose";
};
@@ -40592,14 +40863,14 @@
}) {};
notmuch = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "notmuch";
- version = "20160501.2011";
+ version = "20160519.653";
src = fetchgit {
url = "git://git.notmuchmail.org/git/notmuch";
- rev = "1aa6f90a10794951365626830e8ebf29cf3736c8";
- sha256 = "199y6im3311hm03zs7fak8psvmdjyfdwnpc0f76d67scxa9srw7b";
+ rev = "7e6e23c36e290d4b22b0449766a6ef2107f1ef6c";
+ sha256 = "0w2s1abnjm61gxaanjx6d1hhzn07m3kbksp5739pvqjjwnixf9mi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/notmuch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/notmuch";
sha256 = "173d1gf5rd4nbjwg91486ibg54n3qlpwgyvkcy4d30jm4vqwqrqv";
name = "notmuch";
};
@@ -40620,7 +40891,7 @@
sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/notmuch-labeler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/notmuch-labeler";
sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0";
name = "notmuch-labeler";
};
@@ -40638,7 +40909,7 @@
sha256 = "0mmdf3z9299hbs3wr8hqgpmg74sb2xm0rxyh38sjcqmk8f310rqh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/novice+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/novice+";
sha256 = "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf";
name = "novice-plus";
};
@@ -40659,7 +40930,7 @@
sha256 = "0jahr1380919p272srym1pp16ifdz69fn1m45ppglm54q4a741d8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/noxml-fold";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/noxml-fold";
sha256 = "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc";
name = "noxml-fold";
};
@@ -40680,7 +40951,7 @@
sha256 = "1nwj1ax2qmmlab4lik0b7japhqd424d0rb995dfv89p99gp8vmvc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nrepl-eval-sexp-fu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nrepl-eval-sexp-fu";
sha256 = "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j";
name = "nrepl-eval-sexp-fu";
};
@@ -40701,7 +40972,7 @@
sha256 = "1129r3rzmfbl8nxjz71xnlyaszhhldawj467zbl36brdadp014n1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nrepl-sync";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nrepl-sync";
sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd";
name = "nrepl-sync";
};
@@ -40722,7 +40993,7 @@
sha256 = "1w80mbwlvmpd5ff7vy84z61b27klzh9z4wa6m2g7cy674fw4r1xp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nsis-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nsis-mode";
sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l";
name = "nsis-mode";
};
@@ -40732,22 +41003,22 @@
license = lib.licenses.free;
};
}) {};
- nu-mode = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, undo-tree }:
+ nu-mode = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, transpose-frame, undo-tree }:
melpaBuild {
pname = "nu-mode";
- version = "20150413.1615";
+ version = "20160520.914";
src = fetchFromGitHub {
owner = "pyluyten";
repo = "emacs-nu";
- rev = "e2b509a9b631e98f6feabdc783c01a6b57d05fc2";
- sha256 = "0nbmpnljl0wdkwmxzg6lqd3mand9w043qmwp727hb84gxy0j4dib";
+ rev = "347f6c958f20d6e8e46bc7122556405b3a434242";
+ sha256 = "17nj8bkqw34hsbb8b51rl6221hlpxw265h2cwxqf64cswm22y313";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nu-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nu-mode";
sha256 = "0nzv3p62k8yyyww6idlxyi94q4d07nis7ydypar8d01jfqlrybkn";
name = "nu-mode";
};
- packageRequires = [ helm undo-tree ];
+ packageRequires = [ helm transpose-frame undo-tree ];
meta = {
homepage = "https://melpa.org/#/nu-mode";
license = lib.licenses.free;
@@ -40764,7 +41035,7 @@
sha256 = "045m83rdqryjpqh6y9s6x0yf9fw9xrwmxbm4qgg8ka164x9szv0n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/number";
sha256 = "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf";
name = "number";
};
@@ -40785,7 +41056,7 @@
sha256 = "1i0yymsx8kin28bkrgwkk9ngsmjh0gh5j4hb0k03bq4fy799f2xx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nummm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nummm-mode";
sha256 = "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0";
name = "nummm-mode";
};
@@ -40806,7 +41077,7 @@
sha256 = "0prag0ks511ifa5mdpqmizp5n8190dxp4vdr81ld9w9xv7migpd7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nvm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nvm";
sha256 = "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34";
name = "nvm";
};
@@ -40827,7 +41098,7 @@
sha256 = "199ii1658k4sp5krha77n9l5jblyvnvvvr28g2nbc74lfybckjwq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nyan-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nyan-mode";
sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv";
name = "nyan-mode";
};
@@ -40848,7 +41119,7 @@
sha256 = "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nyan-prompt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nyan-prompt";
sha256 = "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb";
name = "nyan-prompt";
};
@@ -40869,7 +41140,7 @@
sha256 = "0xs6787a4v7djgd2zz2v1pk14x27mg2ganz30j9f0gdiai7da6ch";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/o-blog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/o-blog";
sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja";
name = "o-blog";
};
@@ -40890,7 +41161,7 @@
sha256 = "058dyk1c3iw0ip8n8rfpskvqiriqilpclkzc18x73msp5svrh3lj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/oauth";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/oauth";
sha256 = "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz";
name = "oauth";
};
@@ -40910,7 +41181,7 @@
sha256 = "0z15n7cpprbhiamq26240g5bqsiw5mgyzdisi7j6hpybyk2zyl9q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-axiom";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-axiom";
sha256 = "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6";
name = "ob-axiom";
};
@@ -40931,7 +41202,7 @@
sha256 = "1nzli8wk3nd05j2z2fw511857qbawirhg8mfw21wqclkz8zqn813";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-browser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-browser";
sha256 = "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm";
name = "ob-browser";
};
@@ -40952,7 +41223,7 @@
sha256 = "01l8zvnfpc1vihnpqj75xlvjkk2hkvxpb1872jdzv2k1na2ajfxm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-coffee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-coffee";
sha256 = "16k8r9rqz4mayxl85pjdfsrz43k2hwcf8k7aff8wnic0ldzp6ivf";
name = "ob-coffee";
};
@@ -40973,7 +41244,7 @@
sha256 = "1xbczyqfqdig5w6jvx2kg57mk16sbiz5ysv445v83wqk0sz6nc9n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-cypher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-cypher";
sha256 = "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3";
name = "ob-cypher";
};
@@ -40994,7 +41265,7 @@
sha256 = "0kx95lvkvg6h6lhs9knlp8rwi05y8y0i8w8vs7mwm378syls0qk0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-diagrams";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-diagrams";
sha256 = "1r1p9l61az1jb5m4k2dwnkp9j8xlcb588gq4mcg796vnbdscfcy2";
name = "ob-diagrams";
};
@@ -41015,7 +41286,7 @@
sha256 = "0qknm1h2ijnzs1km51hqwpnv5083m9ngi3nbxd90r7d6vva5fhhk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-elixir";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-elixir";
sha256 = "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi";
name = "ob-elixir";
};
@@ -41036,7 +41307,7 @@
sha256 = "1pa7zclci87rd4fx731z37pdbdjabmknbr0xmdk1g92g0hjhk2rb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-go";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-go";
sha256 = "09d8jrzijf8gr08615rdmf366zgip43dxvyihy0yzhk7j0p3iahj";
name = "ob-go";
};
@@ -41057,7 +41328,7 @@
sha256 = "00mnpnlsd774z87ziqmaq9h4rbxmf197cm2kk4v6s15rs3np617m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-http";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-http";
sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss";
name = "ob-http";
};
@@ -41078,7 +41349,7 @@
sha256 = "071ma803l6ixg12brbc8p2bxnvl2skmr8r913pz07qh0n8k83zqf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-ipython";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-ipython";
sha256 = "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186";
name = "ob-ipython";
};
@@ -41099,7 +41370,7 @@
sha256 = "01cjwg27m0iqndkwwl0v5w8vvk270xvi81za3y5hyrmb7dq6bfy7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-kotlin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-kotlin";
sha256 = "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx";
name = "ob-kotlin";
};
@@ -41120,7 +41391,7 @@
sha256 = "1mk7qcf4svf4yk4mimcyhbw5imq3zps2vh2zzq9gwjcn17jnplhn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-lfe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-lfe";
sha256 = "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8";
name = "ob-lfe";
};
@@ -41141,7 +41412,7 @@
sha256 = "11cdf5nfmn5cc1i4kqxq0hks8d19sf5rwavpfmz39xysbnr65s68";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-lua";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-lua";
sha256 = "13ailb285bs9sm9qmjrpq0wjk7sp3w019p94pzrwmzqf52y1dapg";
name = "ob-lua";
};
@@ -41162,7 +41433,7 @@
sha256 = "15mzra45jcihgvddv69yxpml34hy15yz2hxcxz6a4la8vk6mw3ky";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-ml-marklogic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-ml-marklogic";
sha256 = "1y5cgba7gzlmhdrs0k7clgrxixdl4najj5271x1m023jch7bz7xl";
name = "ob-ml-marklogic";
};
@@ -41183,7 +41454,7 @@
sha256 = "0qibnn908a59jyfslsnpjanbm85f8xw9zywsqsh37nv27ncbx0hr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-mongo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-mongo";
sha256 = "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907";
name = "ob-mongo";
};
@@ -41204,7 +41475,7 @@
sha256 = "02vmy3nnk4yyjbp3r7zzv9sb3frv7kbj4a2a855iqa0isp8nhyfi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-php";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-php";
sha256 = "0n6m6rpd0rsk6idhxs9qf5pb6p9ch2immczj5br7h5xf1bc7x2fp";
name = "ob-php";
};
@@ -41225,7 +41496,7 @@
sha256 = "14scbds1rlmii52i0zr3s0r1wmga7qysj63c2dpinhagxa36d51n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-prolog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-prolog";
sha256 = "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s";
name = "ob-prolog";
};
@@ -41246,7 +41517,7 @@
sha256 = "1f8qz5bwz5yd3clvjc0zw3yf9m9fh5vn2gil69ay1a2n00qwkq78";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-redis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-redis";
sha256 = "1xsz4cc8cqx03ckpcwi7dc3l6v4c5mdbby37a9i0n5q6wd4r92mm";
name = "ob-redis";
};
@@ -41267,7 +41538,7 @@
sha256 = "09zxf158sspwv7j0kjjxzlymxi9ax7xpk5d5fry2jljskgn17csv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-restclient";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-restclient";
sha256 = "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk";
name = "ob-restclient";
};
@@ -41280,15 +41551,15 @@
ob-sagemath = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, sage-shell-mode }:
melpaBuild {
pname = "ob-sagemath";
- version = "20160510.1956";
+ version = "20160517.2028";
src = fetchFromGitHub {
owner = "stakemori";
repo = "ob-sagemath";
- rev = "df9467eff3a1aed8173dfb7d9e6e5ce48613cb4c";
- sha256 = "1dljszlrfwqflsclyn1k4c0faviybnkm4ql2qhdlysbf176gmqpr";
+ rev = "98560075eb0a9dc5ad1e3102ac1154543692d74d";
+ sha256 = "08p64ss3ia1gq6dsna5v3ajjwm5g9ma7yvd5y0jx91xssjqq5dja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-sagemath";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-sagemath";
sha256 = "02ispac1y4g7p7iyscf5p8lvp92ncrn6281jm9igyiny1w6hivy7";
name = "ob-sagemath";
};
@@ -41298,27 +41569,6 @@
license = lib.licenses.free;
};
}) {};
- ob-scala = callPackage ({ ensime, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "ob-scala";
- version = "20160209.935";
- src = fetchFromGitHub {
- owner = "reactormonk";
- repo = "ob-scala";
- rev = "e30cf06dc849f230db5ca57ec0e1f5281715942f";
- sha256 = "1ax78ggmzz4lmaw62j0cm8l0n60nyhp6c8f02mdszvv6vnpvyncm";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-scala";
- sha256 = "1cjbdfxkj5rk164wrad7r470xynfjjaa1aj130zbw9zmn36m6lza";
- name = "ob-scala";
- };
- packageRequires = [ ensime ];
- meta = {
- homepage = "https://melpa.org/#/ob-scala";
- license = lib.licenses.free;
- };
- }) {};
ob-sml = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sml-mode }:
melpaBuild {
pname = "ob-sml";
@@ -41330,7 +41580,7 @@
sha256 = "0gymna48igcixrapjmg842pnlsshhw8zplxwyyn0x2yrma9fjyyg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-sml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-sml";
sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn";
name = "ob-sml";
};
@@ -41351,7 +41601,7 @@
sha256 = "071rl0bvhwh5vqbl7n84shvzgqgwg2f5l9vb8wfs4y24hsqfgxmz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-swift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-swift";
sha256 = "19mcjfmijbajldm3jz8ij1x2p7d164mbq2ln6yb6iihxmdqnn2q4";
name = "ob-swift";
};
@@ -41372,7 +41622,7 @@
sha256 = "086z3smcfn5g599967vmxj3akppyqk9d64acm8zzj76zj29xfk1k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-translate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-translate";
sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz";
name = "ob-translate";
};
@@ -41393,7 +41643,7 @@
sha256 = "1ycqdjqn5361pcnc95hxhjqd3y96cjjnaylrnzwhmacl38jm3vai";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-typescript";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-typescript";
sha256 = "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p";
name = "ob-typescript";
};
@@ -41414,7 +41664,7 @@
sha256 = "16462cgq91jg7i97h440zss5vw2qkxgdy7gm148ns4djr2fchnf6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/oberon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/oberon";
sha256 = "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv";
name = "oberon";
};
@@ -41435,7 +41685,7 @@
sha256 = "138c1nm579vr37dqprqsakfkhs2awm3klzyyd6bv9rhkrysrpbqk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/objc-font-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/objc-font-lock";
sha256 = "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6";
name = "objc-font-lock";
};
@@ -41456,7 +41706,7 @@
sha256 = "00v21iw9wwxap8jhg9035cp47fm5v2djmldq6nprv860m01xlwh1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/obsidian-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/obsidian-theme";
sha256 = "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr";
name = "obsidian-theme";
};
@@ -41477,7 +41727,7 @@
sha256 = "0pnliw02crqw8hbg088klz54z6s1ih8q2lcn9mq5f12xi752hxm8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/occidental-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/occidental-theme";
sha256 = "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b";
name = "occidental-theme";
};
@@ -41498,7 +41748,7 @@
sha256 = "1v1c2481v2xgnw8kgbbqhqkdd41lzvki9hm3iypbf3n0jxz8nnzy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/occur-context-resize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/occur-context-resize";
sha256 = "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri";
name = "occur-context-resize";
};
@@ -41519,7 +41769,7 @@
sha256 = "1zj0xhvl5qx42injv0av4lyzd3jsjls1m368dqd2qnswhfw8wfn6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/occur-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/occur-x";
sha256 = "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g";
name = "occur-x";
};
@@ -41540,7 +41790,7 @@
sha256 = "155gmls6cz3zf4lcj89kzb96y7k0glx0f659jg5z0skgxq79hf48";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ocodo-svg-modelines";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ocodo-svg-modelines";
sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay";
name = "ocodo-svg-modelines";
};
@@ -41561,7 +41811,7 @@
sha256 = "0kjx68hk1svix237842maf91rhx7l4002yzq5hj33n4nfggqm09c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ocp-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ocp-indent";
sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw";
name = "ocp-indent";
};
@@ -41582,7 +41832,7 @@
sha256 = "0dp7dhmgrq078rjhpm1cr993qjqz7qgy2z4sn73qw6j55va7d9kw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/octicons";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/octicons";
sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk";
name = "octicons";
};
@@ -41603,7 +41853,7 @@
sha256 = "0p9ph62vnw1r9dbvrjyw356a9bjnzh0hglssi97dr0qd6cs8whf3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/octopress";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/octopress";
sha256 = "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0";
name = "octopress";
};
@@ -41624,7 +41874,7 @@
sha256 = "1bjrgj8klg7ly63vx90jpaih9virn02bhqi16p6z0mw36q1q7ysq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/offlineimap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/offlineimap";
sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b";
name = "offlineimap";
};
@@ -41645,7 +41895,7 @@
sha256 = "0y9fxrsxp1158fyjp4f69r7g2s7b6nbxlsmsb8clwqc8pmmg2z82";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/oldlace-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/oldlace-theme";
sha256 = "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8";
name = "oldlace-theme";
};
@@ -41666,7 +41916,7 @@
sha256 = "0mlklcgakcb2nafs25hpy31jwjd9rrrxc494b5kfcw3g5b3z8q40";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/olivetti";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/olivetti";
sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd";
name = "olivetti";
};
@@ -41687,7 +41937,7 @@
sha256 = "03szb2i2xk3nq578cz1drsddsbld03ryvykdfzmfvwcmlpaknvzb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/om-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/om-mode";
sha256 = "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j";
name = "om-mode";
};
@@ -41708,7 +41958,7 @@
sha256 = "1925mh47n4x9v780qp5l6cksl64v9mpyb87znsg93x6sxr0cvv4c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/omni-kill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-kill";
sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k";
name = "omni-kill";
};
@@ -41729,7 +41979,7 @@
sha256 = "1nvgh9wvgswcs3r958b579rsx540xrhlnafc6cmcd63z6yck19w0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/omni-log";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-log";
sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r";
name = "omni-log";
};
@@ -41750,7 +42000,7 @@
sha256 = "1x8af8jv4n83sl4rgj0d2rpmw9g78rknm1h523f3b1a5x4kdvsz6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/omni-quotes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-quotes";
sha256 = "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs";
name = "omni-quotes";
};
@@ -41771,7 +42021,7 @@
sha256 = "1icdk19vwihc8mn04yxl2brql2gssn3gxd5bv7ljdd6mn5hkw500";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/omni-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-scratch";
sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9";
name = "omni-scratch";
};
@@ -41792,7 +42042,7 @@
sha256 = "1lvnkdrav7h15p8d5ayhfsjynllwp4br1vqxmw0ppxnlyq7337n5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/omni-tags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-tags";
sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl";
name = "omni-tags";
};
@@ -41813,7 +42063,7 @@
sha256 = "0d6kjggi2p937ydpvw3fr2cxy5vj46dmfqbkb7a9jdhnzxadnwh5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/omniref";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omniref";
sha256 = "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj";
name = "omniref";
};
@@ -41834,7 +42084,7 @@
sha256 = "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/omnisharp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omnisharp";
sha256 = "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad";
name = "omnisharp";
};
@@ -41864,7 +42114,7 @@
sha256 = "01cssk6dxinfy1h431cx1yq5nbk0pc5j0h3iir2anzz1kfzbzilz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/omtose-phellack-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omtose-phellack-theme";
sha256 = "09nyc7sdhzy4vmngzdj6r7cv2nbbwqlcyyi2mcg5a8lml4f6fj5i";
name = "omtose-phellack-theme";
};
@@ -41885,7 +42135,7 @@
sha256 = "1616bdvrf1bawcqgj7balbxaw26waw81gxiw7yspnvpyb009j66y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/on-parens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/on-parens";
sha256 = "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab";
name = "on-parens";
};
@@ -41906,7 +42156,7 @@
sha256 = "1rrby3mbh24qd43nsb3ymcrjxh1cz6iasf1gv0a8fmivmb4f7dyz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/on-screen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/on-screen";
sha256 = "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb";
name = "on-screen";
};
@@ -41927,7 +42177,7 @@
sha256 = "0g2hvpnmgyy1k393prv97nqwlqc58nqf71hkrmaijw0cyy9q03nz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/one-time-pad-encrypt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/one-time-pad-encrypt";
sha256 = "0aa7qcii7yf4527nhlwwp0hbhamhyp2xg0fsscnq2m28l5d5kmn6";
name = "one-time-pad-encrypt";
};
@@ -41945,7 +42195,7 @@
sha256 = "05njigqi9061d34530d76kwsdzqgk9qxnwhn9xis64w59f5nzf1h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/oneonone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/oneonone";
sha256 = "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9";
name = "oneonone";
};
@@ -41966,7 +42216,7 @@
sha256 = "1yqrp9icci5snp1485wb6y8mr2hjp9006ahch58lvmnq98bn7j45";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/opam";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/opam";
sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa";
name = "opam";
};
@@ -41987,7 +42237,7 @@
sha256 = "0r5rsghqgy99jwjf3dqkw1q10smsvs242aafmz142l4ipsqr3gi3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/open-junk-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/open-junk-file";
sha256 = "0r1v9m8a5blv70fzq5miv5i57jx0bm1p0jxh0lwklam0m99znmcj";
name = "open-junk-file";
};
@@ -42008,7 +42258,7 @@
sha256 = "094r6fx1s76m8anqqg2qrddidn1dp08kmv8p8md27yy9mm49d91n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/opencl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/opencl-mode";
sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79";
name = "opencl-mode";
};
@@ -42029,7 +42279,7 @@
sha256 = "0086pfk4pq6xmknk7a42fihcjgzkcplqqc1rk9fhwmn9j7djbq70";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/openstack-cgit-browse-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/openstack-cgit-browse-file";
sha256 = "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl";
name = "openstack-cgit-browse-file";
};
@@ -42048,7 +42298,7 @@
sha256 = "1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/openwith";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/openwith";
sha256 = "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi";
name = "openwith";
};
@@ -42069,7 +42319,7 @@
sha256 = "0iw3c8sn702ziki59mvd5gxm484i7f0bwsy8fz95y08s9gknjjf9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/operate-on-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/operate-on-number";
sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk";
name = "operate-on-number";
};
@@ -42090,7 +42340,7 @@
sha256 = "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-ac";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-ac";
sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr";
name = "org-ac";
};
@@ -42111,7 +42361,7 @@
sha256 = "15xgkm5p30qfghyhkjivh5n4770794qf4pza462vb0xl5v6kffbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-agenda-property";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-agenda-property";
sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk";
name = "org-agenda-property";
};
@@ -42132,7 +42382,7 @@
sha256 = "0yzvir2gmyv9k43q3sf37lc9xcmfyaj5wh825xax7305j3b2hhvv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-alert";
sha256 = "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152";
name = "org-alert";
};
@@ -42153,7 +42403,7 @@
sha256 = "0f4ja4m1r6bbgachipswb2001ryg8cqcxjvwmnab951mw0cbg7v4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-attach-screenshot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-attach-screenshot";
sha256 = "0108kahyd499q87wzvirv5d6p7jrb7ckz8r96pwqzgflj3njbnmn";
name = "org-attach-screenshot";
};
@@ -42174,7 +42424,7 @@
sha256 = "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-autolist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-autolist";
sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj";
name = "org-autolist";
};
@@ -42195,7 +42445,7 @@
sha256 = "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-beautify-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-beautify-theme";
sha256 = "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq";
name = "org-beautify-theme";
};
@@ -42216,7 +42466,7 @@
sha256 = "084ij85pw53pzr220ql97544zkh23xb8gr81397asfdhc5wrzkqw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-bookmark-heading";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-bookmark-heading";
sha256 = "1q92rg9d945ypcpb7kig2r0cr7nb7avsylaa7nxjib25advx80n9";
name = "org-bookmark-heading";
};
@@ -42237,7 +42487,7 @@
sha256 = "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-bullets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-bullets";
sha256 = "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75";
name = "org-bullets";
};
@@ -42258,7 +42508,7 @@
sha256 = "0fq9d1q16fs0i3x9gs8k1n98nvh971r6g5bk2bswpfbpvndgwbi1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-caldav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-caldav";
sha256 = "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8";
name = "org-caldav";
};
@@ -42271,15 +42521,15 @@
org-capture-pop-frame = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-capture-pop-frame";
- version = "20160512.1809";
+ version = "20160518.608";
src = fetchFromGitHub {
owner = "tumashu";
repo = "org-capture-pop-frame";
- rev = "3f9c21a4ebd99c19cc6c8dd5f114ddfb242e73ba";
- sha256 = "0j283141vkv0f5xcrnadrnqm0h5dkkj5pn1s0k7lqlnr21y3b0xk";
+ rev = "b16fd712de62cf0d1f9befd03be6ab5983cb3301";
+ sha256 = "01ffkk79wz2qkh9h9cjl59j34wvbiqzzxbbc9a06lh2rc946wgis";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-capture-pop-frame";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-capture-pop-frame";
sha256 = "0g0b3vifwg39rb0fmad7y955dcqccnm01c6m27cv2x4xfib8ik3w";
name = "org-capture-pop-frame";
};
@@ -42300,7 +42550,7 @@
sha256 = "1m6bsjc2l4vx1z2cb0siqs8m1wjvi8fs67aqqx879q5rwlxbhzs5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-chinese-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-chinese-utils";
sha256 = "1dycsv0p2xzm2dg6fi5f5dkb48qnqq0qhrmvi0cdjq34j67s27ix";
name = "org-chinese-utils";
};
@@ -42321,7 +42571,7 @@
sha256 = "048mcjgls405wwvn2r90cxkyw9z2nf97gif86k0gxk7yrbbkiy2x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-cliplink";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-cliplink";
sha256 = "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p";
name = "org-cliplink";
};
@@ -42342,7 +42592,7 @@
sha256 = "0l0r44brs3fcgpjjirfrbf5cgxmsc0siqakv5mlvmr64xd1vi2lw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-clock-convenience";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-clock-convenience";
sha256 = "1zis0fp7q253qfxypm7a69zb3w8jb4cbrbj2rk34d1jisvnn4irw";
name = "org-clock-convenience";
};
@@ -42363,7 +42613,7 @@
sha256 = "0q4v216ihhwv8rlb9xc8xy7nj1p058xabfflglhgcd7mfjrsyayx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-context";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-context";
sha256 = "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz";
name = "org-context";
};
@@ -42384,7 +42634,7 @@
sha256 = "0nrfvmqb70phnq0k4wbdj6z666wq6xvabg4pgv8qn62rbrw4yyhm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-cua-dwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-cua-dwim";
sha256 = "0ib3m41b4lh0p0xxhsmfv42qs00xm2cfwwl2cgfdjjp1s57p19xy";
name = "org-cua-dwim";
};
@@ -42405,7 +42655,7 @@
sha256 = "1nqfi139cag3ll8wxk8rh59hay97vi8i0mlgnams4jla285zydj5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-dashboard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-dashboard";
sha256 = "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5";
name = "org-dashboard";
};
@@ -42426,7 +42676,7 @@
sha256 = "1wrgqdrfdxc1vrcr6dsa8dcxrwj6zgjr9h1fzilwnxlzfvdilnsm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-doing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-doing";
sha256 = "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j";
name = "org-doing";
};
@@ -42447,7 +42697,7 @@
sha256 = "15zrnd168n4pwa1bj5fz79hcrgw61braf0b095rsfhjh5w2sasy7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-dotemacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-dotemacs";
sha256 = "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4";
name = "org-dotemacs";
};
@@ -42468,7 +42718,7 @@
sha256 = "02344qyhz4bjz0rg4lmmqpn43lf03ag5v384ppczqks61rq7zpq9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-download";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-download";
sha256 = "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi";
name = "org-download";
};
@@ -42489,7 +42739,7 @@
sha256 = "0misv6g1cql7qc3xhy56cn79pzvn811fvhvivvq0bdx4g0hpp2fg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-dp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-dp";
sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq";
name = "org-dp";
};
@@ -42510,7 +42760,7 @@
sha256 = "0m5c9x0vazciq6czpg5y9nr5yzjf6nl0qp5cfajv49cw2h0cwqyy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-drill-table";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-drill-table";
sha256 = "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69";
name = "org-drill-table";
};
@@ -42531,7 +42781,7 @@
sha256 = "0jjdsng7fm4wbhvd9naqzdfsmkvj1sf1d9rikprg1pd58azv6idx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-dropbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-dropbox";
sha256 = "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln";
name = "org-dropbox";
};
@@ -42552,7 +42802,7 @@
sha256 = "0kqvwqmwnwg2h7r38fpjg6qlkcj9v8011df8nmsgs1w1mfdvnjsq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-ehtml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-ehtml";
sha256 = "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw";
name = "org-ehtml";
};
@@ -42573,7 +42823,7 @@
sha256 = "0va8wm319vvw7w0j102mx656icy3fi4mz3b6bxira6z6xl9b92s0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-elisp-help";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-elisp-help";
sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h";
name = "org-elisp-help";
};
@@ -42583,22 +42833,22 @@
license = lib.licenses.free;
};
}) {};
- org-eww = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ org-eww = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-eww";
- version = "20160425.851";
+ version = "20160521.1758";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "org-eww";
- rev = "c6b53bfd0464ab61926ec51f74a57ba26ca314b0";
- sha256 = "0bcwxly77yc2i4x1lz4584k6pd9gx1mawci8ibsxcmjvgzch6x84";
+ rev = "5c8c302a7994f26d9c50b36d5e5a94287501a9d9";
+ sha256 = "0aa7hzn8ss6b7p24qxgwvz8w3kd2lcr98wj315c0c5zhwdrcw2rj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-eww";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-eww";
sha256 = "132asshgfpphjckd5vz1vcs18lj55mrqs1l4ggfa89rc6aj8xrca";
name = "org-eww";
};
- packageRequires = [];
+ packageRequires = [ emacs org ];
meta = {
homepage = "https://melpa.org/#/org-eww";
license = lib.licenses.free;
@@ -42614,7 +42864,7 @@
sha256 = "0ydsmjjc64r50qilgazmv5gzdv67vszlid67wskc2zii5ss0y01m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-fstree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-fstree";
sha256 = "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz";
name = "org-fstree";
};
@@ -42635,7 +42885,7 @@
sha256 = "1di32pvkqbd90f4j4d07gdbba6d0fzyhw5lsynz7cl6yrh5y9cpr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-gcal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-gcal";
sha256 = "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q";
name = "org-gcal";
};
@@ -42656,7 +42906,7 @@
sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-gnome";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-gnome";
sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v";
name = "org-gnome";
};
@@ -42677,7 +42927,7 @@
sha256 = "10jwqzs431mnwz717qdmcn0v8raklw41sbxbnkb36yrgznk8c09c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-grep";
sha256 = "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz";
name = "org-grep";
};
@@ -42698,7 +42948,7 @@
sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-if";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-if";
sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96";
name = "org-if";
};
@@ -42719,7 +42969,7 @@
sha256 = "1n7l70pl9x6mh7dyyiihg4zi1advzlaq2x7vivhas1i2120884i6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-iv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-iv";
sha256 = "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx";
name = "org-iv";
};
@@ -42740,7 +42990,7 @@
sha256 = "0whv8nsla93194jjpxrhlr6g230spdxbac8ibmzmyad075vx97z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-jekyll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-jekyll";
sha256 = "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i";
name = "org-jekyll";
};
@@ -42761,7 +43011,7 @@
sha256 = "0b5f8qkyzh4jwj3kvbaj3m4dpjbvh1fql7v1nb9bi5n7iwkv3lxp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-jira";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-jira";
sha256 = "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm";
name = "org-jira";
};
@@ -42782,7 +43032,7 @@
sha256 = "0rsirs9rfgrsi667vjmag0h6m704j35mv9rg5q50p9jsa38xy78i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-journal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-journal";
sha256 = "1npzqxn1ssigq7k1nrxz3xymxaazby0ddgxq6lgw2a1zjmjm4h2b";
name = "org-journal";
};
@@ -42803,7 +43053,7 @@
sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-link-travis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-link-travis";
sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs";
name = "org-link-travis";
};
@@ -42824,7 +43074,7 @@
sha256 = "0lqxzmjxs80z3z90f66f3zfrdajiamdcwpvfv5j2w40js9xz4x37";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-linkany";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-linkany";
sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c";
name = "org-linkany";
};
@@ -42840,11 +43090,11 @@
version = "20140107.819";
src = fetchgit {
url = "git://orgmode.org/org-mode.git";
- rev = "55e346c5f94e06823471bf06b767802db7cfc2eb";
- sha256 = "1416328q45v946k4401dql6sgwqis0bzj7vnss7wmcyz9kwzkwg7";
+ rev = "9a7bf6d6496a4415ca33b92941e4dbc2c4676855";
+ sha256 = "0zbfgzhqbb1bcx23i3xn5r4q414w1drqqs6zfxcha65v6mijkgkc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-mac-iCal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-mac-iCal";
sha256 = "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw";
name = "org-mac-iCal";
};
@@ -42860,11 +43110,11 @@
version = "20160109.1743";
src = fetchgit {
url = "git://orgmode.org/org-mode.git";
- rev = "55e346c5f94e06823471bf06b767802db7cfc2eb";
- sha256 = "1416328q45v946k4401dql6sgwqis0bzj7vnss7wmcyz9kwzkwg7";
+ rev = "9a7bf6d6496a4415ca33b92941e4dbc2c4676855";
+ sha256 = "0zbfgzhqbb1bcx23i3xn5r4q414w1drqqs6zfxcha65v6mijkgkc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-mac-link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-mac-link";
sha256 = "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw";
name = "org-mac-link";
};
@@ -42885,7 +43135,7 @@
sha256 = "0d22q57mizw70qxbvwi4yz15jg86icqq1z963rliwss3wgpirndh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-mobile-sync";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-mobile-sync";
sha256 = "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj";
name = "org-mobile-sync";
};
@@ -42906,7 +43156,7 @@
sha256 = "0zbpzm9lni6z180s7n52x8s5by5zkq2nlhx82l2h9i7in9y4r6c3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-multiple-keymap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-multiple-keymap";
sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f";
name = "org-multiple-keymap";
};
@@ -42927,7 +43177,7 @@
sha256 = "132jv1zvp3yp4pa4ysl0n3a81d39cdi3nqfziz1ha1pl10qbn6wr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-octopress";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-octopress";
sha256 = "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw";
name = "org-octopress";
};
@@ -42948,7 +43198,7 @@
sha256 = "10dddbs9jppqqzwwv5y6pj2szdkw3223gvzzd4pzn9biv5d9kzsb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-outlook";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-outlook";
sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9";
name = "org-outlook";
};
@@ -42969,7 +43219,7 @@
sha256 = "1w853v4fsrvgczl2rvmy3dv9shyhv8f4bc0gqnk4r5ihmgf46a1s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-page";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-page";
sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v";
name = "org-page";
};
@@ -42999,7 +43249,7 @@
sha256 = "022qqas919aziq4scs5j1wdbvd0qyw8kkirn2vzfb5k2fjl8z7iq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-pandoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-pandoc";
sha256 = "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v";
name = "org-pandoc";
};
@@ -43019,7 +43269,7 @@
sha256 = "023xsyvppq771yvxd9kqhn9lffhr83sfb0h9g405ayfjys94m2xd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-password-manager";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-password-manager";
sha256 = "021yhp417b9c8cjh8ynmz2fqyplpr2qvc0djxf74kd8lhn4pl397";
name = "org-password-manager";
};
@@ -43040,7 +43290,7 @@
sha256 = "16z44kdsg8w1p27fsi72k8wqr35xbb0777rq7h7swv6j2jn1b6hc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-pdfview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-pdfview";
sha256 = "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab";
name = "org-pdfview";
};
@@ -43061,7 +43311,7 @@
sha256 = "015idpk66835jdg1sbvpksyr07xk4vn17z8cng2qw87fss688ihb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-pomodoro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-pomodoro";
sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27";
name = "org-pomodoro";
};
@@ -43082,7 +43332,7 @@
sha256 = "1n9magg7r7xnw16d43fh6nzjf42s70l3mxq6ph727zi4lz5ngmfm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-present";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-present";
sha256 = "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7";
name = "org-present";
};
@@ -43092,22 +43342,22 @@
license = lib.licenses.free;
};
}) {};
- org-projectile = callPackage ({ dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }:
+ org-projectile = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
melpaBuild {
pname = "org-projectile";
- version = "20160512.1742";
+ version = "20160520.1814";
src = fetchFromGitHub {
owner = "IvanMalison";
repo = "org-projectile";
- rev = "95226903072be037ef09990fce009aee1e2d3a7c";
- sha256 = "0jcr61545hsamcb7bpwnf34fsvjwvnsvni6q3hrhbb7qsa6xpgvn";
+ rev = "13b94ad1ac40130df0e46c53fe982734ad790447";
+ sha256 = "03f82pnaifx79v05irzdn5vhhzsv8b068dawva9w5i7x8na01k6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-projectile";
sha256 = "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm";
name = "org-projectile";
};
- packageRequires = [ dash helm projectile ];
+ packageRequires = [ dash projectile ];
meta = {
homepage = "https://melpa.org/#/org-projectile";
license = lib.licenses.free;
@@ -43124,7 +43374,7 @@
sha256 = "1jzp65sf1am6pz533kg1z666h4jlynvjyx1mf24gyksiiwdhypsy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-protocol-jekyll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-protocol-jekyll";
sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs";
name = "org-protocol-jekyll";
};
@@ -43145,7 +43395,7 @@
sha256 = "06apaa8pjrw14g2gyjpxjd6bjv1w0md4vl5jx78krcyr0bcc08mx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-random-todo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-random-todo";
sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr";
name = "org-random-todo";
};
@@ -43166,7 +43416,7 @@
sha256 = "1q3s12s0ll7jhrnd3adkaxv7ff69ppprv0pyl5f6gy8y51y63k8d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-readme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-readme";
sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh";
name = "org-readme";
};
@@ -43193,7 +43443,7 @@
sha256 = "0q26knckq213r885i5947970qagjmb7ybs4ag0ignls4dzbqlbmz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-redmine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-redmine";
sha256 = "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv";
name = "org-redmine";
};
@@ -43206,15 +43456,15 @@
org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, hydra, key-chord, lib, melpaBuild, parsebib, s }:
melpaBuild {
pname = "org-ref";
- version = "20160512.1637";
+ version = "20160519.837";
src = fetchFromGitHub {
owner = "jkitchin";
repo = "org-ref";
- rev = "aec2b41316171e25d07803a8642e7d7186389416";
- sha256 = "15wnx1l8m58w6cxa0lvv3r0baw3zfghij32yjlnpqb6lw33ra0hv";
+ rev = "2452c7c5084a767b8ab085b77e11d4687b005158";
+ sha256 = "0ids7gc4qdnssvv7fnvnpf4a0blid2g5kx5wsgc74hv9raz25g8w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-ref";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-ref";
sha256 = "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08";
name = "org-ref";
};
@@ -43235,7 +43485,7 @@
sha256 = "0as82hf81czks9fcmhy9wjwl8d4mbylrm13c02y8abp0am41r28f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-repo-todo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-repo-todo";
sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1";
name = "org-repo-todo";
};
@@ -43256,7 +43506,7 @@
sha256 = "1hn8y9933x5x6lxpijcqx97p3hln69ahabqdsl2bmzda3mxm4bn2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-rtm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-rtm";
sha256 = "1paiy5zmdlxb3a1cjk9d30mqbl60bkairw6xkix2qw36p07jwlj5";
name = "org-rtm";
};
@@ -43277,7 +43527,7 @@
sha256 = "14zn0b8qs740ls1069kg2lwm0b9yc4qv525fg8km0hgi0yp8qw7z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-sync";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-sync";
sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad";
name = "org-sync";
};
@@ -43298,7 +43548,7 @@
sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-table-comment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-table-comment";
sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz";
name = "org-table-comment";
};
@@ -43319,7 +43569,7 @@
sha256 = "1qz1qhd7v6ynmvz7j1xscz85z6zwy9dcarwhbz020l4bk4g9zf94";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-tfl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-tfl";
sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf";
name = "org-tfl";
};
@@ -43340,7 +43590,7 @@
sha256 = "1apd5yyr12skagma7xpzrh22rhplmhhv0pma4zf5b0i6nkxy06j2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-themis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-themis";
sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln";
name = "org-themis";
};
@@ -43361,7 +43611,7 @@
sha256 = "04adkz950vvwyzy3da468nnqsknpr5kw5369w2yqhnph16cwwfxb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-time-budgets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-time-budgets";
sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah";
name = "org-time-budgets";
};
@@ -43382,7 +43632,7 @@
sha256 = "014337wimvzy0rxh2p2c647ly215zcyhgym2hcljkdriv15cafna";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-toodledo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-toodledo";
sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3";
name = "org-toodledo";
};
@@ -43403,7 +43653,7 @@
sha256 = "0jh9i41zqs9rvghfjhp5nl2ycav1pj1yv2hsr6skwqdpkwggvvmq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-tracktable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-tracktable";
sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00";
name = "org-tracktable";
};
@@ -43424,7 +43674,7 @@
sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-transform-tree-table";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-transform-tree-table";
sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r";
name = "org-transform-tree-table";
};
@@ -43445,7 +43695,7 @@
sha256 = "0b97jqskn5c2cbah3qj9bi5was31sijrp01dca36g5y53lpz7n79";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-tree-slide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-tree-slide";
sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn";
name = "org-tree-slide";
};
@@ -43466,7 +43716,7 @@
sha256 = "061nf6gwrzi36q3m3b1hn4bj33a6q4yic3fxdxxwvwrzi42bl74a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-trello";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-trello";
sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i";
name = "org-trello";
};
@@ -43494,7 +43744,7 @@
sha256 = "1m2xdp6wfg11wi7s4i675c3m5qancm8bpizcf380r6vmkcdfkrdy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-vcard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-vcard";
sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl";
name = "org-vcard";
};
@@ -43515,7 +43765,7 @@
sha256 = "08yww77697kck1ld9xcrcx8amqdh28rdc4fsavp5d3my78qk7rac";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-wc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-wc";
sha256 = "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb";
name = "org-wc";
};
@@ -43536,7 +43786,7 @@
sha256 = "18idnl2hx1s5hv1xm5akd35favnjnj2pxw6h00956lrapg01d1fn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-webpage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-webpage";
sha256 = "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah";
name = "org-webpage";
};
@@ -43557,7 +43807,7 @@
sha256 = "1cagmwl3acanwc2nky7m61cawi0i0x703sjc6zlw968lacyw86wa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-wunderlist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-wunderlist";
sha256 = "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0";
name = "org-wunderlist";
};
@@ -43578,7 +43828,7 @@
sha256 = "1bqiq27ln1pl40b9dms05nla4kf72s80g9ilvrgqflxgl36gxws7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org2blog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org2blog";
sha256 = "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq";
name = "org2blog";
};
@@ -43599,7 +43849,7 @@
sha256 = "1lvwkvzqgy9nlz7zmqfl9j8cairjfv3vknpzcqp6rzp6hkq04zk5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org2issue";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org2issue";
sha256 = "1qd5l9ga26smgp1gkc8r9ja2n974kq1jf2z876s5v0489ipa59bz";
name = "org2issue";
};
@@ -43609,22 +43859,22 @@
license = lib.licenses.free;
};
}) {};
- org2jekyll = callPackage ({ dash-functional, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
+ org2jekyll = callPackage ({ dash-functional, deferred, fetchFromGitHub, fetchurl, kv, lib, melpaBuild, s }:
melpaBuild {
pname = "org2jekyll";
- version = "20160418.1150";
+ version = "20160519.1304";
src = fetchFromGitHub {
owner = "ardumont";
repo = "org2jekyll";
- rev = "35e11ffa24b140d2e247df195489fca344bd0c08";
- sha256 = "089nqbda5mg1ippqnsl5wcx9n1gpnaqhl6kz54n47kivb400bidh";
+ rev = "991c995715ecad0454d0402f43a5161a3954b7f7";
+ sha256 = "1gdv1dwmwhmpcpcvf8fmsjg3mli3l27inlql13m98h7vpv7rzqvb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org2jekyll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org2jekyll";
sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv";
name = "org2jekyll";
};
- packageRequires = [ dash-functional deferred s ];
+ packageRequires = [ dash-functional deferred kv s ];
meta = {
homepage = "https://melpa.org/#/org2jekyll";
license = lib.licenses.free;
@@ -43641,7 +43891,7 @@
sha256 = "18lsr0wf5wbgj7xws4wk10lyczwh74lifhp80f0sj50y9rv68crv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/organic-green-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/organic-green-theme";
sha256 = "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2";
name = "organic-green-theme";
};
@@ -43662,7 +43912,7 @@
sha256 = "0hwmr67nky9xp5xlrkp54nw6b72d29lmna28dnbgqs2i5rccbk55";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/orgbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgbox";
sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8";
name = "orgbox";
};
@@ -43683,7 +43933,7 @@
sha256 = "1wxxdx3c5qacsii4kysk438cjr1hnmpir78kp6xgk9xw5g9snlnj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/orgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgit";
sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w";
name = "orgit";
};
@@ -43696,15 +43946,15 @@
orglink = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "orglink";
- version = "20160424.1020";
+ version = "20160521.1030";
src = fetchFromGitHub {
owner = "tarsius";
repo = "orglink";
- rev = "09c564022acda5973256e71a467849637473d7e6";
- sha256 = "076q8j70vqabirri6ckl1f0y60pq4bnilds6s34mxsxz1k3z3m1s";
+ rev = "3a0f6b12a69cc9e09285d317277b0dc6e1623f8a";
+ sha256 = "07ggg2mvvmv40h3gqlcxwrxsyrpvn2pffdjrzbh7yprm5mxynbjc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/orglink";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orglink";
sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b";
name = "orglink";
};
@@ -43725,7 +43975,7 @@
sha256 = "1w0hadpslxcjn29yxl9i37sja4qf4kp7ffjpwij5hs73r518c2z6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/orglue";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orglue";
sha256 = "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn";
name = "orglue";
};
@@ -43746,7 +43996,7 @@
sha256 = "0zh8n8jb479ilmz88kj0q5wx8a9zqkfqds0rr8jbk2rqmj6j72v3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/orgtbl-aggregate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgtbl-aggregate";
sha256 = "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9";
name = "orgtbl-aggregate";
};
@@ -43767,7 +44017,7 @@
sha256 = "1vbnp37xz0nrpyi0hah345928zsb1xw915mdb0wybq1fzn93mp1z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/orgtbl-ascii-plot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgtbl-ascii-plot";
sha256 = "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h";
name = "orgtbl-ascii-plot";
};
@@ -43788,7 +44038,7 @@
sha256 = "06nc82wiha11i79izqil53dkd95fl55nb5m739gyyzvx3sksb0dg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/orgtbl-join";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgtbl-join";
sha256 = "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1";
name = "orgtbl-join";
};
@@ -43805,11 +44055,11 @@
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "orgtbl-show-header";
- rev = "f0f48ccc0f96d4aa2a676ff609d9dddd71748e6f";
- sha256 = "0zfiq9d5jqzpmscngb1s2jgfiqmbi4dyw0fqa59v2g84gxjg793x";
+ rev = "0b63ab4425b6e2af8ffb1f0b94839918d1720d09";
+ sha256 = "161bsmgrbdhb73k36gqb5b96mf0y0sl8q9sjg81vx86bs9sbkddw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/orgtbl-show-header";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgtbl-show-header";
sha256 = "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k";
name = "orgtbl-show-header";
};
@@ -43830,7 +44080,7 @@
sha256 = "18f5b6902zqayhhcchhsvszw1kryvhkhpc5vv0s187dkj38agsv3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/origami";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/origami";
sha256 = "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr";
name = "origami";
};
@@ -43851,7 +44101,7 @@
sha256 = "1iybrhp607a5rb3ynlaf8w2x9wdgdbril702z44dgcg3wxih2zy1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-browse";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-browse";
sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm";
name = "osx-browse";
};
@@ -43872,7 +44122,7 @@
sha256 = "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-clipboard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-clipboard";
sha256 = "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f";
name = "osx-clipboard";
};
@@ -43893,7 +44143,7 @@
sha256 = "04fh4i8mydmvq58hd60lf0dglpcjqgzpwk93wqss72kpifwh68vc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-dictionary";
sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82";
name = "osx-dictionary";
};
@@ -43914,7 +44164,7 @@
sha256 = "1wbmqxx1qzjc5kxzkwx7c2wvq71iic1f5f29lj6ckpjn743dnb0d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-lib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-lib";
sha256 = "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4";
name = "osx-lib";
};
@@ -43935,7 +44185,7 @@
sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-location";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-location";
sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c";
name = "osx-location";
};
@@ -43956,7 +44206,7 @@
sha256 = "1rgykby1ysbapq53lnk9yy04r9q4qirnzs2abgvz7g2qjq5fyzag";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-org-clock-menubar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-org-clock-menubar";
sha256 = "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6";
name = "osx-org-clock-menubar";
};
@@ -43977,7 +44227,7 @@
sha256 = "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-plist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-plist";
sha256 = "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8";
name = "osx-plist";
};
@@ -43998,7 +44248,7 @@
sha256 = "1j601gzizxjsvkw6bvih4a49iq05yfkw0ni77xbc5klc7x7s80hk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-pseudo-daemon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-pseudo-daemon";
sha256 = "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8";
name = "osx-pseudo-daemon";
};
@@ -44011,15 +44261,15 @@
osx-trash = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "osx-trash";
- version = "20150723.1035";
+ version = "20160520.900";
src = fetchFromGitHub {
owner = "lunaryorn";
repo = "osx-trash.el";
- rev = "a8fe326624e27a0e128c68940c7a9efb001ceee6";
- sha256 = "1l231168bjqz6lwzs0r9vihxi53d46csrr2gq7g33lg1zm3696ah";
+ rev = "0f1dc052d0a750b8c75f14530a4897f5d4324b4e";
+ sha256 = "0f4md49175iyrgzv4pijf7qbxyddcm2yscrrlh91pg410la7fysk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-trash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-trash";
sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj";
name = "osx-trash";
};
@@ -44040,7 +44290,7 @@
sha256 = "1jzyfvc25ls0l4kpxg6857ccynl1pzgxfif7bppz2nfmf99z4534";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/otama";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/otama";
sha256 = "04ffyscldb2sn2n26ixrnc07ybvl7iclv2hi1kmhr5hdgxwpyjq9";
name = "otama";
};
@@ -44061,7 +44311,7 @@
sha256 = "116cwlhn7s47rhivz6113lh8lvaz3bjb3ynjlbx9hyf7gq3nfnxn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/outline-magic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/outline-magic";
sha256 = "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f";
name = "outline-magic";
};
@@ -44082,7 +44332,7 @@
sha256 = "0d9hfr4kb6rkhwacdn70bkfchgam26gj92zfyaqw77a2sgwcmwwv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/outlined-elisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/outlined-elisp-mode";
sha256 = "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v";
name = "outlined-elisp-mode";
};
@@ -44103,7 +44353,7 @@
sha256 = "0szvynvw16vr7br95pssqkil0xnfdh46x8lgan4z9v6impdav0nf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/outorg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/outorg";
sha256 = "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx";
name = "outorg";
};
@@ -44124,7 +44374,7 @@
sha256 = "1smfdfw0swvfbqlxi7nkrgbmfqhs0x47ky6xhgf38la1s6ivh29n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/outshine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/outshine";
sha256 = "1ajddzcrnvfgx3xa5wm0bcll9dax52syg1p521mv0ffkld63jyfl";
name = "outshine";
};
@@ -44145,7 +44395,7 @@
sha256 = "1rk5pzm5wmdq68d99hhhbq8pq37bnph0dip5j2jnfj6zsw70whr2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ov";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ov";
sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb";
name = "ov";
};
@@ -44158,15 +44408,15 @@
overseer = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }:
melpaBuild {
pname = "overseer";
- version = "20160506.347";
+ version = "20160518.243";
src = fetchFromGitHub {
owner = "tonini";
repo = "overseer.el";
- rev = "7eb4e68a73fdf87657e1a0dfe4ed559ca1a68aee";
- sha256 = "073lfn1ag8vbcrqsbmkn8zzcm9w2jil605gfdj1bzx18hrfljvyk";
+ rev = "817c2d4c40071f1cd11fc91c60a1eb44c9f1543f";
+ sha256 = "0pzrsag2hxg4kys57w2ragk6kfrpilaamwrzw0czi53r6vmddfdp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/overseer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/overseer";
sha256 = "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg";
name = "overseer";
};
@@ -44187,7 +44437,7 @@
sha256 = "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/owdriver";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/owdriver";
sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd";
name = "owdriver";
};
@@ -44208,7 +44458,7 @@
sha256 = "03ivnvqxc5xdcik4skk32fhr686yv2y5mj8w7v27dhyc0vdpfhvy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-asciidoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-asciidoc";
sha256 = "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr";
name = "ox-asciidoc";
};
@@ -44229,7 +44479,7 @@
sha256 = "1d463d7mdlr65yrq7x16nk9124fw1iphf5g238mlh4abbl6kz241";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-bibtex-chinese";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-bibtex-chinese";
sha256 = "0h02jlzk97rd3jmdni5mggbkij61d7zn1n1ibz1jg6zb0000cj7a";
name = "ox-bibtex-chinese";
};
@@ -44242,15 +44492,15 @@
ox-gfm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ox-gfm";
- version = "20160324.620";
+ version = "20160520.1742";
src = fetchFromGitHub {
owner = "larstvei";
repo = "ox-gfm";
- rev = "4889adc219aedfbb463aad0b98b1ff26201352e8";
- sha256 = "0hsbbsy0kyrmrcc6rkq75v5walrb8krvly5mm3vlmcahm1g4x2vb";
+ rev = "66bed0d17909ed76fa9030785fe3b0dc942f0feb";
+ sha256 = "1fr5kp9cya9mzrl18flp117dy0qlp6f684qvmyilzaqm6q8w0nia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-gfm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-gfm";
sha256 = "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q";
name = "ox-gfm";
};
@@ -44271,7 +44521,7 @@
sha256 = "19h3w3fcas60jv02v7hxjmh05804sb7bif70jssq3qwisj0j09xm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-html5slide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-html5slide";
sha256 = "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn";
name = "ox-html5slide";
};
@@ -44292,7 +44542,7 @@
sha256 = "1kf2si2lyy0xc971bx5zd2j9mnz1smc9s8l0dwc6iksh2v9q8cy9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-impress-js";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-impress-js";
sha256 = "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l";
name = "ox-impress-js";
};
@@ -44313,7 +44563,7 @@
sha256 = "0p03xzldz5v8lx3ip2pgll0da00ldfxmhr6r3jahwp6692kxpr6j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-ioslide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-ioslide";
sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc";
name = "ox-ioslide";
};
@@ -44334,7 +44584,7 @@
sha256 = "0csl9fcfwnpl6x3ld7xrlvgz6gwmgcd15a4zdc570w8vp26ra5k9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-jira";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-jira";
sha256 = "0bm7i1ambd71xmy1y9jcdh52irgcsziwwb9d3y3rq0pnsqv5cpvp";
name = "ox-jira";
};
@@ -44355,7 +44605,7 @@
sha256 = "1g42aq4iaq40aivncxw663hnsb2768lzc08dmsmk4lq5q9kzcjhg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-latex-chinese";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-latex-chinese";
sha256 = "138yprik36jxhm6dnj42gaynqd84w7ya3s0kbnxhbizrfl4n4ck7";
name = "ox-latex-chinese";
};
@@ -44376,7 +44626,7 @@
sha256 = "0c2m02g6csg5fqizj3zqcm88q7w17kgvgi7swcx4fzz6rixnpsji";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-mediawiki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-mediawiki";
sha256 = "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb";
name = "ox-mediawiki";
};
@@ -44397,7 +44647,7 @@
sha256 = "0cc14p6c3d4djfmrkac0abb2jq128vlmayv2a8cyvnyjffyvjbk7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-nikola";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-nikola";
sha256 = "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4";
name = "ox-nikola";
};
@@ -44418,7 +44668,7 @@
sha256 = "0bawigwc6v5420642xlkyxdd0i82gicx69wqlnjf6lvhfvs990is";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-pandoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-pandoc";
sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc";
name = "ox-pandoc";
};
@@ -44439,7 +44689,7 @@
sha256 = "0adj6gm39qw4ivb7csfh21qqqipcnw1sgm1xdqvrk86kbs9k1b2g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-pukiwiki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-pukiwiki";
sha256 = "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a";
name = "ox-pukiwiki";
};
@@ -44460,7 +44710,7 @@
sha256 = "0pmshd58945h843c5hgzcz169kfzrwmkdzh7rv1cci783z3cxxdc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-reveal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-reveal";
sha256 = "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik";
name = "ox-reveal";
};
@@ -44481,7 +44731,7 @@
sha256 = "1js4n8iwimc86fp2adzhbhy4ixss1yqngjd8gq7pxgpgmnhd66x3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-rst";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-rst";
sha256 = "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0";
name = "ox-rst";
};
@@ -44502,7 +44752,7 @@
sha256 = "1r9c4s9f7cvxxzf9h07rg75bil0295zq1inh5i4r6za5jabkr4dg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-textile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-textile";
sha256 = "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4";
name = "ox-textile";
};
@@ -44523,7 +44773,7 @@
sha256 = "05rlfykwvfir177bvqa7nvwmzn1amhpaizfmyjzi73d78h062vcl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-tiddly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-tiddly";
sha256 = "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb";
name = "ox-tiddly";
};
@@ -44544,7 +44794,7 @@
sha256 = "0w6963jvz1sk732nh18735dxivd6nl59jd4m26ps6l4wqhqby0db";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-trac";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-trac";
sha256 = "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa";
name = "ox-trac";
};
@@ -44565,7 +44815,7 @@
sha256 = "0yrac13xiyfxipy5qyq56jg7151wjs3xv4gpsarx4hkrxi96apbi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-twbs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-twbs";
sha256 = "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx";
name = "ox-twbs";
};
@@ -44586,7 +44836,7 @@
sha256 = "05rlfykwvfir177bvqa7nvwmzn1amhpaizfmyjzi73d78h062vcl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-twiki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-twiki";
sha256 = "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0";
name = "ox-twiki";
};
@@ -44607,7 +44857,7 @@
sha256 = "12jsnfppif4l548wymvakx0f2zlm63xs6kfrb49hicmk668cq4ra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/p4";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/p4";
sha256 = "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc";
name = "p4";
};
@@ -44628,7 +44878,7 @@
sha256 = "09bn19ydyz1hncmvyyh87gczp3lmlczpm352p0107z1gw6xmpjil";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pabbrev";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pabbrev";
sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3";
name = "pabbrev";
};
@@ -44645,11 +44895,11 @@
src = fetchFromGitHub {
owner = "melpa";
repo = "melpa";
- rev = "5805575f353c14a62d00543a23eb4c638d9d52dc";
- sha256 = "0ijhz2inyrcvzfzk2b5ikip34fs9b07f8n90ivhj6zw3l7hp482q";
+ rev = "50e8d089f4e163eb459fc602cb90440b110b489f";
+ sha256 = "0mr3m7km7ml1n6sa7sa6ad87ksi6x6yf0yzy90bii91r90b5fka2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/package-build";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package-build";
sha256 = "0618z43j6628jjj448hcigvsfwcs7p0n4bbcmqscrb6p59b7n4wx";
name = "package-build";
};
@@ -44670,7 +44920,7 @@
sha256 = "0i7f8ambcrhyqq15xwlk31jjdcii2hr37y45va8m5w6n9mkpz8c6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/package-filter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package-filter";
sha256 = "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm";
name = "package-filter";
};
@@ -44691,7 +44941,7 @@
sha256 = "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/package+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package+";
sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn";
name = "package-plus";
};
@@ -44712,7 +44962,7 @@
sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/package-safe-delete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package-safe-delete";
sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw";
name = "package-safe-delete";
};
@@ -44733,7 +44983,7 @@
sha256 = "1pcpr8ls0sqph098lrb6n8fbsm8rq8imglfx3m8zzyw78q9hwcjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/package-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package-utils";
sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r";
name = "package-utils";
};
@@ -44754,7 +45004,7 @@
sha256 = "1zzm43x0y90j4cr4zpwn3fs8apl7n0jhl6qlfkcbar7bb62pi66q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/packed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/packed";
sha256 = "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z";
name = "packed";
};
@@ -44775,7 +45025,7 @@
sha256 = "0zx72qbqy2n1r6mjylw67zb6nnchp2b49vsdyl0k5bdaq2xyqv6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pacmacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pacmacs";
sha256 = "0w0r6z365jrglpbifb94w6c22wqi9x93qgkss9pn820hrndqbqxy";
name = "pacmacs";
};
@@ -44796,7 +45046,7 @@
sha256 = "01y627gip66ff6a9mik3j5jdr5kki9b5078x48dp3jk76i5vlhk2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paganini-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paganini-theme";
sha256 = "1kypkf52hjlfj75pcmjf2a60m6iwj0y1dspjwqynzz3l48i6ippm";
name = "paganini-theme";
};
@@ -44817,7 +45067,7 @@
sha256 = "0mqd18w98p6z0i08xx7jga10ljh9360x6sqfyvfq6bjfi2jvxdbk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/page-break-lines";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/page-break-lines";
sha256 = "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7";
name = "page-break-lines";
};
@@ -44838,7 +45088,7 @@
sha256 = "1dq5ibz7rx9a7gm9zq2pz4c1sxgrm59yibyq92bvmi68lvf2q851";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pager";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pager";
sha256 = "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl";
name = "pager";
};
@@ -44859,7 +45109,7 @@
sha256 = "11msqs8v9wn8sj45dw1fl0ldi3sw33v0xclynbxgmawyabfq3bqm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pager-default-keybindings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pager-default-keybindings";
sha256 = "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci";
name = "pager-default-keybindings";
};
@@ -44877,7 +45127,7 @@
sha256 = "1qnv84y0s437xcsjxh0gs9rb36pydba3qfrihvz5pqs9g9w7m94k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/palette";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/palette";
sha256 = "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0";
name = "palette";
};
@@ -44898,7 +45148,7 @@
sha256 = "1kbja107smdjqv82p84jx13jk1410c9vms89p1iy1jvn7s8g9fiq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/palimpsest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/palimpsest";
sha256 = "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk";
name = "palimpsest";
};
@@ -44919,7 +45169,7 @@
sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pallet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pallet";
sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7";
name = "pallet";
};
@@ -44932,15 +45182,15 @@
pandoc-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }:
melpaBuild {
pname = "pandoc-mode";
- version = "20160406.249";
+ version = "20160519.1153";
src = fetchFromGitHub {
owner = "joostkremers";
repo = "pandoc-mode";
- rev = "cb72eefbbe3a3846cff565466686416b4871b13e";
- sha256 = "0hdrhjghr570w50ilc0q4wl89msgdlhb19p2k5m84qc8m6qdl2v0";
+ rev = "dd1152f43d6f2f56cf45ccab5422f560ab880b6c";
+ sha256 = "1aldnaas57saa2rdg6j3hczmf008m34dw47qzxjmn1jh6xibk357";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pandoc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pandoc-mode";
sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781";
name = "pandoc-mode";
};
@@ -44961,7 +45211,7 @@
sha256 = "0bcqc4r0v02v99llphk8s0mj38gxk87a3jqcp8v4sb9040dkm8gd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pangu-spacing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pangu-spacing";
sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8";
name = "pangu-spacing";
};
@@ -44982,7 +45232,7 @@
sha256 = "1xh614czldjvfl66vhkyaai5k4qsg1l3mz6wd5b1w6kd45qrc54i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paper-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paper-theme";
sha256 = "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50";
name = "paper-theme";
};
@@ -45003,7 +45253,7 @@
sha256 = "0bbpmrprc1bzil8xh2grnivxlfbjs252717rn7rq0nccdflp4akz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paradox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paradox";
sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2";
name = "paradox";
};
@@ -45022,7 +45272,7 @@
sha256 = "14k1xakdr58647cnq8ky73sh5j94jc6vls05jdxkbv681krdvqvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paredit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paredit";
sha256 = "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr";
name = "paredit";
};
@@ -45043,7 +45293,7 @@
sha256 = "1jkpb67h96sm3fnga9hrg3kwhlp3czdv66v49a9szq174zpsnrgv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paredit-everywhere";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paredit-everywhere";
sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36";
name = "paredit-everywhere";
};
@@ -45064,7 +45314,7 @@
sha256 = "15xkanrwxh3qqay3vkfqvhzs88g7nnfv9bqk509qflyhqnvc9sxr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paredit-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paredit-menu";
sha256 = "05jp4cc548x5f07k096dgizhivdpaajxq38hin831sm0p9cibm4p";
name = "paredit-menu";
};
@@ -45085,7 +45335,7 @@
sha256 = "1il0gbyjnlxhk04z3lgxmvlmlhgc94rmxdf8nl5sk3gblqmr8v3b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paren-completer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paren-completer";
sha256 = "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x";
name = "paren-completer";
};
@@ -45098,15 +45348,15 @@
paren-face = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "paren-face";
- version = "20160424.735";
+ version = "20160521.1055";
src = fetchFromGitHub {
owner = "tarsius";
repo = "paren-face";
- rev = "932cd9681be30096b766717869ad0d3180d3b637";
- sha256 = "1l0rq3k78k68ky58bv1mhya3mnl7n5wgr88n95na2lcil1dk8ghh";
+ rev = "7b115519d668301633f31a9f3d03b5e36d0541d7";
+ sha256 = "0f128gqn170s6hl62n44i9asais75ns1mpvb4l8vzy1sc0v16c0k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paren-face";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paren-face";
sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf";
name = "paren-face";
};
@@ -45127,7 +45377,7 @@
sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/parent-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/parent-mode";
sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig";
name = "parent-mode";
};
@@ -45148,7 +45398,7 @@
sha256 = "06xg6f74697zmn042wg259qlik2l21k4al08a06xz4gv9a83nsx6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/parse-csv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/parse-csv";
sha256 = "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz";
name = "parse-csv";
};
@@ -45169,7 +45419,7 @@
sha256 = "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/parsebib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/parsebib";
sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd";
name = "parsebib";
};
@@ -45190,7 +45440,7 @@
sha256 = "0npm5kv00fcnb5ajj76jp1dc84zxp7fgrkn472yxdq4hppvx0ixv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pass";
sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr";
name = "pass";
};
@@ -45211,7 +45461,7 @@
sha256 = "0yckh61v9a798gpyk8x2z9990h3b61lwsw0kish571pygfyqhjkq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/passthword";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/passthword";
sha256 = "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn";
name = "passthword";
};
@@ -45232,7 +45482,7 @@
sha256 = "1pw401ar114wpayibphv3n6m0gz68zjmiwz60r4lbar45bmxvihx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/password-generator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/password-generator";
sha256 = "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb";
name = "password-generator";
};
@@ -45252,7 +45502,7 @@
sha256 = "11cq7wz57zc649zww720cdfa9rqyjl9gf9h0m96wfapm4mhczd1n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/password-store";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/password-store";
sha256 = "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss";
name = "password-store";
};
@@ -45273,7 +45523,7 @@
sha256 = "0921xwg3d3345hiqz4c1iyqwvfyg8rv0wggcnig7xh9qivspag4c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/password-vault";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/password-vault";
sha256 = "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a";
name = "password-vault";
};
@@ -45294,7 +45544,7 @@
sha256 = "1hjzpza8zmzb83sacmqcnh9a52m4x5d8xbwvcqvld1ajglv4y124";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pastebin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pastebin";
sha256 = "0ff01vzslgdmsj1jp1m2lvnan6immd4l7vz466g1glb5nkb7qfcr";
name = "pastebin";
};
@@ -45315,7 +45565,7 @@
sha256 = "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pastehub";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pastehub";
sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v";
name = "pastehub";
};
@@ -45336,7 +45586,7 @@
sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pastelmac-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pastelmac-theme";
sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f";
name = "pastelmac-theme";
};
@@ -45356,7 +45606,7 @@
sha256 = "1ar6rf2ykd252y8ahx0lca7xsgfs6ff287q9iij79gs9fhn4yfy5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pastels-on-dark-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pastels-on-dark-theme";
sha256 = "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh";
name = "pastels-on-dark-theme";
};
@@ -45377,7 +45627,7 @@
sha256 = "1ffnkw8djs8kvfjd1crnaqram1vl4w3g1zhsqp74ds0mccsd6830";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/path-headerline-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/path-headerline-mode";
sha256 = "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337";
name = "path-headerline-mode";
};
@@ -45398,7 +45648,7 @@
sha256 = "0wsq11qffw1lx9x79law7jrz0sxm6km83gh891ic9ak2y6j5shxf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pathify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pathify";
sha256 = "1z970xnzbhmfikj1rkfx24jvwc7f1xxw6hk7kmahxvphjxrvgc2f";
name = "pathify";
};
@@ -45419,7 +45669,7 @@
sha256 = "0kkgqaxyrv65rfg2ng1vmmmrc9bm98yqpsv2pcb760287dn0l27m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paxedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paxedit";
sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic";
name = "paxedit";
};
@@ -45440,7 +45690,7 @@
sha256 = "138w0dlp3msjmr2x09kfcnxwhdldbz9xjfy7l6lig1x9ima0z5w6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pbcopy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pbcopy";
sha256 = "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q";
name = "pbcopy";
};
@@ -45461,7 +45711,7 @@
sha256 = "1jj5h92qakrn9d5d88dvl43b7ppw96rm11hqg3791i6k48nx1d1m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pc-bufsw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pc-bufsw";
sha256 = "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5";
name = "pc-bufsw";
};
@@ -45482,7 +45732,7 @@
sha256 = "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pcache";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcache";
sha256 = "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l";
name = "pcache";
};
@@ -45503,7 +45753,7 @@
sha256 = "0pwx1nbgciy28rivvrgka46zihmag9ljrs40bvscgd9rkragm4zy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pcmpl-args";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcmpl-args";
sha256 = "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr";
name = "pcmpl-args";
};
@@ -45524,7 +45774,7 @@
sha256 = "0pspxgicc0mkypp94r0jydmkjr3ngv8y4w1xpj93kp79hnvyls0a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pcmpl-git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcmpl-git";
sha256 = "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk";
name = "pcmpl-git";
};
@@ -45545,7 +45795,7 @@
sha256 = "17i5j5005dhzgwzds5jj1a7d31xvbshjc139vawwz2xip5aynji4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pcmpl-homebrew";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcmpl-homebrew";
sha256 = "11yd18s79iszp8gas97hqpa0b0whgh7dvlyci3nd4z28467p83v8";
name = "pcmpl-homebrew";
};
@@ -45566,7 +45816,7 @@
sha256 = "14pz15by9gp0307bcdv9h90mcr35ya89wbn3y13n7k0z5r45gn58";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pcmpl-pip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcmpl-pip";
sha256 = "19a3np5swpqvrx133yvziqnr2pvj8zi0b725j8kxhp2bj1g1c6hr";
name = "pcmpl-pip";
};
@@ -45587,7 +45837,7 @@
sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pcomplete-extension";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcomplete-extension";
sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc";
name = "pcomplete-extension";
};
@@ -45608,7 +45858,7 @@
sha256 = "1dpfhrxbaqpgjzac3m9hclbzlnrxq9b8bx6za53aqvml72yzxc6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pcre2el";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcre2el";
sha256 = "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3";
name = "pcre2el";
};
@@ -45629,7 +45879,7 @@
sha256 = "0aaprjczjf3al5vcypw1fsnz5a0xnnlhmvy0lc83i9aqbsa2y8af";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pcsv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcsv";
sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl";
name = "pcsv";
};
@@ -45650,7 +45900,7 @@
sha256 = "1xkkyz7y08jr71rzdacb9v7gk95qsxlsshkdsxq8jp70irq51099";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pdb-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pdb-mode";
sha256 = "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy";
name = "pdb-mode";
};
@@ -45671,7 +45921,7 @@
sha256 = "00h35j1rhqqnfj7y6z3fblcq2kijnhl51h44424x0xjhydkk3kxv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pdf-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pdf-tools";
sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw";
name = "pdf-tools";
};
@@ -45692,7 +45942,7 @@
sha256 = "1clvrmvijwpffigh5f29vnwcvffqk0nrvlz26158hip1z9x7nah3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/peacock-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/peacock-theme";
sha256 = "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9";
name = "peacock-theme";
};
@@ -45713,7 +45963,7 @@
sha256 = "11nv6pll0zj9dkgzlzgav39a6x3sfi7kvfhwm96fa3iy4v8bixrb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/peek-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/peek-mode";
sha256 = "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4";
name = "peek-mode";
};
@@ -45734,7 +45984,7 @@
sha256 = "1wy5qpnfri1gha2cnl6q20qar8dbl2mimpb43bnhmm2g3wgjyad6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/peep-dired";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/peep-dired";
sha256 = "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735";
name = "peep-dired";
};
@@ -45755,7 +46005,7 @@
sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/peg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/peg";
sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm";
name = "peg";
};
@@ -45775,7 +46025,7 @@
sha256 = "0w02l91x624cgzdg33a9spgcwy12m607dsfnr1xbc1fi08np4sd1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/per-buffer-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/per-buffer-theme";
sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn";
name = "per-buffer-theme";
};
@@ -45796,7 +46046,7 @@
sha256 = "0fzypcxxd5zlkcybz0xppf09l0vf4vsfisr2y3ijsmxhg7yrwzj5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/perl-completion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/perl-completion";
sha256 = "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b";
name = "perl-completion";
};
@@ -45817,7 +46067,7 @@
sha256 = "11fs78b7ssz18wr35vxf6h4zpfj4l4vsikfzayq6hyqjnchv7b45";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/perl6-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/perl6-mode";
sha256 = "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv";
name = "perl6-mode";
};
@@ -45838,7 +46088,7 @@
sha256 = "0wg0cpqxzfgln6xdngzspsbfirn9a5jxpgk66m0fpi33215z9q26";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/perlbrew";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/perlbrew";
sha256 = "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8";
name = "perlbrew";
};
@@ -45859,7 +46109,7 @@
sha256 = "0iw9qsqy1aszwfzfslyxz31zav4xq8pbrx0mwxqix5lvy7768ppp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/persistent-overlays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persistent-overlays";
sha256 = "136acbxqykvsw8a5il1zgpxr7llxmc3347847vf0jnmbzb1b472a";
name = "persistent-overlays";
};
@@ -45880,7 +46130,7 @@
sha256 = "0j72rqd96dz9pp9zwc88q3358m4b891dg0szmbyvs4myp3yandz2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/persistent-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persistent-scratch";
sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1";
name = "persistent-scratch";
};
@@ -45901,7 +46151,7 @@
sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/persistent-soft";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persistent-soft";
sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc";
name = "persistent-soft";
};
@@ -45914,15 +46164,15 @@
persp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "persp-mode";
- version = "20160514.329";
+ version = "20160521.1242";
src = fetchFromGitHub {
owner = "Bad-ptr";
repo = "persp-mode.el";
- rev = "6b82c31ee56a95e6aae5299c378980ecee7c6ce6";
- sha256 = "03yxrixkxmvlwaqcvq2wr9a5c2kk624lgv6qq9xs5rynw4l3w549";
+ rev = "5ecbc550e8df12a777ae52322a0bc9b48cde60f9";
+ sha256 = "1nsgmvvdx9hrnainzx7a93wj3v0d2k31bf4fjq4zk7ldfwkfmh9k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/persp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persp-mode";
sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w";
name = "persp-mode";
};
@@ -45943,7 +46193,7 @@
sha256 = "0b9hz253m6d58dwsjsk9d1fw0ql33m9wfvyx10ncsqbr0j0s98k5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/persp-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persp-projectile";
sha256 = "10l2kqjyigg98qbbpf3qf4d5bm63kkk4vp7ip8fibgj1p9gqmnxm";
name = "persp-projectile";
};
@@ -45964,7 +46214,7 @@
sha256 = "11slq43p6gjvmi4pqwh76a26c2v6l1dmnihgaskn4g0s65qw3kqk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/perspective";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/perspective";
sha256 = "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml";
name = "perspective";
};
@@ -45985,7 +46235,7 @@
sha256 = "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pg";
sha256 = "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji";
name = "pg";
};
@@ -46006,7 +46256,7 @@
sha256 = "0c9d4c24ic67y07y74bv5b7vc56b6l0lbh2fbzm870r1dl5zbzcj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pgdevenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pgdevenv";
sha256 = "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w";
name = "pgdevenv";
};
@@ -46027,7 +46277,7 @@
sha256 = "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ph";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ph";
sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l";
name = "ph";
};
@@ -46048,7 +46298,7 @@
sha256 = "0cmfb5ns335nq27iw94qxvrldpwjga0hw40da9kpdcfg0in4ya0c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phabricator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phabricator";
sha256 = "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c";
name = "phabricator";
};
@@ -46069,7 +46319,7 @@
sha256 = "14g06ndxrqz80kdyhil6ajcqqxkfa77r1gr7vwqa9sq6jgm8dpx5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phi-autopair";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-autopair";
sha256 = "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4";
name = "phi-autopair";
};
@@ -46090,7 +46340,7 @@
sha256 = "1rchxhp4kji5kbg8kzkzdbfy8sdbgbqd5g59cch7ia9agh5jvwyx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phi-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-grep";
sha256 = "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj";
name = "phi-grep";
};
@@ -46111,7 +46361,7 @@
sha256 = "0d2c579rg8wdfmn94nzaix9332jch4wlr939jszls330s38d0iv4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phi-rectangle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-rectangle";
sha256 = "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy";
name = "phi-rectangle";
};
@@ -46132,7 +46382,7 @@
sha256 = "10kyq3lkhmbmj1hl9awzc0w8073dn9mbjd5skh660ljg5mmi6x62";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phi-search";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-search";
sha256 = "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g";
name = "phi-search";
};
@@ -46153,7 +46403,7 @@
sha256 = "1b44947hncw4q42fxxrz6fm21habzp4pyp0569xdwysrx2rca2fn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phi-search-dired";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-search-dired";
sha256 = "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p";
name = "phi-search-dired";
};
@@ -46174,7 +46424,7 @@
sha256 = "0wr86ad0yl52im6b9z0b9pzmhcn39qg5m9878yfv1nbxliw40lcd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phi-search-mc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-search-mc";
sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8";
name = "phi-search-mc";
};
@@ -46195,7 +46445,7 @@
sha256 = "1k8hjnkinzdxy9qxldsyvj6npa2sv48m905d1cvxr8lyzpc5hikh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phi-search-migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-search-migemo";
sha256 = "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6";
name = "phi-search-migemo";
};
@@ -46216,7 +46466,7 @@
sha256 = "1fg63g1cm9mp50sf3ldcb0pr4bvlfxx010arisxdkj102pmib2ri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phoenix-dark-mono-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phoenix-dark-mono-theme";
sha256 = "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939";
name = "phoenix-dark-mono-theme";
};
@@ -46237,7 +46487,7 @@
sha256 = "042yw44d5pwykl177sdh209drc5f17yzhq0mxrf7qhycbjs4h8cg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phoenix-dark-pink-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phoenix-dark-pink-theme";
sha256 = "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr";
name = "phoenix-dark-pink-theme";
};
@@ -46258,7 +46508,7 @@
sha256 = "1l64rka9wrnwdgfgwv8xh7mq9f1937z2v3r82qcfi6il3anw4zm0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/php-auto-yasnippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-auto-yasnippets";
sha256 = "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn";
name = "php-auto-yasnippets";
};
@@ -46279,7 +46529,7 @@
sha256 = "07lcibr55pk3sab9bbq2r4phadl5p28n63wkq5rkhkkjc7s9rayc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/php-boris";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-boris";
sha256 = "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g";
name = "php-boris";
};
@@ -46300,7 +46550,7 @@
sha256 = "1wk7vq80v97psxfg0pwy4mc6kdc61gm6h1vgl9p71ii6g6zvzcqg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/php-boris-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-boris-minor-mode";
sha256 = "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl";
name = "php-boris-minor-mode";
};
@@ -46321,7 +46571,7 @@
sha256 = "0hm6myvf91f4d2yfc7fs2xky9m8hfnimx1gkfzmn9f5pcc2l2p0i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/php-eldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-eldoc";
sha256 = "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j";
name = "php-eldoc";
};
@@ -46342,7 +46592,7 @@
sha256 = "1ybx2kb719xm4ld24kki7x5x6pygcxvnbp9dr49s8xh60g5h4b47";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/php-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-mode";
sha256 = "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y";
name = "php-mode";
};
@@ -46363,7 +46613,7 @@
sha256 = "0f1n0jcla157ngqshq5n8iws216ar63ynjd6743cbdrzj0v030wg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/php+-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php+-mode";
sha256 = "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik";
name = "php-plus--mode";
};
@@ -46384,7 +46634,7 @@
sha256 = "01i552ch8r8i6nzw8prwxcafzrq6xnzyc4cn36w3my1xq0k2ljvz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/php-refactor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-refactor-mode";
sha256 = "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s";
name = "php-refactor-mode";
};
@@ -46405,7 +46655,7 @@
sha256 = "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phpcbf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phpcbf";
sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv";
name = "phpcbf";
};
@@ -46426,7 +46676,7 @@
sha256 = "1pr5lrw1h6nibyyzb4rj7a72nsrnfczps3ll94wlsh19nqlmlqaj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phpunit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phpunit";
sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8";
name = "phpunit";
};
@@ -46447,7 +46697,7 @@
sha256 = "053jqzl0sp3dnl4919vi30xqrdcpi9jsqx5hndj1bprf7926w11d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pianobar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pianobar";
sha256 = "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn";
name = "pianobar";
};
@@ -46468,7 +46718,7 @@
sha256 = "0p91ysyjksbravnw3l78mshay6swgb5k1zi5bbppppk8zkmdp115";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/picolisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/picolisp-mode";
sha256 = "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5";
name = "picolisp-mode";
};
@@ -46489,7 +46739,7 @@
sha256 = "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pig-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pig-mode";
sha256 = "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x";
name = "pig-mode";
};
@@ -46510,7 +46760,7 @@
sha256 = "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pig-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pig-snippets";
sha256 = "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2";
name = "pig-snippets";
};
@@ -46531,7 +46781,7 @@
sha256 = "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pillar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pillar";
sha256 = "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js";
name = "pillar";
};
@@ -46552,7 +46802,7 @@
sha256 = "0wy9c37g6m5khchlp8qvfnjgkwq4r38659adcm5prvzjgzqhlfja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pinboard-api";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pinboard-api";
sha256 = "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0";
name = "pinboard-api";
};
@@ -46573,7 +46823,7 @@
sha256 = "1wc31r5fpcia4n4vbpg7vv3rzrnjzh18yygi3kp4wvl2wzx2azqh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pinot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pinot";
sha256 = "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i";
name = "pinot";
};
@@ -46594,7 +46844,7 @@
sha256 = "0bp4raxqv34jyg3yvdcsh9lav28x376gngm9nn8vjgmq9wggzf3i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pinyin-search";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pinyin-search";
sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z";
name = "pinyin-search";
};
@@ -46615,7 +46865,7 @@
sha256 = "0wbdhd3wqha3ahyakdjj4ki3998l0fafi86l26gkir1bq2qpkmcs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pinyinlib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pinyinlib";
sha256 = "0kv67qa3825fw64qimkph2b65pilrsx5730y4c7f7c1f8giz5vxr";
name = "pinyinlib";
};
@@ -46636,7 +46886,7 @@
sha256 = "0j4h6q1s2s9dw1pp22xsajchwg8nh3x4x5qxbzf19i1xbpcghw7h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pip-requirements";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pip-requirements";
sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz";
name = "pip-requirements";
};
@@ -46657,7 +46907,7 @@
sha256 = "1sbwqrk9nciqwm53sfbq3nr9f9zzpz79dmxs8yp005dk7accdlls";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pivotal-tracker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pivotal-tracker";
sha256 = "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2";
name = "pivotal-tracker";
};
@@ -46678,7 +46928,7 @@
sha256 = "0nnvf2p593gn8sbyrvczyll030xgnkxn900a2hy7ia7xh0wmvddp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pixie-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pixie-mode";
sha256 = "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8";
name = "pixie-mode";
};
@@ -46699,7 +46949,7 @@
sha256 = "18rvnvm097ca4yc1nfswdv7dfqg36insnif5kfj19aa60m9qxl09";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pixiv-novel-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pixiv-novel-mode";
sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px";
name = "pixiv-novel-mode";
};
@@ -46720,7 +46970,7 @@
sha256 = "1xkdbyhz9mgdz5zmjm4hh050klsl12w5lkckw2l77ihcxv0vjnf2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pkg-info";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pkg-info";
sha256 = "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx";
name = "pkg-info";
};
@@ -46741,7 +46991,7 @@
sha256 = "077vp3fxwxj7b98ydw6iyi391w3acp73qwk6615yqdylpp66m750";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pkgbuild-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pkgbuild-mode";
sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x";
name = "pkgbuild-mode";
};
@@ -46762,7 +47012,7 @@
sha256 = "0rpiyp95k14fsc5hdbnj4hs3snh0vm8a2skcplsdwkmb5j9547w1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/plan9-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plan9-theme";
sha256 = "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc";
name = "plan9-theme";
};
@@ -46783,7 +47033,7 @@
sha256 = "1aahyxmjsz9i5d22654bnmis8isbf5fydh0yy03sbiybm2hlyimi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/planet-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/planet-theme";
sha256 = "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9";
name = "planet-theme";
};
@@ -46804,7 +47054,7 @@
sha256 = "03nw4af1lgfppsbfq945c9pcz6ynhvpzlfdx3az83zi24b10az8n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/plantuml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plantuml-mode";
sha256 = "14imiqfgc2j9kjr3aqwzlw8xr1w5hb8i7d4ch709qky036i3lsci";
name = "plantuml-mode";
};
@@ -46825,7 +47075,7 @@
sha256 = "04xnk9s5mjr55y36y07k4vnsf841pg70c9wr6vcj5s16h3fhx9nw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/platformio-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/platformio-mode";
sha256 = "1v1pp3365wj19a5wmsxyyy5n548z3lmcbm2pwl914wip3ca7546f";
name = "platformio-mode";
};
@@ -46846,7 +47096,7 @@
sha256 = "0slfaclbhjm5paw8l7rr3y9xxjyhkizp9lwyvlgpkd38n4pgj2bx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/play-routes-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/play-routes-mode";
sha256 = "17phqil2zf5rfvhs5v743dh4lix4v2azbf33z9n97ahs7j66y2gz";
name = "play-routes-mode";
};
@@ -46867,7 +47117,7 @@
sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/plenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plenv";
sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4";
name = "plenv";
};
@@ -46888,7 +47138,7 @@
sha256 = "07hspp4bkb3f5dm0l1arm0w1m04cq4glg81x4a9kf7bl601wzki2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/plim-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plim-mode";
sha256 = "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi";
name = "plim-mode";
};
@@ -46909,7 +47159,7 @@
sha256 = "1r2yxa7gqr0z9fwhx38siwjpg73a93rdmnhr4h6nm6lr32vviyxm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/plsense";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plsense";
sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va";
name = "plsense";
};
@@ -46930,7 +47180,7 @@
sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/plsense-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plsense-direx";
sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j";
name = "plsense-direx";
};
@@ -46948,7 +47198,7 @@
sha256 = "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/plsql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plsql";
sha256 = "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1";
name = "plsql";
};
@@ -46969,7 +47219,7 @@
sha256 = "0qlxj19hj96l4lw81xh5r14ppf6kp63clikk060s9yw00q7gnl6a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/plur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plur";
sha256 = "0nf1dc7xf2zp316rssnz8sv374akcr54hp0rb219qvgyck9bdqiv";
name = "plur";
};
@@ -46988,7 +47238,7 @@
sha256 = "0x3s9fj41n6a21la762qm1si9ysv3zj5bbp6ykfskr73sxq6s9ff";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pmdm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pmdm";
sha256 = "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b";
name = "pmdm";
};
@@ -47009,7 +47259,7 @@
sha256 = "0nqv63yy0qpxhblzmkyvla90p9a7729fqxvhkfld9jxfqpgv1xyp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/point-stack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/point-stack";
sha256 = "0201gka1izqgxyivan60jbg9x1mmsw5dscxacasg97ffsciwbfr9";
name = "point-stack";
};
@@ -47027,7 +47277,7 @@
sha256 = "13c1iw77ccvrfrv4lyljg8fpm7xqhnv29yzvig8wr8b5j2vsd8bz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/point-undo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/point-undo";
sha256 = "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k";
name = "point-undo";
};
@@ -47048,7 +47298,7 @@
sha256 = "016cjy5pnnqccjqb0njqc9jq6kf6p165nlki83b8c0sj75yxghav";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pointback";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pointback";
sha256 = "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4";
name = "pointback";
};
@@ -47061,15 +47311,15 @@
polymode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "polymode";
- version = "20160506.1643";
+ version = "20160520.2129";
src = fetchFromGitHub {
owner = "vspinu";
repo = "polymode";
- rev = "3e4556d5c43ef62b81abd9162249617947e7ed2b";
- sha256 = "0fwsq5w5105c50ffpvbjf8m4f2yhz5y9njgxd8v61c1azapw2s9d";
+ rev = "d0b9384059ac32db0b914280302f37f7f2b3d337";
+ sha256 = "0q1n4nm21vjqcmdmm19yynzn3z97q83wk9g7kkrdx0mln9vzm13p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/polymode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/polymode";
sha256 = "0md02l7vhghvzplxa04sphimhphmksvmz079zykxajcvpm2rgwc8";
name = "polymode";
};
@@ -47090,7 +47340,7 @@
sha256 = "1dlk0ypw8316vgvb7z2p7fvaiz1wcy1l8crixypaya1zdsnh9v1z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pomodoro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pomodoro";
sha256 = "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8";
name = "pomodoro";
};
@@ -47111,7 +47361,7 @@
sha256 = "1g1yw0ykwswl9dnicyi7kxskqqry40wjykshgrqhs4k09j3jnacr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pony-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pony-mode";
sha256 = "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl";
name = "pony-mode";
};
@@ -47132,7 +47382,7 @@
sha256 = "002jhj47b9aqrfjy8b31ccbqhah5sn9wn7dmrhm1wbbgj9rfyw6s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pony-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pony-snippets";
sha256 = "12ygvpfkzldq6s4mwbrxs4x9927i7pa7ywn7lf1r3gg4h29ar9gn";
name = "pony-snippets";
};
@@ -47145,15 +47395,15 @@
ponylang-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ponylang-mode";
- version = "20160511.1136";
+ version = "20160519.1830";
src = fetchFromGitHub {
owner = "SeanTAllen";
repo = "ponylang-mode";
- rev = "1dc57b2fc28d755e0733cfcf68e7cf6978549f56";
- sha256 = "08x20dzgmfxc6mlsvkx931rwx8fpamnmvqhnr3jqh77ygyd69cxh";
+ rev = "25dfb3e8f34513ee857e1cae37aef1c4ccd4115d";
+ sha256 = "02jg77ji2fmy6mk0xh4l141clafjwfg9c10hwhwskgxn4bw7p8gf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ponylang-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ponylang-mode";
sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1";
name = "ponylang-mode";
};
@@ -47174,7 +47424,7 @@
sha256 = "0n1w1adglbavqgrv16rzhym72c3q083mh0c8yl5lj7adn4nr4gr3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pophint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pophint";
sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72";
name = "pophint";
};
@@ -47195,7 +47445,7 @@
sha256 = "0ja1kq4pl62zxlzwv2m8zzb55lg2fl366bi9pzvxl38frvbqg8qx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/poporg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/poporg";
sha256 = "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8";
name = "poporg";
};
@@ -47216,7 +47466,7 @@
sha256 = "0a85ih4r8scxadfrj18kvd8k7p9s4wpi780w0rp5iby0fyh94bwl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup";
sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2";
name = "popup";
};
@@ -47237,7 +47487,7 @@
sha256 = "1q9zajv6g7mi6k98kzq3498nhmdkp1z9d2b8vgzbk7745d39gm9b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/popup-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup-complete";
sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1";
name = "popup-complete";
};
@@ -47258,7 +47508,7 @@
sha256 = "19mqzfpki2zlnibp2vzymhdld1m20jinxwgdhmbl6zdfx74zbz7b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/popup-imenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup-imenu";
sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn";
name = "popup-imenu";
};
@@ -47279,7 +47529,7 @@
sha256 = "1zdwlmk3vr0mq0dxrnkqjncalnbmvpxc0lma2sv3a4czl8yv0inn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/popup-kill-ring";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup-kill-ring";
sha256 = "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip";
name = "popup-kill-ring";
};
@@ -47292,15 +47542,15 @@
popup-switcher = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "popup-switcher";
- version = "20160504.1219";
+ version = "20160518.639";
src = fetchFromGitHub {
owner = "kostafey";
repo = "popup-switcher";
- rev = "54be940ce11b5ce4976043980929abe6cbc2c2ec";
- sha256 = "1zr7kvgk01d3628vz461mr5p1whr2jd7fwh7ry64rbk8zlhhklvi";
+ rev = "e1403f9435668d6161558b1636bdb7f95239b217";
+ sha256 = "15vp1iqc1k9hlvam3vcw7hd2dr8wzdwrcls2zvw76jhlbybl0rbp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/popup-switcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup-switcher";
sha256 = "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1";
name = "popup-switcher";
};
@@ -47321,7 +47571,7 @@
sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/popwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popwin";
sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf";
name = "popwin";
};
@@ -47342,7 +47592,7 @@
sha256 = "1pm4x74pw67m2izr9dir201dn5g9icgk6h2j8rqvasgx8v8krv3i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/portage-navi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/portage-navi";
sha256 = "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg";
name = "portage-navi";
};
@@ -47363,7 +47613,7 @@
sha256 = "168hl76rhj6f5ncmrij4rd3z55228h6kb23384h2phsjw0avgf23";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pos-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pos-tip";
sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh";
name = "pos-tip";
};
@@ -47384,7 +47634,7 @@
sha256 = "14silfng5rbdc8hnzswjmqk705pncjlk8iphjcxcm799h44pnlcr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pov-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pov-mode";
sha256 = "1xzdmlfi5ixdh08v0ca80zkh9n3gfn4ql5pnl3jh745wbj9azxp9";
name = "pov-mode";
};
@@ -47405,7 +47655,7 @@
sha256 = "1jzqav2lchr0ggckjq9rwlxwryi7m7xnmn8471zgiamd1h04ddqf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pow";
sha256 = "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn";
name = "pow";
};
@@ -47426,7 +47676,7 @@
sha256 = "03828l2c8gxj4c9i6b16ynwkdr48gccwkpa1i0wk798f93kv8brw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/powerline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/powerline";
sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx";
name = "powerline";
};
@@ -47447,7 +47697,7 @@
sha256 = "1c8y4r7zdr6764kzs5bc64idv2pfjvi78lg2f1d2hp1595ia8y5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/powerline-evil";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/powerline-evil";
sha256 = "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr";
name = "powerline-evil";
};
@@ -47468,7 +47718,7 @@
sha256 = "1ym373mjyk3vfbw2c918zgaf9m35j8bkrpcj9d8m9drf4h7a8d3b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/powershell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/powershell";
sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk";
name = "powershell";
};
@@ -47486,7 +47736,7 @@
sha256 = "10gsdjdr8qngimqh57qxcljjnypbf38asxqb3zlfwc2ls52fc19q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pp-c-l";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pp-c-l";
sha256 = "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v";
name = "pp-c-l";
};
@@ -47498,13 +47748,13 @@
}) {};
pp-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "pp-plus";
- version = "20160501.2330";
+ version = "20160521.2240";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/pp+.el";
- sha256 = "0gs76dg2j6667zdk2sy64m3nzxy98cswx901x3f6d0c0s3qm5vdd";
+ sha256 = "1z4y3ahl22h7z7ssfcfmrwvsjrx12zdb92bfqibzkdj7g4a1r8gg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pp+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pp+";
sha256 = "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq";
name = "pp-plus";
};
@@ -47525,7 +47775,7 @@
sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ppd-sr-speedbar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ppd-sr-speedbar";
sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8";
name = "ppd-sr-speedbar";
};
@@ -47546,7 +47796,7 @@
sha256 = "0yrfd9qaz16nqcvjyjm9qci526qgkv6k51q5752h3iyqkxnss1pd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/preproc-font-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/preproc-font-lock";
sha256 = "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4";
name = "preproc-font-lock";
};
@@ -47567,7 +47817,7 @@
sha256 = "1dyi9nc2q43jf87xiz9xw42irrbla2vyixifdiibh6nm9misnfj0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/preseed-generic-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/preseed-generic-mode";
sha256 = "14vbx6y7h4vqc5kkgj4mbr9zj6gqf6ib3hh2917m203s8y87lsfl";
name = "preseed-generic-mode";
};
@@ -47585,7 +47835,7 @@
sha256 = "1fn24399wsn12453py0hw2vbbkrkakiwi06cjvjzsdk7g3326ma4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pretty-lambdada";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pretty-lambdada";
sha256 = "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6";
name = "pretty-lambdada";
};
@@ -47606,7 +47856,7 @@
sha256 = "0lrxd87p62s16bcp9r7hj1dnn67mgy2akslq4m9vb0xc7qckwr7y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pretty-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pretty-mode";
sha256 = "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f";
name = "pretty-mode";
};
@@ -47627,7 +47877,7 @@
sha256 = "1n0594msgy53ia58gjfkm3z3cnmq52wrq5992fm28s4jgazbgdfd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pretty-sha-path";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pretty-sha-path";
sha256 = "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq";
name = "pretty-sha-path";
};
@@ -47648,7 +47898,7 @@
sha256 = "1f00l9f6an1mh8yhf629mw0p37m4jcpl8giz47xbdyw1k6bqn830";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pretty-symbols";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pretty-symbols";
sha256 = "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb";
name = "pretty-symbols";
};
@@ -47669,7 +47919,7 @@
sha256 = "0zng64f5vwnpkf9fk59yv1ndc646q608a6awr1y9qk0mhzbfzhqm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/private";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/private";
sha256 = "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g";
name = "private";
};
@@ -47690,7 +47940,7 @@
sha256 = "1pxr5a9ik09k0f58lawhxiv179n5j8q24zhrs9vjk93yskl1ydwn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/private-diary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/private-diary";
sha256 = "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1";
name = "private-diary";
};
@@ -47711,7 +47961,7 @@
sha256 = "0nly5h0d6w8dc08ifb2fiqcn4cqcn9crkh2wn0jzlz4zd2x75qrb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/proc-net";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/proc-net";
sha256 = "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv";
name = "proc-net";
};
@@ -47732,7 +47982,7 @@
sha256 = "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/processing-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/processing-mode";
sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m";
name = "processing-mode";
};
@@ -47753,7 +48003,7 @@
sha256 = "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/processing-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/processing-snippets";
sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r";
name = "processing-snippets";
};
@@ -47774,7 +48024,7 @@
sha256 = "0yy4ximahmj3kbxn6bhag853vyy56g1n007qnd8hjsl1xawlin5x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/prodigy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prodigy";
sha256 = "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85";
name = "prodigy";
};
@@ -47795,7 +48045,7 @@
sha256 = "0hx7rxa3smdippcpj4j63k0r5l4wflllb0vpnwwknc9j93r7042b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/professional-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/professional-theme";
sha256 = "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5";
name = "professional-theme";
};
@@ -47816,7 +48066,7 @@
sha256 = "1szxsbk470fg3jp70r20va9hnnf4jj0mb7kxdkn6rd7ky6w34lwm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/prognth";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prognth";
sha256 = "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm";
name = "prognth";
};
@@ -47837,7 +48087,7 @@
sha256 = "1yklm43d0ppyf4simhqab6m892z4mmxs2145lzw6kpizixavcv00";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/programmer-dvorak";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/programmer-dvorak";
sha256 = "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv";
name = "programmer-dvorak";
};
@@ -47858,7 +48108,7 @@
sha256 = "04l4m3kxbwvyw9xy6cwakrdxxdswrrs7sya8zn6m738aawbr1mcd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/project-explorer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-explorer";
sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m";
name = "project-explorer";
};
@@ -47877,7 +48127,7 @@
sha256 = "1bb5b6hxg3gvwf0sqwkd97nnipsmr60py0rnsfhgvizn4cj3khhw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/project-local-variables";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-local-variables";
sha256 = "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl";
name = "project-local-variables";
};
@@ -47898,7 +48148,7 @@
sha256 = "1fvjap0bsyw5q92q50wk8c81yv4g8nqb6jdlnarf80glwk50avrs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/project-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-persist";
sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24";
name = "project-persist";
};
@@ -47919,7 +48169,7 @@
sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/project-persist-drawer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-persist-drawer";
sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb";
name = "project-persist-drawer";
};
@@ -47939,7 +48189,7 @@
sha256 = "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/project-root";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-root";
sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb";
name = "project-root";
};
@@ -47952,15 +48202,15 @@
projectile = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }:
melpaBuild {
pname = "projectile";
- version = "20160507.2154";
+ version = "20160522.1219";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "projectile";
- rev = "af247751fb17cdffe6a2f4713d733c734eb421cf";
- sha256 = "0i9s2vshhy18jm7h54knclvvcfknvdhkc1shlff6ifgg2kf1kgx0";
+ rev = "4f3282ddb176c7fbb9b6051e12aead119b519035";
+ sha256 = "0pzyiwdvv3d0zh2dyrm7084jcd4pz29hmjfd3x6vcdc01h7dw16m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile";
sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn";
name = "projectile";
};
@@ -47981,7 +48231,7 @@
sha256 = "0ch3naqp3ji0q4blpjfr1xbzgzxhw10h08y2akik96kk1pnkwism";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projectile-codesearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-codesearch";
sha256 = "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk";
name = "projectile-codesearch";
};
@@ -48002,7 +48252,7 @@
sha256 = "09zyzfqy1i3i8knvh1ajr5jcidjx3jpsyx8qarxfr5kv16pwyfvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projectile-direnv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-direnv";
sha256 = "1s5dapdcblcbcqyv8df26v8wxl8bhrs9ybl5h5qbzz49gigd8nqh";
name = "projectile-direnv";
};
@@ -48023,7 +48273,7 @@
sha256 = "1pqmyfz0vil30x739r18zpw9n76297ckisimq2g0xl1irhynsvbk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projectile-hanami";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-hanami";
sha256 = "0qi9i4wdggrmihf1j42fqrf38psmb33rlafg3y6da5r7lpn03j1a";
name = "projectile-hanami";
};
@@ -48036,15 +48286,15 @@
projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }:
melpaBuild {
pname = "projectile-rails";
- version = "20160509.551";
+ version = "20160519.339";
src = fetchFromGitHub {
owner = "asok";
repo = "projectile-rails";
- rev = "f994baf135a7afd86f750c4467f4ed228b15c35d";
- sha256 = "06k50sbmh8pgvx7wqgp78zg0wx5bagpf7lj9dapqnx1rnsa59h5c";
+ rev = "1d5bbb1bac250a37b2c0b6393a82c9ba3719cf90";
+ sha256 = "0g4slcaj5waka5sz0plnn0clnl9750wzj3bi7zfcycb2g7xhncwg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projectile-rails";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-rails";
sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq";
name = "projectile-rails";
};
@@ -48065,7 +48315,7 @@
sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projectile-sift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-sift";
sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i";
name = "projectile-sift";
};
@@ -48086,7 +48336,7 @@
sha256 = "0lr3vx1byf0i9jdzbyrvvzyzi1nfddvw5r9f9wm7gpfp5l8772la";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projectile-speedbar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-speedbar";
sha256 = "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp";
name = "projectile-speedbar";
};
@@ -48107,7 +48357,7 @@
sha256 = "0y8zbywin99nhcrs5nzx4d179r84rdy39admajpi0j76v0b9pwl3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projector";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projector";
sha256 = "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf";
name = "projector";
};
@@ -48128,7 +48378,7 @@
sha256 = "0hvvlh24157qjxz82sbg22d4cbrf95xyx202cybp0n1vyxsmjcmw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projekt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projekt";
sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8";
name = "projekt";
};
@@ -48149,7 +48399,7 @@
sha256 = "1sxxy0s96sgm6i743qwjs0qjpsdr03gqc1cddvvpxbryh42vw9jn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projmake-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projmake-mode";
sha256 = "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882";
name = "projmake-mode";
};
@@ -48170,7 +48420,7 @@
sha256 = "1hq8426i8rpb3qzkd5akv3i08pa4jsp9lwsskn38bfgp71pwild2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/prompt-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prompt-text";
sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc";
name = "prompt-text";
};
@@ -48191,7 +48441,7 @@
sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/prop-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prop-menu";
sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i";
name = "prop-menu";
};
@@ -48212,7 +48462,7 @@
sha256 = "0lch20njy248w7bnvgs7jz0zqasskf5dakmykxwpb48llm6kx95v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/propfont-mixed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/propfont-mixed";
sha256 = "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y";
name = "propfont-mixed";
};
@@ -48233,7 +48483,7 @@
sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/prosjekt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prosjekt";
sha256 = "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck";
name = "prosjekt";
};
@@ -48250,11 +48500,11 @@
src = fetchFromGitHub {
owner = "google";
repo = "protobuf";
- rev = "c8be6ee00c3afd59aee970a8c648099d78bdd576";
- sha256 = "1hn4avhz0h9pr619iizhf2yq07pjqssqqpvi006zd49vy03b3a1i";
+ rev = "594ce567ab8a0fd77604ae4a1748cc4f88a24cdf";
+ sha256 = "0xif4q9082f957l3gdy0n55fnnf369f5wb6048177x3xi26i25g2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/protobuf-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/protobuf-mode";
sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj";
name = "protobuf-mode";
};
@@ -48271,11 +48521,11 @@
src = fetchFromGitHub {
owner = "epost";
repo = "psc-ide-emacs";
- rev = "cd292c2b76c1bc5f046aa54e08f7a0f3abdc7db8";
- sha256 = "17d391hrang0jr8q40h89v30qb1aa3zb8mr2yh0fmjs4dz5rdjwq";
+ rev = "ab386e64dc67176ae5430d295cc700d2314fc799";
+ sha256 = "0qzvv1v0rkhr2rj260niy3gf58631fbhqy07fl71aspmf6dw3j55";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/psc-ide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psc-ide";
sha256 = "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9";
name = "psc-ide";
};
@@ -48296,7 +48546,7 @@
sha256 = "08j31bg5vwgirv5n5fsw7w6gncrkpwpjlj2m00dhj8wbvhp503sn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/psci";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psci";
sha256 = "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g";
name = "psci";
};
@@ -48317,7 +48567,7 @@
sha256 = "1fpcb4qpd11mbv733iklnbjg7g4ka05mf5wpa2k6kr3fbvndkx37";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/psession";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psession";
sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a";
name = "psession";
};
@@ -48338,7 +48588,7 @@
sha256 = "1jz1g0igpnsjn2r144205bffj10iyp8izm8678mzkhnricxkn0d6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/psvn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psvn";
sha256 = "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n";
name = "psvn";
};
@@ -48359,7 +48609,7 @@
sha256 = "0ng0nkr5azbz90jix5y9m9ri8l5jyps3jmgz3wvzd9k99grrik76";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/psysh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psysh";
sha256 = "0ygnfmfx1ifppg6j3vfz10srbcpr5ird2bhw6pvydijxkyd75vy5";
name = "psysh";
};
@@ -48380,7 +48630,7 @@
sha256 = "0ca8j7xlqxbidqfz2iarwn7qq4v12pwvsq6vzj2473n2g1c09xzj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pt";
sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj";
name = "pt";
};
@@ -48401,7 +48651,7 @@
sha256 = "1qszv1xc0h5hj13znxxbqk362m8ada59p0gxss78r2c9k61r5ql4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/puml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/puml-mode";
sha256 = "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn";
name = "puml-mode";
};
@@ -48422,7 +48672,7 @@
sha256 = "1bkkgs2agy00wivilljkj3a9fsb2ba935icjmhbk46zjc6yf3y6q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/punctuality-logger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/punctuality-logger";
sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm";
name = "punctuality-logger";
};
@@ -48443,7 +48693,7 @@
sha256 = "1viw95y6fha782n1jw7snr7xc00iyf94r4whsm1a2q11vm2d1h21";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pungi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pungi";
sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1";
name = "pungi";
};
@@ -48464,7 +48714,7 @@
sha256 = "1qqfv5qn336p6yk5fydphqpnp0p1ar6185ph2la32vy26k44nahd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/punpun-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/punpun-theme";
sha256 = "1l7nphh8v7w5w790cwmnp6nw5rciwhgzkvynkrvpiv9chhacx0xg";
name = "punpun-theme";
};
@@ -48485,7 +48735,7 @@
sha256 = "1ly7gkxlkfgx3nzw35f7rwx7x9w6jrhql15jgsrh9slcw3q2rksl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/puppet-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/puppet-mode";
sha256 = "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc";
name = "puppet-mode";
};
@@ -48506,7 +48756,7 @@
sha256 = "0k2plyvd6842yryzrfadbf4h7a9hrjvkcvixclbca2bkvfik3864";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/purescript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/purescript-mode";
sha256 = "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m";
name = "purescript-mode";
};
@@ -48527,7 +48777,7 @@
sha256 = "15myw5rkbnnpgzpiipm5xl4cyzymv8hh66x9al4aalb5nf52dckc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/purple-haze-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/purple-haze-theme";
sha256 = "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m";
name = "purple-haze-theme";
};
@@ -48548,7 +48798,7 @@
sha256 = "0qm2xv762cz196aqs445crqrmsks8hpwzpaykzn0chlvdk0m5cv1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/purty-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/purty-mode";
sha256 = "0gbbwl5kg74jf1i1zsr40zg3gw43qmz1l87k0r578v1xvyqmhm1i";
name = "purty-mode";
};
@@ -48569,7 +48819,7 @@
sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pushbullet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pushbullet";
sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl";
name = "pushbullet";
};
@@ -48590,7 +48840,7 @@
sha256 = "10g4imxgpv7a0j40qkx7xf2qnyz80ypd0mv0lf47n9dwln5byln3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/px";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/px";
sha256 = "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44";
name = "px";
};
@@ -48611,7 +48861,7 @@
sha256 = "1iw94m1bvsmadlj16f8ymwx0q6f9lqysy7by76hkpiwqqhd2i8rv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/py-autopep8";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-autopep8";
sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp";
name = "py-autopep8";
};
@@ -48632,7 +48882,7 @@
sha256 = "05803wi7rj73sy9ihkilr6pcn72szfsvgf2dgbdpnqra508rxyb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/py-gnitset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-gnitset";
sha256 = "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r";
name = "py-gnitset";
};
@@ -48653,7 +48903,7 @@
sha256 = "1416hbc64gwn9c8g9lxfx58w60ysi0x8rbps6mfxalavdhbs20sv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/py-import-check";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-import-check";
sha256 = "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k";
name = "py-import-check";
};
@@ -48674,7 +48924,7 @@
sha256 = "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/py-isort";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-isort";
sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb";
name = "py-isort";
};
@@ -48695,7 +48945,7 @@
sha256 = "05gi17n488r2n6x33nj4a23ci89c9smsbanmap4i302dy0mnmwgd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/py-smart-operator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-smart-operator";
sha256 = "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4";
name = "py-smart-operator";
};
@@ -48716,7 +48966,7 @@
sha256 = "1s39407z3rxz10r5sshv2vj7s23ylkhg59ixasgnpjk82gl4igpf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/py-test";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-test";
sha256 = "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb";
name = "py-test";
};
@@ -48737,7 +48987,7 @@
sha256 = "09z739w4fjg9xnv3mbh7v8j59mnbsfq4ygq616pj4xcw3nsh0rbg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/py-yapf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-yapf";
sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f";
name = "py-yapf";
};
@@ -48758,7 +49008,7 @@
sha256 = "09glwrb9q65qdm4yd0mbi5hwdy2434zm8699ywhs6hqpjacadlmi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pycarddavel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pycarddavel";
sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a";
name = "pycarddavel";
};
@@ -48779,7 +49029,7 @@
sha256 = "0qap6iz865l43mixga7541c2z9kdx8zkkdcgdlgn6n8pyv8iz7qs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pycoverage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pycoverage";
sha256 = "1jaanmpnawk0r6zfzx18crqml7lv412l2l0iabp345xvfvsh8h1m";
name = "pycoverage";
};
@@ -48800,7 +49050,7 @@
sha256 = "0vg06snvy3rq5jgnb2xj3sp71mjmpsp1d9cn2vqvahpgpa05c968";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pydoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pydoc";
sha256 = "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n";
name = "pydoc";
};
@@ -48820,7 +49070,7 @@
sha256 = "1mzyr6yznkyv99x9q8zx2f270ngjh8s94zvnhcbhidi57inpd1nh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pydoc-info";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pydoc-info";
sha256 = "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf";
name = "pydoc-info";
};
@@ -48841,7 +49091,7 @@
sha256 = "049wgwygdaa0p8p4pl37wkc06nam9ph17i9gzcg7w0hfwghjrc5j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pyenv-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyenv-mode";
sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59";
name = "pyenv-mode";
};
@@ -48862,7 +49112,7 @@
sha256 = "1sclhzv3w9fg54dg4qhlfbc0p1z5clyr8phrckhypvlwfgbar4b4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pyenv-mode-auto";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyenv-mode-auto";
sha256 = "1l7h4fas1vshkh4skxzpw7v2a11s1hwnb20n6a81yh701pbikqnd";
name = "pyenv-mode-auto";
};
@@ -48883,7 +49133,7 @@
sha256 = "1rp8zchvclh29rl9a1i82pcqghnhpaqnppaydxc2qx23y9pdgz9i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pyfmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyfmt";
sha256 = "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6";
name = "pyfmt";
};
@@ -48904,7 +49154,7 @@
sha256 = "05qx1p19dw3nr264shihfn33k579hd0wf4cxki5cqrxi7xzpjgrc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pyimpsort";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyimpsort";
sha256 = "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k";
name = "pyimpsort";
};
@@ -48921,11 +49171,11 @@
src = fetchFromGitHub {
owner = "PyCQA";
repo = "pylint";
- rev = "9f3077b3a0a2a5602df7850adc4f2d326d87e68f";
- sha256 = "1zhz98hzsk23ql984l45jzi3naak6gmh443n65lky998887qx9h4";
+ rev = "05eb7fd20e279b5616bea237d0effcbd598a9583";
+ sha256 = "0i0bf9rrmk60lqpdpwrmn60is5dzrn0xcwqw15bhqh1rcr4k7yah";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pylint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pylint";
sha256 = "1138a8dn9y4ypbphs1zfvr8gr4vdjcy0adsl4xfbgsls4kcdwpxx";
name = "pylint";
};
@@ -48946,7 +49196,7 @@
sha256 = "0bg8pqqia9l39ac3s9xrnlyrg1pj2w00vc742qpjdk5349lazdl6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pytest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pytest";
sha256 = "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh";
name = "pytest";
};
@@ -48967,7 +49217,7 @@
sha256 = "1cnjdgw3x6yb5k06z57xifywlg0kdx9ai4f1ajc0wx9aax8r5gav";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/python-cell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-cell";
sha256 = "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf";
name = "python-cell";
};
@@ -48988,7 +49238,7 @@
sha256 = "1qckn5bi1ib54hgqbym5qqwzvbv70ria1w3c2x543xlr0l7zga6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/python-django";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-django";
sha256 = "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k";
name = "python-django";
};
@@ -49009,7 +49259,7 @@
sha256 = "0nlhfxiirs90g8sx3zwf36idnj1nbasrdm0qhpdqs6k6vkndfbgk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/python-docstring";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-docstring";
sha256 = "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw";
name = "python-docstring";
};
@@ -49030,7 +49280,7 @@
sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/python-environment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-environment";
sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7";
name = "python-environment";
};
@@ -49051,7 +49301,7 @@
sha256 = "0zk6014dzfrb3y3nhs890x082xf044w0a8nmy6rlrj375lvhfn99";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/python-info";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-info";
sha256 = "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy";
name = "python-info";
};
@@ -49064,15 +49314,15 @@
python-mode = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "python-mode";
- version = "20160425.1327";
+ version = "20160521.310";
src = fetchFromGitLab {
owner = "python-mode-devs";
repo = "python-mode";
- rev = "9e115cd8e75e4790a14974ca705826d811eadb3a";
- sha256 = "0lml6lmnc40qcc1yd41asqwd85a5h3das4s9777qaywclg4wjms5";
+ rev = "39e9d2bffcf85c0b961b5401f50491c416978d12";
+ sha256 = "0rk3p1crxxbajvx5d3a38p5ma2zi17pf86xp27y9pyg0bfh2cp14";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/python-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-mode";
sha256 = "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k";
name = "python-mode";
};
@@ -49093,7 +49343,7 @@
sha256 = "1shz8qha2cqv89hz27aazwd6qbf4qnz17h6hh8in5qxgfsndi7pp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/python-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-x";
sha256 = "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn";
name = "python-x";
};
@@ -49114,7 +49364,7 @@
sha256 = "1w29l4zyvcchjdywz2py95qq7bszhldpga2ng75g7p07pq7f2w1p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/python3-info";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python3-info";
sha256 = "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3";
name = "python3-info";
};
@@ -49135,7 +49385,7 @@
sha256 = "16sp3mg5jzx89lgr3kr61fqw1p9gc5zxq2mi9rpgqi5hkkcpnpgj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pythonic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pythonic";
sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51";
name = "pythonic";
};
@@ -49156,7 +49406,7 @@
sha256 = "19q0hlhnjz77akax01cwbib7b71f8magd3k0nqdlg2p3xm8g07l8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pyvenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyvenv";
sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v";
name = "pyvenv";
};
@@ -49177,7 +49427,7 @@
sha256 = "0ggivlaj29rbbhkjpf3bf7vr96xjzffas0sf5m54qh6nyz6nnha5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/qiita";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/qiita";
sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl";
name = "qiita";
};
@@ -49198,7 +49448,7 @@
sha256 = "1mlka59gyylj4cabi1b552h11qx54kjqwx3bkmsdngjrd4da222a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/qml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/qml-mode";
sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n";
name = "qml-mode";
};
@@ -49219,7 +49469,7 @@
sha256 = "0vhzwr2adkprjibi3x4lnsvjxishysma7fhpwzgg28l21qjqc0nm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/quack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quack";
sha256 = "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii";
name = "quack";
};
@@ -49240,7 +49490,7 @@
sha256 = "0y7mdizx6km3000cqjrirlgwzkq56asnzl8n1bl56pk5d9grfx9h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/quasi-monochrome-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quasi-monochrome-theme";
sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0";
name = "quasi-monochrome-theme";
};
@@ -49261,7 +49511,7 @@
sha256 = "0l9wrx93pf6638fny1qa6a25hs15dpb0mklxcaz2l9bd7r7sx8ri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/quelpa";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quelpa";
sha256 = "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs";
name = "quelpa";
};
@@ -49282,7 +49532,7 @@
sha256 = "00wnvyw2daiwwd1jyq1ag5jsws8k8jxs3lsj73dagbvqnlywmkm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/quelpa-use-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quelpa-use-package";
sha256 = "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9";
name = "quelpa-use-package";
};
@@ -49303,7 +49553,7 @@
sha256 = "0kh63nzdzwxksn2ar2i1ds7n96jga2dhhc9gg27p1g2ca66fs6h5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/quick-buffer-switch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quick-buffer-switch";
sha256 = "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40";
name = "quick-buffer-switch";
};
@@ -49324,7 +49574,7 @@
sha256 = "1cp3z05qjy7qvjjv105ws1j9qykx8sl4s13xff0ijwvjza6ga44c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/quick-preview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quick-preview";
sha256 = "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9";
name = "quick-preview";
};
@@ -49345,7 +49595,7 @@
sha256 = "13svdvww8dbv75lg66xhca6xi08k7k44rsx2ckdf82j9i52y5lw6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/quickref";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quickref";
sha256 = "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1";
name = "quickref";
};
@@ -49366,7 +49616,7 @@
sha256 = "0czmv7bdsayckg854jfpmaqs4qj9pdhhn0gsqkfa510d7qz032bj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/quickrun";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quickrun";
sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy";
name = "quickrun";
};
@@ -49387,7 +49637,7 @@
sha256 = "14q7x341gqcxn3bq72wmfxipqmj2dh35kxcrwjkyghbsbd43rv8n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/quiet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quiet";
sha256 = "1jq65jpx0rlkc0dzy55gs37ybpjzvcv06ahwiw1lk2n92g4pi96a";
name = "quiet";
};
@@ -49408,7 +49658,7 @@
sha256 = "0dhljmdlg4p832w9s7rp8vznkpjkwpg8k9hj95cn2h76c0afwz3j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/r-autoyas";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/r-autoyas";
sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4";
name = "r-autoyas";
};
@@ -49429,7 +49679,7 @@
sha256 = "1d128mamvwpjnk2dazhcxvfjw3lf0ix56l85gwsb377v05pn3wzf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/racer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/racer";
sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi";
name = "racer";
};
@@ -49450,7 +49700,7 @@
sha256 = "1clpwjnph2ygmkn4r98wv3nxkvw4hg6nc01xph517lc7n15a3vri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/racket-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/racket-mode";
sha256 = "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb";
name = "racket-mode";
};
@@ -49471,7 +49721,7 @@
sha256 = "00x09vjd3jz5f73qkf5v1y402zn8vl8dsyfwlq9z646p18ba7gyh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/railgun";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/railgun";
sha256 = "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0";
name = "railgun";
};
@@ -49492,7 +49742,7 @@
sha256 = "1fh8wsb0pa2isr1kgh3v9zmmxq1nlmqwqk4z34dw5wpaiyihmk84";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rails-log-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rails-log-mode";
sha256 = "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0";
name = "rails-log-mode";
};
@@ -49513,7 +49763,7 @@
sha256 = "0cqp2vns7gq377bm6q9n5q0ra1d5yy2x2aiw9q1hswk82xpibj9l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rails-new";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rails-new";
sha256 = "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h";
name = "rails-new";
};
@@ -49534,7 +49784,7 @@
sha256 = "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/railscasts-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/railscasts-theme";
sha256 = "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r";
name = "railscasts-theme";
};
@@ -49555,7 +49805,7 @@
sha256 = "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rainbow-blocks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rainbow-blocks";
sha256 = "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8";
name = "rainbow-blocks";
};
@@ -49576,7 +49826,7 @@
sha256 = "0vs9pf8lqq5p5qz1770pxgw47ym4xj8axxmwamn66br59mykdhv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rainbow-delimiters";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rainbow-delimiters";
sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg";
name = "rainbow-delimiters";
};
@@ -49597,7 +49847,7 @@
sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rainbow-identifiers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rainbow-identifiers";
sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp";
name = "rainbow-identifiers";
};
@@ -49618,7 +49868,7 @@
sha256 = "1wcs8j8rdls0n3v8zdpk2n5riwzz2yvjf6b70a5bj7p20gyafhj2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rake";
sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns";
name = "rake";
};
@@ -49639,7 +49889,7 @@
sha256 = "13pkp80cv1v3pjff1588cgyx18a31i668lwywll5dk4fxl4zdjvb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rally-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rally-mode";
sha256 = "1vzsh5855bzln3p3235yccl2azpndpc4rh95zrx6p1k62h2kv0y1";
name = "rally-mode";
};
@@ -49660,7 +49910,7 @@
sha256 = "0fmajgqf9j21qn7h35sky5di8cnma432g0ki9d5m41byxp9y1bdl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rand-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rand-theme";
sha256 = "0h0n1lsxnl12mjrjpra62vblrg8kbp1hk7w1v6makj074d037j2h";
name = "rand-theme";
};
@@ -49681,7 +49931,7 @@
sha256 = "1z25xmz8pl3rsfahw6ay8wx5wbnlxabnzr2dq20m0i5jyci8lqll";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/random-splash-image";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/random-splash-image";
sha256 = "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik";
name = "random-splash-image";
};
@@ -49694,15 +49944,15 @@
ranger = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ranger";
- version = "20160516.1033";
+ version = "20160518.1000";
src = fetchFromGitHub {
owner = "ralesi";
repo = "ranger.el";
- rev = "6c9670f7d9899a7883d67e9155ee1f9c1c27ff9a";
- sha256 = "1552s9m9zxfvcvhjj9agv50n06qwc69kxz5k910bpn74afvr2vcx";
+ rev = "5a92c4ab9ac09e4d1cb9a9760c8fb61a9586cccc";
+ sha256 = "0qrzy64s24zaaldl9kyby29y6752cpdapdaa3khsx7s931war1zy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ranger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ranger";
sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4";
name = "ranger";
};
@@ -49723,7 +49973,7 @@
sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rase";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rase";
sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0";
name = "rase";
};
@@ -49744,7 +49994,7 @@
sha256 = "0dd9yhxwwk16xkwld9c3hpf9bw8zzc1lyvisp0vn6vcd240j02w0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rats";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rats";
sha256 = "0jhwiq9yzwpyqhk3c32vqx8nryingzh58psxbzjl3812b7xdqphr";
name = "rats";
};
@@ -49765,7 +50015,7 @@
sha256 = "0yd0rs6fnc6lsfi7pivw5sivh698055r8ifj9vrxb82dcx2y6v2h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rbenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rbenv";
sha256 = "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65";
name = "rbenv";
};
@@ -49786,7 +50036,7 @@
sha256 = "0q5giixk6pv82cf34a0mxmnzh2gdiyq6dzv4ypkkdpz6wsm2ffhx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rbt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rbt";
sha256 = "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm";
name = "rbt";
};
@@ -49807,7 +50057,7 @@
sha256 = "0xdyrp0zs2v2glpfwlajmj97wygwi0y492zbp6rp3caa5bj3j4z2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rcirc-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-alert";
sha256 = "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a";
name = "rcirc-alert";
};
@@ -49828,7 +50078,7 @@
sha256 = "1mpk5rzsil298q3ppv5v9jrn274v71jffyz0jihrksh1wbjzwhlx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rcirc-alertify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-alertify";
sha256 = "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws";
name = "rcirc-alertify";
};
@@ -49849,7 +50099,7 @@
sha256 = "173lhi48dwfp9k7jmgivhcc9f38snz5xlciyjhrafpadq1pir497";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rcirc-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-color";
sha256 = "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5";
name = "rcirc-color";
};
@@ -49870,7 +50120,7 @@
sha256 = "0d99x7dfw5xrn62knvs65lvn6xyy7399xwqyy47bs4n81v25aqbh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rcirc-groups";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-groups";
sha256 = "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx";
name = "rcirc-groups";
};
@@ -49891,7 +50141,7 @@
sha256 = "1k4knsrca626pikgaalqbqwy7im4wz1vrmzzhdrdb4lhdz6sq3q3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rcirc-notify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-notify";
sha256 = "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v";
name = "rcirc-notify";
};
@@ -49912,7 +50162,7 @@
sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rcirc-styles";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-styles";
sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r";
name = "rcirc-styles";
};
@@ -49925,15 +50175,15 @@
rdf-prefix = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rdf-prefix";
- version = "20160326.1304";
+ version = "20160517.1423";
src = fetchFromGitHub {
owner = "simenheg";
repo = "rdf-prefix";
- rev = "5e4b0ab384a55974ffa3e5efdd1e437cce8e1562";
- sha256 = "0h54mpi8jd21vjifc0yy0hvpygiam1rlmypijpi4kv42x5mxkn3a";
+ rev = "d1897dcb98bd24741f90d9e3973aed762a0430ae";
+ sha256 = "1ss0y7lwd9bi8nzmhvpfn24vl4xsjk2xclhvfz602c9k18k18qza";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rdf-prefix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rdf-prefix";
sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm";
name = "rdf-prefix";
};
@@ -49954,7 +50204,7 @@
sha256 = "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rdp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rdp";
sha256 = "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz";
name = "rdp";
};
@@ -49975,7 +50225,7 @@
sha256 = "00j0iqa37yzd7xrgd8xcgpgmjcarhn0yx4zpbnr7z7kzmg24ywa7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/react-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/react-snippets";
sha256 = "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73";
name = "react-snippets";
};
@@ -49996,7 +50246,7 @@
sha256 = "0kg18ybgwcxhv5fiya5d3wn5w9si4914q946gjannk67d6jcq08g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/readability";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/readability";
sha256 = "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv";
name = "readability";
};
@@ -50017,7 +50267,7 @@
sha256 = "1j5b5xapflwzh8a297gva0l12ralwa9vl5z3bb75c9ksjkhi4nm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/readline-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/readline-complete";
sha256 = "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277";
name = "readline-complete";
};
@@ -50038,7 +50288,7 @@
sha256 = "1kghhps8mqys5l59qwzv3fgy1fvb15cnyaxmk29v818a6khjc5l2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/real-auto-save";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/real-auto-save";
sha256 = "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8";
name = "real-auto-save";
};
@@ -50059,7 +50309,7 @@
sha256 = "0qzwg3g8cqms1xx1yw8h7xck8ym8gb6avnnqx737r078yaa9l8hj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/realgud";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/realgud";
sha256 = "0qmvd35ng1aqclwj3pskn58c0fi98kvx9666wp3smgj3n88vgy15";
name = "realgud";
};
@@ -50080,7 +50330,7 @@
sha256 = "01wa8jwwlx5qmn5w83r3ak74hjp89zyhsx13c4ijqfns7d92xjd0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/realgud-byebug";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/realgud-byebug";
sha256 = "1m4pqnvnnfzq7b9bv5fkz70pifklddwqrwbwnrfyiawx9vdgrpz9";
name = "realgud-byebug";
};
@@ -50101,7 +50351,7 @@
sha256 = "0jxi5a6mlgwjj14gfajs951180m8r8m4vqx09xz1yyc9qq8ywfk9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/realgud-old-debuggers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/realgud-old-debuggers";
sha256 = "0iwi1byfwcpviaizdw9wzdcjlbk35ql4wfzj0ynh331g0hmibhs9";
name = "realgud-old-debuggers";
};
@@ -50122,7 +50372,7 @@
sha256 = "1dgxlmdzp1m6xr94nkvh6whvg23yq2d3v6k95vacx0khfbc16w17";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/realgud-pry";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/realgud-pry";
sha256 = "1p5ijig5rczndcykllq0vy6w4askwl0yd8b5fqg7yl5yx45r8xgs";
name = "realgud-pry";
};
@@ -50143,7 +50393,7 @@
sha256 = "1ip22z48vj6a6xh54s26ss10pxhqrdm5k9h28i1vgv5x75kqgxii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/realgud-rdb2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/realgud-rdb2";
sha256 = "0wqvgb3h2b0ys76sq2z462cjv0fajqc41f7wqvf53wfcs2zw4l9y";
name = "realgud-rdb2";
};
@@ -50164,7 +50414,7 @@
sha256 = "1xh9nxqfg9abcl41ni69rnwjfgyfr0pbl55dzyxsbh6sb36r3h8z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rebox2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rebox2";
sha256 = "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw";
name = "rebox2";
};
@@ -50182,7 +50432,7 @@
sha256 = "15kwkphrlxq6nbmqm95sxv4rykl1d35sjm59ncy07ncqm706h33l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/recentf-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/recentf-ext";
sha256 = "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq";
name = "recentf-ext";
};
@@ -50203,7 +50453,7 @@
sha256 = "0wk28blnfks987iby0p3qpd4nxnz6sqn4fx8g59gyddjhav51lri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/recompile-on-save";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/recompile-on-save";
sha256 = "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn";
name = "recompile-on-save";
};
@@ -50224,7 +50474,7 @@
sha256 = "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/recover-buffers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/recover-buffers";
sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b";
name = "recover-buffers";
};
@@ -50245,7 +50495,7 @@
sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rect+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rect+";
sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m";
name = "rect-plus";
};
@@ -50266,7 +50516,7 @@
sha256 = "0i336qakdkvxgyhjfq6b957xqlll156i1a8g1f5xap46v35d6gh3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rectangle-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rectangle-utils";
sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7";
name = "rectangle-utils";
};
@@ -50287,7 +50537,7 @@
sha256 = "1mj7lyadzn3bwig3f9zariq5z4fg6liqnjvfd34yx88xc52nwf33";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/recursive-narrow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/recursive-narrow";
sha256 = "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f";
name = "recursive-narrow";
};
@@ -50308,7 +50558,7 @@
sha256 = "1rjpf23a8rggjmmxvm1997d3xz03kz84xams486b9ky0n2v02d57";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/redis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redis";
sha256 = "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a";
name = "redis";
};
@@ -50326,7 +50576,7 @@
sha256 = "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/redo+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redo+";
sha256 = "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2";
name = "redo-plus";
};
@@ -50347,7 +50597,7 @@
sha256 = "1j9zvkfxccwzr8adxikw450xv0kc2a4j8rskbfqlmsylrpniszqm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/redpen-paragraph";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redpen-paragraph";
sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca";
name = "redpen-paragraph";
};
@@ -50367,7 +50617,7 @@
sha256 = "14p39gl4bvicqxf6rjzsyixv8ac6ib2vk680zbi7l55a1kdwaism";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/redshank";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redshank";
sha256 = "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b";
name = "redshank";
};
@@ -50388,7 +50638,7 @@
sha256 = "1c9ngm95b8rqg11m5w69031d8lgyvh9xpnr4h5r6yyg7836hdk2v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/redtick";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redtick";
sha256 = "1a9rviz0hg6vlh2jc04g6vslyf9n89xglcz9cb79vf10hhr6igrb";
name = "redtick";
};
@@ -50409,7 +50659,7 @@
sha256 = "08kzi2jcfqnlanqzvbk5gq1if7k8qc9gmz5bmvd2mvmx6z436398";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/refheap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/refheap";
sha256 = "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk";
name = "refheap";
};
@@ -50430,7 +50680,7 @@
sha256 = "1d34jd7is979vfgdy56zkd1m15ng3waiabfpak6dv6ak3cdh5fgx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/regex-dsl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/regex-dsl";
sha256 = "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr";
name = "regex-dsl";
};
@@ -50451,7 +50701,7 @@
sha256 = "1wr12j16hckvc8bxxgxw280frl12h23cp44sxg28lczl16d9693l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/regex-tool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/regex-tool";
sha256 = "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v";
name = "regex-tool";
};
@@ -50472,7 +50722,7 @@
sha256 = "02kfi3c6ydnr7xw611ck66kfjyl5w86dr9vfjv3wjl6ad9jya4zy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/region-bindings-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/region-bindings-mode";
sha256 = "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69";
name = "region-bindings-mode";
};
@@ -50493,7 +50743,7 @@
sha256 = "0gsh0x1rqxvzrszdyna9d8b8w22mqnd9yqcwzay2prc6rpl26g1f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/region-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/region-state";
sha256 = "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x";
name = "region-state";
};
@@ -50514,7 +50764,7 @@
sha256 = "01k3v4yiilz1k6drv7b2x6zbjx6dlz7cch8rq63mwc7v8kvdnqmi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/register-channel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/register-channel";
sha256 = "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr";
name = "register-channel";
};
@@ -50535,7 +50785,7 @@
sha256 = "0100maanb1v0hl4pj8ykzlqpr3cvs6ldak5japndm5yngzp6m8ks";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/relative-buffers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/relative-buffers";
sha256 = "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i";
name = "relative-buffers";
};
@@ -50556,7 +50806,7 @@
sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/relative-line-numbers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/relative-line-numbers";
sha256 = "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3";
name = "relative-line-numbers";
};
@@ -50577,7 +50827,7 @@
sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/relax";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/relax";
sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk";
name = "relax";
};
@@ -50598,7 +50848,7 @@
sha256 = "0w40cx58c0hmc0yzs8maq1389hwha0qwfbz76pc6kpcx14v1gkhh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/remark-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/remark-mode";
sha256 = "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0";
name = "remark-mode";
};
@@ -50619,7 +50869,7 @@
sha256 = "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/repeatable-motion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/repeatable-motion";
sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw";
name = "repeatable-motion";
};
@@ -50640,7 +50890,7 @@
sha256 = "12wylmyz54n1f3kaw9clhvs66dg43xvcvll4pl5ii0ibfv6pls1b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/repl-toggle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/repl-toggle";
sha256 = "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb";
name = "repl-toggle";
};
@@ -50661,7 +50911,7 @@
sha256 = "0w9ry16crcgc6aiq0xwzf7b301kkw6i44jc0dhfj621bhgmf30aj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/replace-from-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/replace-from-region";
sha256 = "1p77sajghqkjd7k83nma4qpz682la3zg716jdsnpcwcw0qk9ybcb";
name = "replace-from-region";
};
@@ -50682,7 +50932,7 @@
sha256 = "169p85rmgashm0g26apkxynmypqk9ndh76kvh572db5kqb8ix0c6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/replace-pairs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/replace-pairs";
sha256 = "0l9674rba25wh6fskvfwkhv99lwlszb177hsfzx39s6b4hshvlsb";
name = "replace-pairs";
};
@@ -50700,7 +50950,7 @@
sha256 = "1a59nqrs62xzdpi7as00byf3jamr1zsz8jmf0w4mqag4bp79cd40";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/replace+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/replace+";
sha256 = "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn";
name = "replace-plus";
};
@@ -50713,15 +50963,15 @@
replace-symbol = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "replace-symbol";
- version = "20151030.1957";
+ version = "20160517.2012";
src = fetchFromGitHub {
owner = "bmastenbrook";
repo = "replace-symbol-el";
- rev = "6af93ad5a23790c90595c92bf2dcb69cd6d5f820";
- sha256 = "0ks884jhxqkr8j38r9m4s56krm2gpkm0v5d51zzivcfhs30s6nff";
+ rev = "baf949e528aee1881f455f9c84e67718bedcb3f6";
+ sha256 = "178y1cmpdb2r72igx8j4l7pyhs1idw56j6hg5h8r9a2p99lkgjjc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/replace-symbol";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/replace-symbol";
sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng";
name = "replace-symbol";
};
@@ -50742,7 +50992,7 @@
sha256 = "0hs80g3npgb6qfcaivdfkpsc9mss1kdmyp5j7s922qcy2k4yxmgl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/repo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/repo";
sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb";
name = "repo";
};
@@ -50763,7 +51013,7 @@
sha256 = "0905525nw78bz7qs1scmqss5dffp2aabvmwvcvgl6b2bz92w9nb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/req-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/req-package";
sha256 = "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf";
name = "req-package";
};
@@ -50784,7 +51034,7 @@
sha256 = "1knhm4hicijviz759834zmafcw2l2b04g4dddqg7j38knn8pzrx3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/request";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/request";
sha256 = "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji";
name = "request";
};
@@ -50805,7 +51055,7 @@
sha256 = "1knhm4hicijviz759834zmafcw2l2b04g4dddqg7j38knn8pzrx3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/request-deferred";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/request-deferred";
sha256 = "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n";
name = "request-deferred";
};
@@ -50826,7 +51076,7 @@
sha256 = "1bfj2zjn3x41jal6c136wnwkgmag27bmrwbfwdylafc7qqk6dflv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/requirejs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/requirejs";
sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k";
name = "requirejs";
};
@@ -50847,7 +51097,7 @@
sha256 = "02wva5q8mvc0a5kms2wm1gyaag2x3zd6fkkpl4218nrbb0mbficv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/requirejs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/requirejs-mode";
sha256 = "00bl5dz56f77hl9wy3xvjhq81641mv9jbskcd8mcgcz9ycj9g5k2";
name = "requirejs-mode";
};
@@ -50868,7 +51118,7 @@
sha256 = "1ps9l6q6hgzzaywkig0gjjdlsir9avxghynzx9a3q6h0fpdkpgrj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/resize-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/resize-window";
sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l";
name = "resize-window";
};
@@ -50889,7 +51139,7 @@
sha256 = "0gbm208hmmmpjyj0x3z0cszphawkgvjqzi5idbdca3gikyiqw80n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/restart-emacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/restart-emacs";
sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6";
name = "restart-emacs";
};
@@ -50910,7 +51160,7 @@
sha256 = "1ffav4i21vwvf2szz2s8g1y560fcw2dibcvf8ax1fd2asrj3zv7l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/restclient";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/restclient";
sha256 = "0wzp8i89a4hwm7qyxvdk10frknbqcni0isnp8k63nhq7c30s7md4";
name = "restclient";
};
@@ -50931,7 +51181,7 @@
sha256 = "1ffav4i21vwvf2szz2s8g1y560fcw2dibcvf8ax1fd2asrj3zv7l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/restclient-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/restclient-helm";
sha256 = "0cpf02ippfr9w6kiw3kng8smabv256ff388322hhn8a8icyjl24j";
name = "restclient-helm";
};
@@ -50941,6 +51191,27 @@
license = lib.licenses.free;
};
}) {};
+ restclient-test = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, restclient }:
+ melpaBuild {
+ pname = "restclient-test";
+ version = "20160517.1340";
+ src = fetchFromGitHub {
+ owner = "simenheg";
+ repo = "restclient-test.el";
+ rev = "9bc10bb9ae6e9341dec39f5cd8b78da0bd8db2c2";
+ sha256 = "1z4ackggrw428f9f7bd02by4fw34bwndv2i4v7cj80c533mfwy9f";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/restclient-test";
+ sha256 = "0g26z5p9fq7fm6bgrwaszya5xmhsgzcn1p7zqr83w74fbw6bcl39";
+ name = "restclient-test";
+ };
+ packageRequires = [ emacs restclient ];
+ meta = {
+ homepage = "https://melpa.org/#/restclient-test";
+ license = lib.licenses.free;
+ };
+ }) {};
reveal-in-osx-finder = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "reveal-in-osx-finder";
@@ -50952,7 +51223,7 @@
sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/reveal-in-osx-finder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/reveal-in-osx-finder";
sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc";
name = "reveal-in-osx-finder";
};
@@ -50970,7 +51241,7 @@
sha256 = "1h27kg2k8f6smbqxandmvg859qk66jydbbbiwwjmk7316k66w8qa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/reveal-next";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/reveal-next";
sha256 = "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2";
name = "reveal-next";
};
@@ -50991,7 +51262,7 @@
sha256 = "002ywhjms8ybk7cma2p2i11z3fz6kb0w8mlafysm911rvcq2hg5f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/reverse-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/reverse-theme";
sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776";
name = "reverse-theme";
};
@@ -51012,7 +51283,7 @@
sha256 = "0lzsy68k7sm9d3r8lzhzx9alc1f0cgfclry40pa4x0ilkcr7ysch";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/review-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/review-mode";
sha256 = "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n";
name = "review-mode";
};
@@ -51033,7 +51304,7 @@
sha256 = "037sac5fvz6l2zgzlf8ykk4jf9zhj7ybzyz013jqzjj47a6sn1r1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/revive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/revive";
sha256 = "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5";
name = "revive";
};
@@ -51054,7 +51325,7 @@
sha256 = "0zmby92mjszh77r5wh8sccqv3a5bb9sfhac8g55nasavw8hfplvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/reykjavik-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/reykjavik-theme";
sha256 = "1f0q2gfzkmpd374jryrd1lgg8xj6rwdq181jhppj3rfjizgw4l35";
name = "reykjavik-theme";
};
@@ -51072,7 +51343,7 @@
sha256 = "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rfringe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rfringe";
sha256 = "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6";
name = "rfringe";
};
@@ -51093,7 +51364,7 @@
sha256 = "1qlpv5lzj4yfyjgdykhm6q9izg6g0z5pf5nmynj42vsx7v8bhy1x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rhtml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rhtml-mode";
sha256 = "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35";
name = "rhtml-mode";
};
@@ -51114,7 +51385,7 @@
sha256 = "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rich-minority";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rich-minority";
sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc";
name = "rich-minority";
};
@@ -51135,7 +51406,7 @@
sha256 = "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rigid-tabs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rigid-tabs";
sha256 = "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp";
name = "rigid-tabs";
};
@@ -51156,7 +51427,7 @@
sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rinari";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rinari";
sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0";
name = "rinari";
};
@@ -51177,7 +51448,7 @@
sha256 = "0imsc44mcy5abmfin28d13l8mjjvyx6hxcsk81r0i8h12mxlmfkp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rings";
sha256 = "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7";
name = "rings";
};
@@ -51198,7 +51469,7 @@
sha256 = "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rnc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rnc-mode";
sha256 = "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q";
name = "rnc-mode";
};
@@ -51211,15 +51482,15 @@
robe = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }:
melpaBuild {
pname = "robe";
- version = "20160427.852";
+ version = "20160518.559";
src = fetchFromGitHub {
owner = "dgutov";
repo = "robe";
- rev = "c76eef135388db868d23d3f5f8e7e49ec913518b";
- sha256 = "03hrccdrvj3nln66ajy8rh208bn88rj4pk8g4xfavv2jymayk5qz";
+ rev = "1d03485c37632f8fde0988b24de4f4b26bab07c0";
+ sha256 = "0fwxn6pplyh5frwwqk46zq38nj5m2sl1idk1va2jqwnj5r407g78";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/robe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/robe";
sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk";
name = "robe";
};
@@ -51240,7 +51511,7 @@
sha256 = "0dimmdz4aqcif4lp23nqxfg7kngzym2yivn6h3p7bn1821vgzq9s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/robots-txt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/robots-txt-mode";
sha256 = "1q3fqaf9nysy9bhx4h9idgshxr65hfwnx05vlwazx7jd6bq6kxfh";
name = "robots-txt-mode";
};
@@ -51261,7 +51532,7 @@
sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/roguel-ike";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/roguel-ike";
sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8";
name = "roguel-ike";
};
@@ -51282,7 +51553,7 @@
sha256 = "036wip40y055579kf9isdnp3b4cwc7ylwmqsbj88xdpf1hxnx270";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rope-read-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rope-read-mode";
sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw";
name = "rope-read-mode";
};
@@ -51303,7 +51574,7 @@
sha256 = "13xrjd5p2zq0r8ifbqbrgjfm0jj09nyxcbhk262jr6f171rf0y2m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rotate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rotate";
sha256 = "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx";
name = "rotate";
};
@@ -51324,7 +51595,7 @@
sha256 = "04jbnm9is2cis75h40znqzjvyjq27ncr2vfank6zglzi4fhxsl0r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/roy-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/roy-mode";
sha256 = "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g";
name = "roy-mode";
};
@@ -51345,7 +51616,7 @@
sha256 = "01rb6qfsk4f33nkfdzvvjkw96ip1dv0py8i30l8ix9cqbk07svsv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rpm-spec-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rpm-spec-mode";
sha256 = "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd";
name = "rpm-spec-mode";
};
@@ -51366,7 +51637,7 @@
sha256 = "0i5qwbhhdnspgs2y67kkgbk9zq6fx2j509q92mgfzbvjnf54h1r8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rpn-calc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rpn-calc";
sha256 = "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs";
name = "rpn-calc";
};
@@ -51387,7 +51658,7 @@
sha256 = "0xkr1qn8fm3kv5c11janq5acp1q02abvxc463zijvm2qk735yl4d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rsense";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rsense";
sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5";
name = "rsense";
};
@@ -51408,7 +51679,7 @@
sha256 = "1mlcr4br831cbxd90z61kynvir704mafv4avas44bzk8m1m188kw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rspec-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rspec-mode";
sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx";
name = "rspec-mode";
};
@@ -51421,15 +51692,15 @@
rtags = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rtags";
- version = "20160516.1615";
+ version = "20160522.1309";
src = fetchFromGitHub {
owner = "Andersbakken";
repo = "rtags";
- rev = "f0abe68a0e0d49c41a75a876c051dc1509e6aeeb";
- sha256 = "0y74qcvs9b6l3qpkw4ra6zga78pv9adfzb0cv0prwgy6bfj2v9yc";
+ rev = "35b21aec65cdab6858efd6aedbbea9b75307a6d1";
+ sha256 = "0cjgp73c17yfnmyi1f1xm43nifd6r5giszdw159ipp1bcsk2zxaw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rtags";
sha256 = "08clwydx2b9cl4wv61b0p564jpvq7gzkrlcdkchpi4yz6djbp0lw";
name = "rtags";
};
@@ -51450,7 +51721,7 @@
sha256 = "1gqvp0h5zy2023gdzf7pw28rl27lzml87vpbi1zaw4bmj82zgh3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rtm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rtm";
sha256 = "1ni2610svxziq1gq6s6igkhqyafvgn02gnw7jbm3ir7ks4w2imzf";
name = "rtm";
};
@@ -51471,7 +51742,7 @@
sha256 = "1y5z0kr4qwd4fyvhk0rhpbbp6dw2jpzrawx62jid5539wrdjcabk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rubocop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rubocop";
sha256 = "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q";
name = "rubocop";
};
@@ -51487,11 +51758,11 @@
version = "20091002.645";
src = fetchsvn {
url = "http://svn.ruby-lang.org/repos/ruby/trunk/misc/";
- rev = "55020";
+ rev = "55119";
sha256 = "07j1lclp6jqhyzfw8h4a21kx39nz946h6lgmn959rvckhkijr514";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-additional";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-additional";
sha256 = "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w";
name = "ruby-additional";
};
@@ -51509,7 +51780,7 @@
sha256 = "0c4vy9xsw44g6q9nc8aaav5avgp34h24mvgcnww468afiimivdcq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-block";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-block";
sha256 = "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm";
name = "ruby-block";
};
@@ -51530,7 +51801,7 @@
sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-compilation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-compilation";
sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc";
name = "ruby-compilation";
};
@@ -51551,7 +51822,7 @@
sha256 = "1cy5zmdfwsjw8jla8mxjm1cmvrv727fwq1kqhjr5nxj0flwsm4x1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-dev";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-dev";
sha256 = "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh";
name = "ruby-dev";
};
@@ -51567,11 +51838,11 @@
version = "20150424.1052";
src = fetchsvn {
url = "http://svn.ruby-lang.org/repos/ruby/trunk/misc/";
- rev = "55020";
+ rev = "55119";
sha256 = "07j1lclp6jqhyzfw8h4a21kx39nz946h6lgmn959rvckhkijr514";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-electric";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-electric";
sha256 = "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056";
name = "ruby-electric";
};
@@ -51592,7 +51863,7 @@
sha256 = "1x4nvrq5nk50c1l3b5wcr4g1n5nmwafcz1zzc12qzsl5sya7si55";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-end";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-end";
sha256 = "1cnmdlkhm8xsifbjs6ymvi92gdnxiaghb04h10qg41phj6v7m9mg";
name = "ruby-end";
};
@@ -51613,7 +51884,7 @@
sha256 = "15b2rs6m4d511qqkc2gc8k15mbqzrgv6s3hpypajl8nvqa79xnyd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-factory";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-factory";
sha256 = "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37";
name = "ruby-factory";
};
@@ -51634,7 +51905,7 @@
sha256 = "080hmrh7pgpaj33w1rkhcqb1yp70w4cap0rq9hsxaaajj0sn47z3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-guard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-guard";
sha256 = "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr";
name = "ruby-guard";
};
@@ -51655,7 +51926,7 @@
sha256 = "0knl8zrd4pplnzk5z19cf9rqdfr3ymzfssrwp6jhndjzjdwvc2bv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-hash-syntax";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-hash-syntax";
sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5";
name = "ruby-hash-syntax";
};
@@ -51676,7 +51947,7 @@
sha256 = "1r2f5jxi6wnkmr1ssvqgshi97gjvxvf3qqc0njg1s33cy39wpqq5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-interpolation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-interpolation";
sha256 = "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp";
name = "ruby-interpolation";
};
@@ -51697,7 +51968,7 @@
sha256 = "13008ih4hwa80bn2dbgj551knbvgpriz5sb241rkf7mifmlfzgsi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-refactor";
sha256 = "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby";
name = "ruby-refactor";
};
@@ -51718,7 +51989,7 @@
sha256 = "0ajqqkf43k7kgsnzi9m8il1l48n2slqd7csya8varnlm8g4p79gy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-test-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-test-mode";
sha256 = "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w";
name = "ruby-test-mode";
};
@@ -51739,7 +52010,7 @@
sha256 = "0jd9acycpbdd90hallrl0k5055rypp502qv4c6i286p7f9is4kvq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-tools";
sha256 = "0zpk55rkrqyangyyljxzf0n1icgqnpdzycwack5rji556h5grvjy";
name = "ruby-tools";
};
@@ -51760,7 +52031,7 @@
sha256 = "17dzr5w12ai2q15yv81gchk360yjs71w74vsgs2fyy2yznvclpq9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/runner";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/runner";
sha256 = "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx";
name = "runner";
};
@@ -51781,7 +52052,7 @@
sha256 = "18w6gkpxp0g7rzvnrk8vvr267y768dfik447ssq8jpz3jlr5jnq6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/runtests";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/runtests";
sha256 = "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb";
name = "runtests";
};
@@ -51794,15 +52065,15 @@
rust-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rust-mode";
- version = "20160506.30";
+ version = "20160517.646";
src = fetchFromGitHub {
owner = "rust-lang";
repo = "rust-mode";
- rev = "4fce17848d7df44ea5a722577dbf69cccf39878b";
- sha256 = "03xswbzdn0v1b9ai3121p27wrahazhd555zvnphkxc60lcs70j1s";
+ rev = "0cf2bc30ec29ad215242b617748c9fa1aa91c407";
+ sha256 = "1yamcsqshxzniaq8hn6a2hmfp9x84g5k6n04fgpfs3wxmrh8cqx8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rust-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rust-mode";
sha256 = "1i1mw1v99nyikscg2s1m216b0h8svbzmf5kjvjgk9zjiba4cbqzc";
name = "rust-mode";
};
@@ -51823,7 +52094,7 @@
sha256 = "0c22cxa4f6plz67vxmp1zgaylkfrky313cj0zybn9akrbcxpbc34";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rustfmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rustfmt";
sha256 = "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl";
name = "rustfmt";
};
@@ -51844,7 +52115,7 @@
sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rvm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rvm";
sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8";
name = "rvm";
};
@@ -51865,7 +52136,7 @@
sha256 = "1bq402bhxqc9ph2da2nmd80s28dzd406gbawxr3kgrv0sll167bx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/s";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/s";
sha256 = "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64";
name = "s";
};
@@ -51886,7 +52157,7 @@
sha256 = "06ng960fj2ivnwb0hrn0qic5x8hb0sswjzph01zmwhbfnwykhr85";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/s-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/s-buffer";
sha256 = "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m";
name = "s-buffer";
};
@@ -51907,7 +52178,7 @@
sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sackspace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sackspace";
sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z";
name = "sackspace";
};
@@ -51920,15 +52191,15 @@
sage-shell-mode = callPackage ({ cl-lib ? null, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sage-shell-mode";
- version = "20160514.143";
+ version = "20160517.137";
src = fetchFromGitHub {
owner = "stakemori";
repo = "sage-shell-mode";
- rev = "e255aba577db22b90c81884e8330408daafd8038";
- sha256 = "19n24axmbw17g9zqj8rz1q98qjagn45b762y35brfhrf8yf80b2m";
+ rev = "2e49bb8e21737f5d1dc59cf79fd72bfc6c68267a";
+ sha256 = "0hyw05kgj45hrpzfgwpq5zal12lkm6w0v8jj27pw7n29ar3yppj3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sage-shell-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sage-shell-mode";
sha256 = "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx";
name = "sage-shell-mode";
};
@@ -51949,7 +52220,7 @@
sha256 = "1hl227bmjch0vq7n47mwydkyxnd6wkbz9klk3c4398qmc2qxm5kn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/salt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/salt-mode";
sha256 = "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp";
name = "salt-mode";
};
@@ -51970,7 +52241,7 @@
sha256 = "1r6b6n2bzjznjfimgcm0vnmln4sbyasm4icmdgbpzahdmbkfzq3w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sane-term";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sane-term";
sha256 = "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8";
name = "sane-term";
};
@@ -51991,7 +52262,7 @@
sha256 = "1zvsv2j3hqrj9vlm4mspfnm9nwah0lhizamyx43xykd7xk0z8hkw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sass-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sass-mode";
sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800";
name = "sass-mode";
};
@@ -52012,7 +52283,7 @@
sha256 = "169mbr83zlawjnn2p9yzx7rrg33bb78gb1i7lklagn73ca2pr0b5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sauron";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sauron";
sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb";
name = "sauron";
};
@@ -52033,7 +52304,7 @@
sha256 = "0rxcg60lxaabdx9gjj17sfxnr09694viphlhhk355dcc4v5ngbdm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/save-load-path";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/save-load-path";
sha256 = "1cl9kkv996m2irm9i5n7f020zqzvrsv9dyscc16ca9jsn16msww2";
name = "save-load-path";
};
@@ -52054,7 +52325,7 @@
sha256 = "00jvl1npc889f3isi7cbdzwvf9x4rq67zgl7br8npxf8jlc2mwhm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/save-visited-files";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/save-visited-files";
sha256 = "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd";
name = "save-visited-files";
};
@@ -52075,7 +52346,7 @@
sha256 = "0h8bl28p5xrs9daapcjkslm066a4hqlb764i5nz1db0lwrvr0csm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/savekill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/savekill";
sha256 = "14hfqia7d2v1dn1wdwsphrrkq9hc57721irms9s9vinign0pqx7h";
name = "savekill";
};
@@ -52096,7 +52367,7 @@
sha256 = "1gkzgcnh5ib4j5206mx8gbwj5ykay19vqlfg9070m2r09d1a55qf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/say-what-im-doing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/say-what-im-doing";
sha256 = "1hgh842f7gs2sxy7s6zq57nsqy4jjlnjcga6hwzcx0kw3albgz7x";
name = "say-what-im-doing";
};
@@ -52117,7 +52388,7 @@
sha256 = "1lvf7y1n63p8jvnp6ppwmxq2s6h9sk45319576f3s28ixsfa6cp2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sbt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sbt-mode";
sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8";
name = "sbt-mode";
};
@@ -52138,7 +52409,7 @@
sha256 = "0d9phl6vk2iqs99mmsngr5bmr1hrm6292vpjf29s2f2rdxg74sw0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scad-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scad-mode";
sha256 = "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k";
name = "scad-mode";
};
@@ -52159,7 +52430,7 @@
sha256 = "13x00dls59zshz69260pnqmx6ydrjg8p2jdjn1rzgf5dsmwfy3sc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scad-preview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scad-preview";
sha256 = "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z";
name = "scad-preview";
};
@@ -52172,15 +52443,15 @@
scala-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scala-mode";
- version = "20160515.715";
+ version = "20160519.1031";
src = fetchFromGitHub {
owner = "ensime";
repo = "emacs-scala-mode";
- rev = "37e7537e9c9a1a1bdfd4cd1058491559a6ed0c69";
- sha256 = "0x6k0lg529j02hyw390mahpvm580j3y7hyp8yw9h2qnrkiinrpka";
+ rev = "c90bbde5ff29c23b1545c7b29edba453fc33f393";
+ sha256 = "1ayqdmnp38wvhi3a8r8wivn4z8v6irbz0kwqvgsnpq6m2s3jsbz9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scala-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scala-mode";
sha256 = "12x377iw085fbkjb034dmcsbi7hma17zkkmbgrhkvfkz8pbgaic8";
name = "scala-mode";
};
@@ -52190,48 +52461,6 @@
license = lib.licenses.free;
};
}) {};
- scala-mode2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "scala-mode2";
- version = "20160514.926";
- src = fetchFromGitHub {
- owner = "ensime";
- repo = "emacs-scala-mode";
- rev = "ee375b9357a71d77763e219dac15850ed60530b3";
- sha256 = "1ss6gndxgxciyacbl9nw2gb0pwmgv78nxdjl89wrdig27d1jddv8";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scala-mode2";
- sha256 = "169h6x51s4xzxamyhsqnd3h960gjfgdigc2pp1220dlpcp9hlzg1";
- name = "scala-mode2";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/scala-mode2";
- license = lib.licenses.free;
- };
- }) {};
- scala-outline-popup = callPackage ({ dash, fetchFromGitHub, fetchurl, flx-ido, lib, melpaBuild, popup, scala-mode2 }:
- melpaBuild {
- pname = "scala-outline-popup";
- version = "20150702.1237";
- src = fetchFromGitHub {
- owner = "ancane";
- repo = "scala-outline-popup";
- rev = "47e92a1a7738738164d7657ee324bc382a383985";
- sha256 = "1wf3d5spvi9kr4q2w7f18g1bm10fh2zbh4sdbqkf78afv6sbqzrz";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scala-outline-popup";
- sha256 = "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7";
- name = "scala-outline-popup";
- };
- packageRequires = [ dash flx-ido popup scala-mode2 ];
- meta = {
- homepage = "https://melpa.org/#/scala-outline-popup";
- license = lib.licenses.free;
- };
- }) {};
scf-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scf-mode";
@@ -52243,7 +52472,7 @@
sha256 = "0m7hanpc2skmsz783m0212xd10y31gkj5n6w8gx9s989l1y4i1b8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scf-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scf-mode";
sha256 = "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0";
name = "scf-mode";
};
@@ -52264,7 +52493,7 @@
sha256 = "0kd5g76vpxip5ijddaqvp3w3lxr9hy9vaiphrcvvlqjr3xwignnc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scheme-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scheme-complete";
sha256 = "1mp9gssd2fx3ra2bjd7w311hwmflhybr5x574qb12603gjkgrp1h";
name = "scheme-complete";
};
@@ -52285,7 +52514,7 @@
sha256 = "09cvrphrnbj8avnlqqv6scjz17cn6zm6mzghjn3vxfr4hql66rir";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scheme-here";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scheme-here";
sha256 = "04lmkf3zc396anlp9s9irdkqavsc0lzlpzprswd4r2kp4xp7kcks";
name = "scheme-here";
};
@@ -52306,7 +52535,7 @@
sha256 = "0ark720g0nrdqri5bjdpss6kn6k3hz3w3zdvy334wws05mkb17y4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scion";
sha256 = "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d";
name = "scion";
};
@@ -52327,7 +52556,7 @@
sha256 = "164dn5615bxvya4n58lly9r739va1xzm00wyfg4shcwgnwm3byqb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sclang-extensions";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sclang-extensions";
sha256 = "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn";
name = "sclang-extensions";
};
@@ -52348,7 +52577,7 @@
sha256 = "0vbcghgapwdf3jgjnjdla17dhf5mkmwapz4a8fmlr7sw1wqvj857";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sclang-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sclang-snippets";
sha256 = "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2";
name = "sclang-snippets";
};
@@ -52369,7 +52598,7 @@
sha256 = "1jgg116rhhgs5qrngrmqi8ir7yj1h470f57dc7fyijw0ly5mp6ii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scpaste";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scpaste";
sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1";
name = "scpaste";
};
@@ -52390,7 +52619,7 @@
sha256 = "0ykhr24vpx3byn2n346nqqvmwcg34hk22s3lpdx7lpnkrn5z41aq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratch";
sha256 = "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d";
name = "scratch";
};
@@ -52411,7 +52640,7 @@
sha256 = "0ng0by647r49mia7vmjqc97gwlwgs8kmaz0lw2y54jdz8m0bbngp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scratch-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratch-ext";
sha256 = "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y";
name = "scratch-ext";
};
@@ -52432,7 +52661,7 @@
sha256 = "030mcq0cmamizvra8jh2x76f71g5apiavwb10c28j62rl0r5bisk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scratch-log";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratch-log";
sha256 = "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69";
name = "scratch-log";
};
@@ -52445,15 +52674,15 @@
scratch-message = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scratch-message";
- version = "20160323.1646";
+ version = "20160520.1754";
src = fetchFromGitHub {
owner = "thisirs";
repo = "scratch-message";
- rev = "fc78fe1197e68dda4e86e1806feed09f78abbd92";
- sha256 = "1qic0saz5pflgaf48sqsnw18y9amfkkflf8c534hdd053w77h8qh";
+ rev = "d4d8fe49c3a4cad208fe8d40e02c05717112dce6";
+ sha256 = "0k2ay6fss81c9sqzj8hjw79qzj07hpccv0afbm5crmzv9hcfq8j5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scratch-message";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratch-message";
sha256 = "1dl9d4gvicwnb662ir9azywjmmm7xv4d0sz42z7mmwy8hl9hi91b";
name = "scratch-message";
};
@@ -52474,7 +52703,7 @@
sha256 = "00b4r8bqlxc29k18vig0164d5c9fp5bp5q26d28lwr4f0s4a71d2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scratch-palette";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratch-palette";
sha256 = "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs";
name = "scratch-palette";
};
@@ -52495,7 +52724,7 @@
sha256 = "1yvmfiv1s83r0jcxzbxyrx3b263d73lbap6agansmrhkxp914xr1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scratch-pop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratch-pop";
sha256 = "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1";
name = "scratch-pop";
};
@@ -52516,7 +52745,7 @@
sha256 = "10hmy0p4pkrzvvyisk4rjc6hqqyk2sir1rszqgmkhrdywl010vlc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scratches";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratches";
sha256 = "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy";
name = "scratches";
};
@@ -52534,7 +52763,7 @@
sha256 = "0q7yxaaa0fic4d2xwr0qk28clkinwz4xvw3wf8dv1g322s0xx2cw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/screenshot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/screenshot";
sha256 = "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs";
name = "screenshot";
};
@@ -52555,7 +52784,7 @@
sha256 = "113pi7nsaksaacy74ngbvrvr6qcl7199xy662nj58bz5307yi9q0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scss-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scss-mode";
sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv";
name = "scss-mode";
};
@@ -52576,7 +52805,7 @@
sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/search-web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/search-web";
sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36";
name = "search-web";
};
@@ -52597,7 +52826,7 @@
sha256 = "0zs08vxmjb3y4dnfq6djnrhmkgyhhwd5zylrjisrd4y7f089fyh4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/searchq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/searchq";
sha256 = "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr";
name = "searchq";
};
@@ -52618,7 +52847,7 @@
sha256 = "15cjhwjiwmrfzmr74hbw5s92si2qdb8i97nmkbsgkj3444rxg239";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/seclusion-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/seclusion-mode";
sha256 = "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m";
name = "seclusion-mode";
};
@@ -52636,7 +52865,7 @@
sha256 = "143vg6z3aa0znmsx88r675vv5g2c13giz25dcbzazsp4wcr46wvq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/second-sel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/second-sel";
sha256 = "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr";
name = "second-sel";
};
@@ -52657,7 +52886,7 @@
sha256 = "19p3zp4cj7ik2gwzc5k6klqc4b8jc2hvm80yhczc5b7k223gp2bv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/seeing-is-believing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/seeing-is-believing";
sha256 = "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb";
name = "seeing-is-believing";
};
@@ -52678,7 +52907,7 @@
sha256 = "0qd462qbqdx53xh3ddf76chiljxf6s43r28v2ix85gsig7nm5pgr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/seethru";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/seethru";
sha256 = "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v";
name = "seethru";
};
@@ -52699,7 +52928,7 @@
sha256 = "1as3llcs7jgcw9pafz4mbfml1cqd1fw8yl64bb4467nmhq2p18p7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sekka";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sekka";
sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp";
name = "sekka";
};
@@ -52720,7 +52949,7 @@
sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/select-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/select-themes";
sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84";
name = "select-themes";
};
@@ -52741,7 +52970,7 @@
sha256 = "0qc2lyzmvcgld6vnlnp6a01cw0268c4hs2y7lwzaah2c8cps6n6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/selected";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/selected";
sha256 = "0nvrfymb7wd5lcyfpxzh0rc0l3qcwrvh0l32ag7mgs7jzgvnphnx";
name = "selected";
};
@@ -52762,7 +52991,7 @@
sha256 = "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/selectric-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/selectric-mode";
sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4";
name = "selectric-mode";
};
@@ -52783,7 +53012,7 @@
sha256 = "0x4n2d7jsadwknscnwj64s5320wbj4pc0zrcm2c8xfwwgr9wl47k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/semi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/semi";
sha256 = "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25";
name = "semi";
};
@@ -52804,7 +53033,7 @@
sha256 = "13qqprxz87cv3sjlq5hj0jp0qcfm3djfgasga8cc84ykrcc47p9f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sendto";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sendto";
sha256 = "00ifasqpmggr4bhdyymzr215840y0ayfnfp0mh7wj99mr6f3zfq0";
name = "sendto";
};
@@ -52825,7 +53054,7 @@
sha256 = "0g4jfcc5k26yh192bmmxnim9mqv993v2jjd9g9ssvnd42ihpx1n3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sensitive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sensitive";
sha256 = "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3";
name = "sensitive";
};
@@ -52844,7 +53073,7 @@
sha256 = "01qj57zpqpr4rxk9bsx828c7baac1xaa58cz22fncirdx00svn2k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sentence-highlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sentence-highlight";
sha256 = "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m";
name = "sentence-highlight";
};
@@ -52865,7 +53094,7 @@
sha256 = "0ikiv12ahndvk5w9pdayqlmafwj8d1vkcshfnqmgy6ykqbcdpqk6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sentence-navigation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sentence-navigation";
sha256 = "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m";
name = "sentence-navigation";
};
@@ -52886,7 +53115,7 @@
sha256 = "15vmd1qmj8a6a5mmvdcnbav6mi5rhrp39m85idzv02zm0x9x6lyc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/seoul256-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/seoul256-theme";
sha256 = "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp";
name = "seoul256-theme";
};
@@ -52907,7 +53136,7 @@
sha256 = "1np6ip28ksms6fig67scwvwj43zgblny50ccvz8aclbl0z8nxswl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sequences";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sequences";
sha256 = "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh";
name = "sequences";
};
@@ -52926,7 +53155,7 @@
sha256 = "0vg8rqzzi29swznhra2mnf45czr2vb77dpcxn3j0fi7gynx3wcwk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sequential-command";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sequential-command";
sha256 = "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1";
name = "sequential-command";
};
@@ -52947,7 +53176,7 @@
sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/servant";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/servant";
sha256 = "0h8xsg37cvc5r8vkclf7d3gbf6gh4k5pmbiyhwpkbrxwjyl1sl21";
name = "servant";
};
@@ -52968,7 +53197,7 @@
sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/serverspec";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/serverspec";
sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id";
name = "serverspec";
};
@@ -52989,7 +53218,7 @@
sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/session";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/session";
sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx";
name = "session";
};
@@ -53010,7 +53239,7 @@
sha256 = "18igxblmrbxwhd2d68cz1bpj4524djh2dw2rwhxlij76f9v805wn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/seti-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/seti-theme";
sha256 = "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z";
name = "seti-theme";
};
@@ -53031,7 +53260,7 @@
sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sexp-move";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sexp-move";
sha256 = "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd";
name = "sexp-move";
};
@@ -53048,11 +53277,11 @@
src = fetchFromGitHub {
owner = "wasamasa";
repo = "shackle";
- rev = "fc292bba6e14c1ff18854273d25cd9988db3126d";
- sha256 = "1g08l1nzqgzbz3q837ib7cfjlv803ms4drap4s3f23j91zvcn0wi";
+ rev = "730ccb2143e97ed69ae373edac34b460d45f9deb";
+ sha256 = "1xmxms9rhys2k7cl5v0zhqm23my5jv5f0s3541j044hn55rcpig5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shackle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shackle";
sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6";
name = "shackle";
};
@@ -53073,7 +53302,7 @@
sha256 = "0phivbhjdw76gzrx35rp0zybqfb0fdy2hjllf72qf1r0r5gxahl8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shadchen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shadchen";
sha256 = "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4";
name = "shadchen";
};
@@ -53094,7 +53323,7 @@
sha256 = "0l094nrrvan8v6j1xdgb51cbjvwicvxih29b7iyga13adb9dy9j4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shader-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shader-mode";
sha256 = "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g";
name = "shader-mode";
};
@@ -53115,7 +53344,7 @@
sha256 = "1y9bgpz96zgjw5fvq2ma7q6392i9j1rrj5axp085ccgn7w24mii7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shakespeare-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shakespeare-mode";
sha256 = "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd";
name = "shakespeare-mode";
};
@@ -53136,7 +53365,7 @@
sha256 = "15a8gs4lrqxn0jyfw16rc6vm7z1i10pzzlnp30x6nly9a7xra47x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shampoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shampoo";
sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61";
name = "shampoo";
};
@@ -53154,7 +53383,7 @@
sha256 = "0jr5sbmg4zrx2dfdrajh2didm6dxx9ri5ib9qnwhc1jlppinyi7l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shell-command";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-command";
sha256 = "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl";
name = "shell-command";
};
@@ -53175,7 +53404,7 @@
sha256 = "1w42j5cdddr0riz1xjq3wiz5i9f71i9jdzd1l92ir0mlj05wjyic";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shell-current-directory";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-current-directory";
sha256 = "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd";
name = "shell-current-directory";
};
@@ -53196,7 +53425,7 @@
sha256 = "0z04z07r7p5p05zhaka37s48y82hg2dbk0ynap4inph3frn4yyfl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shell-here";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-here";
sha256 = "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh";
name = "shell-here";
};
@@ -53214,7 +53443,7 @@
sha256 = "0biqjm0fpd7c7jilgkcwp6c32car05r5akimbcdii3clllavma7r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shell-history";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-history";
sha256 = "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7";
name = "shell-history";
};
@@ -53235,7 +53464,7 @@
sha256 = "1ddd32f3k1mqk4h88kn0m9c3xd9y6yszkzm4s23fd6d96daw4smc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shell-pop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-pop";
sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8";
name = "shell-pop";
};
@@ -53256,7 +53485,7 @@
sha256 = "16srngml5xmpaxb0wzhx91jil0r0dmn673bwai3lzxrkmjnl748l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shell-split-string";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-split-string";
sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m";
name = "shell-split-string";
};
@@ -53277,7 +53506,7 @@
sha256 = "1bcrxq43a45alv6x0wms4d4nykiqz2mzk04kwk5lmf5pw3dqm900";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shell-switcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-switcher";
sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx";
name = "shell-switcher";
};
@@ -53298,7 +53527,7 @@
sha256 = "0ssaccdacabpja9nqzhr8x8ggfwmlian7y4p0fa6gvr7qsvjpgr9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shell-toggle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-toggle";
sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446";
name = "shell-toggle";
};
@@ -53319,7 +53548,7 @@
sha256 = "1mc7y79h5p9cxqwsl40b1j5la5bm8b70n6fn4rx9wr4bi7rwph5i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shelldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shelldoc";
sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx";
name = "shelldoc";
};
@@ -53340,7 +53569,7 @@
sha256 = "0f45q8j9m0ic3l69i7qjhf0l19cprn56fxw61al4xd3wxv4pr9gy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shelltest-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shelltest-mode";
sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh";
name = "shelltest-mode";
};
@@ -53353,15 +53582,15 @@
shen-elisp = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shen-elisp";
- version = "20160515.1828";
+ version = "20160521.812";
src = fetchFromGitHub {
owner = "deech";
repo = "shen-elisp";
- rev = "82478da827101a986b128d1a3f6ffe6a206cc6b7";
- sha256 = "0jqlrx4s3yc76l9qs0wrjkxjy3765l1s2y6wwqhd4j4hizc7qc7g";
+ rev = "808782f6ec8a48af92a5fdf141636b3ed59dfb6a";
+ sha256 = "16dm3yisd62qxis5r6ajsdw3gbz6ympzavm1ry0689zr44plfj8w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shen-elisp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shen-elisp";
sha256 = "0i6z2icpndv5g5ydmwqskl7vrmdz9qp30l5bw1l7gqr3dippjiyz";
name = "shen-elisp";
};
@@ -53382,7 +53611,7 @@
sha256 = "0dlwcifw5mlski0mbvqqgmpb0jgf5i67x04s8yab1sq9rr07is57";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shift-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shift-number";
sha256 = "1sbzkmd336d0dcdpk29pzk2b5bhlahrn083x62l6m150n2xzxn4p";
name = "shift-number";
};
@@ -53403,7 +53632,7 @@
sha256 = "13zsws8gq9a8nfk4yzlvfsvqjh9zbnanmw68rcna93yc5nc634nr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shift-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shift-text";
sha256 = "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i";
name = "shift-text";
};
@@ -53424,7 +53653,7 @@
sha256 = "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shimbun";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shimbun";
sha256 = "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh";
name = "shimbun";
};
@@ -53445,7 +53674,7 @@
sha256 = "1gwxrqp95hqbv53hf4ahl2pbgsvhszz73ny4mnp7by24zbp51pzy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shm";
sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c";
name = "shm";
};
@@ -53466,7 +53695,7 @@
sha256 = "19p47a4hwl6h2w5ay09hjhl4kf7cydwqp8s2iyrx2i0k58az8i8i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shoulda";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shoulda";
sha256 = "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk";
name = "shoulda";
};
@@ -53487,7 +53716,7 @@
sha256 = "11kzjm12hbcdzrshq20r20l29k3555np1sva7afqrhgvd239fdq1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/show-css";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/show-css";
sha256 = "0sq15l58macy2affdgbimnchn491fnrqr3bbgn30k3l3xkvkmc7k";
name = "show-css";
};
@@ -53508,7 +53737,7 @@
sha256 = "15vkk7lnnfwgzkiwpqz1l1qpnz2d10l82m10m0prbw03k1zx22c7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/show-marks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/show-marks";
sha256 = "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb";
name = "show-marks";
};
@@ -53526,7 +53755,7 @@
sha256 = "0pq88kz5h0hzgfk8fyf3lppxalmadg5czbik824bpykp9l9gnf1m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/showkey";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/showkey";
sha256 = "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv";
name = "showkey";
};
@@ -53544,7 +53773,7 @@
sha256 = "01ibg36lvmdk7ac1k0f0r6wyds4rq0wb7gzw26nkiwykn14gxaql";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/showtip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/showtip";
sha256 = "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8";
name = "showtip";
};
@@ -53565,7 +53794,7 @@
sha256 = "1mizhbwvnsxxjz6m94qziibvhghhp8v8db3wxrq3z9gsaqqkcndn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shpec-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shpec-mode";
sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl";
name = "shpec-mode";
};
@@ -53586,7 +53815,7 @@
sha256 = "07zzyfibs2c7w4gpvdh9003frznbg7zdnrx0nv8bvn0b68d3yz0m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shrink-whitespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shrink-whitespace";
sha256 = "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq";
name = "shrink-whitespace";
};
@@ -53607,7 +53836,7 @@
sha256 = "00c11s664hwj1l1hw7qshygy3wb6wbd0hn6qqnyq1xr0r87nnhjs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shut-up";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shut-up";
sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26";
name = "shut-up";
};
@@ -53628,7 +53857,7 @@
sha256 = "0cjqh6qbbmgxd6zgqnikw6bh8wpjydydkkqs5wcmblpi5awqmnb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sibilant-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sibilant-mode";
sha256 = "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq";
name = "sibilant-mode";
};
@@ -53649,7 +53878,7 @@
sha256 = "102ssiz4sp7y816s1iy8i98c314jbn3sy0v87b0qgpgjiq913ffq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sicp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sicp";
sha256 = "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz";
name = "sicp";
};
@@ -53670,7 +53899,7 @@
sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sift";
sha256 = "0mv5zk140kjilwvzccj75ym7wlkkqryb532mbsy7i9bs3q7m916d";
name = "sift";
};
@@ -53691,7 +53920,7 @@
sha256 = "1n6mjfw655a5q0ifq52yf6nyc0zxcahr47dvxg0p8x8v3f4jskvz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/signal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/signal";
sha256 = "0pvl5qxi0rjbxkpa8kk1q9vz11i9yjmph42si3n7gmm9kc28pk61";
name = "signal";
};
@@ -53712,7 +53941,7 @@
sha256 = "1g4rr7hpy9r3y4vdpv48xpmy8kqvs4j64kvnhnj2rw2wv1grw78j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/signature";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/signature";
sha256 = "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q";
name = "signature";
};
@@ -53733,7 +53962,7 @@
sha256 = "0vzkgrc54j4a3g90jxc7vxkqwqi3047gnn7gng65pfar0i76lzlb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/silkworm-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/silkworm-theme";
sha256 = "1zbrjqmhf80qs3i910sixirrv42rxkqdrg2z03gnz1g885gpcn13";
name = "silkworm-theme";
};
@@ -53754,7 +53983,7 @@
sha256 = "177bhvynqsdfwwqhhlh1v0pqvscy3xv6hhxi7fb42l5dmsw5b97z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simp";
sha256 = "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c";
name = "simp";
};
@@ -53775,7 +54004,7 @@
sha256 = "0cj4w62b6glz7sfqj08sdlyfnnhy7z1v1gmjkvy1j0fv9i2n2z48";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simple-call-tree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple-call-tree";
sha256 = "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl";
name = "simple-call-tree";
};
@@ -53796,7 +54025,7 @@
sha256 = "0jn46fk0ljqs40kz6ngp0sk6hg1334835r2rmagx4qm0mdaqy7p8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simple-httpd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple-httpd";
sha256 = "1g9m8dx62pql6dqz490pifcli96i5pv6sar18w4lwrfgpfisfz8c";
name = "simple-httpd";
};
@@ -53817,7 +54046,7 @@
sha256 = "1bnc3ykgf727lc0ajxa8qsx616baljdgav78fkz57irm65dqr18q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simple-mpc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple-mpc";
sha256 = "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r";
name = "simple-mpc";
};
@@ -53836,7 +54065,7 @@
sha256 = "01fdk790jlpxy95y67yv6944ws4zjh7gs6ymnj1yflf19ccsdsnn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simple+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple+";
sha256 = "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra";
name = "simple-plus";
};
@@ -53857,7 +54086,7 @@
sha256 = "1kkhnsxr8zrb21k4ckyg69nsndwy4zdkvfw2drk4v1vnbgx8144f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simple-rtm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple-rtm";
sha256 = "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271";
name = "simple-rtm";
};
@@ -53878,7 +54107,7 @@
sha256 = "0zf9wgyp0n00i00zl1lxr0d60569zgcjdnmdvgpcibvny5s1fp2i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simple-screen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple-screen";
sha256 = "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0";
name = "simple-screen";
};
@@ -53899,7 +54128,7 @@
sha256 = "09286h2q9dqghgfj9a4cniz6djw7867vcy3ixs7cn4wghvhyxm8s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simpleclip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simpleclip";
sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s";
name = "simpleclip";
};
@@ -53920,7 +54149,7 @@
sha256 = "0xq4vy3ggdjiycd3aa62k94kd43zcpm8bfdgi8grwkb1lpvwq9i9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simplenote";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simplenote";
sha256 = "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j";
name = "simplenote";
};
@@ -53941,7 +54170,7 @@
sha256 = "0k16sjbrhxbv3fj5rzjzvs03230nwlzmvw18dhdhzzblk08f28dp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simplenote2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simplenote2";
sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm";
name = "simplenote2";
};
@@ -53962,7 +54191,7 @@
sha256 = "0108q2b5h73rjxg9k2kmc8z6la9kgqdnz9z1x7rn61v3vbxlzqvn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simplezen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simplezen";
sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j";
name = "simplezen";
};
@@ -53983,7 +54212,7 @@
sha256 = "0kbgxjfdf88h7hfds1kbdxx84wvkvy773r98ym1fzfm54m2kddvq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/skeletor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skeletor";
sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v";
name = "skeletor";
};
@@ -54004,7 +54233,7 @@
sha256 = "16757xz5ank3jsh8xglyly7pwdn5xm0yngampy1n1vgcwsp5080a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/skewer-less";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skewer-less";
sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl";
name = "skewer-less";
};
@@ -54021,11 +54250,11 @@
src = fetchFromGitHub {
owner = "skeeto";
repo = "skewer-mode";
- rev = "5c76ab1786f2f365eff33fd5f52ce4ec3f9b42a2";
- sha256 = "0yj7r5f751lra9jj7lg90qp66sgnb7fcjw5v9hfna7r13qdn9f20";
+ rev = "92e13cf9540128b2bbab28ac1a0a7a4c00771270";
+ sha256 = "0dwc3qaqnzjsccvr3gapip4yr17fzgv4w33ydq8hjqn8rs9rqq6l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/skewer-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skewer-mode";
sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm";
name = "skewer-mode";
};
@@ -54038,15 +54267,15 @@
skewer-reload-stylesheets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, skewer-mode }:
melpaBuild {
pname = "skewer-reload-stylesheets";
- version = "20150111.723";
+ version = "20160520.641";
src = fetchFromGitHub {
owner = "NateEag";
repo = "skewer-reload-stylesheets";
- rev = "a22ed760a5515e43a05aeb82811dc571ba3d6060";
- sha256 = "1q0qc4jc83k7dfhq2y06zy0fg38kvp219gb3icysdhs88zi2v9s3";
+ rev = "4316231660002d9035169ed7a845d9bffdee111c";
+ sha256 = "19ijy3c8dfp2kdfj6x0cmgc09pwxj6r9fgyayxfg15f8rlyxwkk2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/skewer-reload-stylesheets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skewer-reload-stylesheets";
sha256 = "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm";
name = "skewer-reload-stylesheets";
};
@@ -54067,7 +54296,7 @@
sha256 = "0gzj7cf42nhp3ac1a2gxcfbmn80z1z46zxsfr2f5xil2gjag39fx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/skype";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skype";
sha256 = "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl";
name = "skype";
};
@@ -54080,15 +54309,15 @@
slack = callPackage ({ alert, circe, emojify, fetchFromGitHub, fetchurl, lib, melpaBuild, oauth2, request, websocket }:
melpaBuild {
pname = "slack";
- version = "20160515.801";
+ version = "20160521.1022";
src = fetchFromGitHub {
owner = "yuya373";
repo = "emacs-slack";
- rev = "21786f354cca485552f9c7c15d1d8b2f3d9b89a3";
- sha256 = "0fzngzjynng896p0nkf503c485rv26bdkwsrhi0ag043fr91iqi6";
+ rev = "44df5544a8b51c7b349adb503ee0c6c5dcec5255";
+ sha256 = "00cla208vr3rm9v32hpjylrdl2gnkpbh05z8v3nzpvj5l6mrpbcv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slack";
sha256 = "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp";
name = "slack";
};
@@ -54109,7 +54338,7 @@
sha256 = "108zcb7hdaaq3sxjfr9nrwzqxx71q6aygzik7l3ab854xknkjfad";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slamhound";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slamhound";
sha256 = "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x";
name = "slamhound";
};
@@ -54130,7 +54359,7 @@
sha256 = "11p1pghx55a4gcn45cadw7c594134b21cdim723k2h99z14f89az";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slideview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slideview";
sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1";
name = "slideview";
};
@@ -54151,7 +54380,7 @@
sha256 = "0vgyc2ny9qmn8f5r149y4g398mh4gnwsp4yim85z4vmdikqg8vi1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slim-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slim-mode";
sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac";
name = "slim-mode";
};
@@ -54164,15 +54393,15 @@
slime = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild }:
melpaBuild {
pname = "slime";
- version = "20160419.1158";
+ version = "20160521.1215";
src = fetchFromGitHub {
owner = "slime";
repo = "slime";
- rev = "32fc742ea4ebecfd3c599c98515ad762a692cc17";
- sha256 = "0br910d6ph4db9ad2xrb9v1crjys3sbgg71j89kighyg1pq1h2k2";
+ rev = "2da9fef009f2380daf9404022ca69cb87573f509";
+ sha256 = "0d1fcjv11my4sa11zim99ylzfsc5q989x4izrrxs3y9ii0nq8kax";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime";
sha256 = "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign";
name = "slime";
};
@@ -54193,7 +54422,7 @@
sha256 = "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slime-annot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-annot";
sha256 = "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n";
name = "slime-annot";
};
@@ -54214,7 +54443,7 @@
sha256 = "0cc8xb2p1j2vs00h4sq6x0mwwrxkidqj4l7kg3n3150bj37v55rs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slime-company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-company";
sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2";
name = "slime-company";
};
@@ -54235,7 +54464,7 @@
sha256 = "0swd9rbsag8k18njp741ljg6lmlz949i4bbz5w7bl0spcpc26fs9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slime-docker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-docker";
sha256 = "13zkkrpww51ndsblpyz2msiwrjnaz6yrk61jbzrwp0r7a2v0djsa";
name = "slime-docker";
};
@@ -54256,7 +54485,7 @@
sha256 = "0rsh0bbhyx74yz1gjfqyi0bkqq5n3scpyh5mmc3d6dkpv8wa7bwz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slime-ritz";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-ritz";
sha256 = "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a";
name = "slime-ritz";
};
@@ -54277,7 +54506,7 @@
sha256 = "13rm9pmshgssmydhpirri38s38z3kvkhqama40qdzqq96dsxlnjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slime-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-theme";
sha256 = "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00";
name = "slime-theme";
};
@@ -54298,7 +54527,7 @@
sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slime-volleyball";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-volleyball";
sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7";
name = "slime-volleyball";
};
@@ -54319,7 +54548,7 @@
sha256 = "0srj0zcvzr0sjcs37zz11xz8w0yv94m69av9ny7mx8ssf4qp0pxa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slirm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slirm";
sha256 = "061xjj3vjdkkvd979fhp7bc12g5zkxqxywvcz3z9dlkgdks41ld7";
name = "slirm";
};
@@ -54340,7 +54569,7 @@
sha256 = "1y1gay1h91c0690gly4qibx1my0l1zpb6s3x58lks8m21jdwfw28";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slovak-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slovak-holidays";
sha256 = "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg";
name = "slovak-holidays";
};
@@ -54361,7 +54590,7 @@
sha256 = "0i7x07wgrs2dlhk97lphn7lg6d7q8ibs9hl25lmfgifixl1275k4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly";
sha256 = "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l";
name = "sly";
};
@@ -54382,7 +54611,7 @@
sha256 = "128gb6hsb7zig4czwgwjcm58lgqk6rmj7qi17a9cz5gsnggjcwii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sly-company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-company";
sha256 = "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2";
name = "sly-company";
};
@@ -54403,7 +54632,7 @@
sha256 = "1fxsv83fcv5l7cndsysd8salvfwsabvd84sm7zli2ksf678774gp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sly-hello-world";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-hello-world";
sha256 = "03ybjgczp6ssk4hmwd486vshlk7ql27k1lyhmvk26gmrf554z90n";
name = "sly-hello-world";
};
@@ -54424,7 +54653,7 @@
sha256 = "00lw6hkxs71abjyi7nhzi8j6n55jyhzsp81ycn6f2liyp4rmqgi7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sly-macrostep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-macrostep";
sha256 = "1i004mb0bg13j3zhdsjz1795dh0ry8winzvdghr1wardc9np60h7";
name = "sly-macrostep";
};
@@ -54445,7 +54674,7 @@
sha256 = "1xi625pn3mg77mjvr94v6a5pjyvgjavpkdbbh1lqjx1halaa2qb7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sly-named-readtables";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-named-readtables";
sha256 = "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9";
name = "sly-named-readtables";
};
@@ -54466,7 +54695,7 @@
sha256 = "1mb78cdkmik9rwccvzl8slv4dfy8sdq69dkys7q11jyn8lfm476y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sly-quicklisp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-quicklisp";
sha256 = "1hpcz84g9c6g0x8qal02xgjj02gxqz3bysyz0l59jxiga0m634v8";
name = "sly-quicklisp";
};
@@ -54487,7 +54716,7 @@
sha256 = "194bdibpxpqsag86h583b62ybmfqmq4442a0czbijqwngbgjpj3l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sly-repl-ansi-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-repl-ansi-color";
sha256 = "0wz24kfjl6rp4qss0iq2ilav0mkg2spy2ziikypy7v0iqbssmssi";
name = "sly-repl-ansi-color";
};
@@ -54508,7 +54737,7 @@
sha256 = "0r181rdnymr96kj74c73212n6157cfiq1d6hk2lfc54yl6h76zf4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-comment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-comment";
sha256 = "0lbrasdrkyj7zybz0f3xick8p0bvci5bhb2kg6pqzz9pw2iaxw12";
name = "smart-comment";
};
@@ -54526,7 +54755,7 @@
sha256 = "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-compile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-compile";
sha256 = "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3";
name = "smart-compile";
};
@@ -54547,7 +54776,7 @@
sha256 = "1xbd42q60pmg0hw4bn2fndjwgrfgj6ggm757fyp8m08jqh0zkarn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-cursor-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-cursor-color";
sha256 = "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx";
name = "smart-cursor-color";
};
@@ -54568,7 +54797,7 @@
sha256 = "19l47xqzjhhm9j3izik0imssip5ygg3lnflb9ixsz1js571aaxha";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-forward";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-forward";
sha256 = "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c";
name = "smart-forward";
};
@@ -54589,7 +54818,7 @@
sha256 = "0q5hxg265ad9gpclv2kzikg6jvbf3zzb1mrykxn0n7mnvdfdlhsi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-indent-rigidly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-indent-rigidly";
sha256 = "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x";
name = "smart-indent-rigidly";
};
@@ -54610,7 +54839,7 @@
sha256 = "0sqvm7iwdjk057fwid4kz6wj71igiqhdarj59s17pzy6xz34afhg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-mark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-mark";
sha256 = "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v";
name = "smart-mark";
};
@@ -54627,11 +54856,11 @@
src = fetchFromGitHub {
owner = "Malabarba";
repo = "smart-mode-line";
- rev = "8fd76a66abe4d37925e3d6152c6bd1e8648a293a";
- sha256 = "1176fxrzzk4fyp4wjyp0xyqrga74j5csr5x37mlgplh9790248dx";
+ rev = "57c571d9811f3515582140d26a50589fcd5f6819";
+ sha256 = "0cp04lxxg7q5c6w0knznz4pjb5h1k0h3zxhlsf6snpi7j2ay4560";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-mode-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-mode-line";
sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6";
name = "smart-mode-line";
};
@@ -54644,15 +54873,15 @@
smart-mode-line-powerline-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, smart-mode-line }:
melpaBuild {
pname = "smart-mode-line-powerline-theme";
- version = "20160111.1232";
+ version = "20160520.1154";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "smart-mode-line";
- rev = "8fd76a66abe4d37925e3d6152c6bd1e8648a293a";
- sha256 = "1176fxrzzk4fyp4wjyp0xyqrga74j5csr5x37mlgplh9790248dx";
+ rev = "57c571d9811f3515582140d26a50589fcd5f6819";
+ sha256 = "0cp04lxxg7q5c6w0knznz4pjb5h1k0h3zxhlsf6snpi7j2ay4560";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-mode-line-powerline-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-mode-line-powerline-theme";
sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4";
name = "smart-mode-line-powerline-theme";
};
@@ -54673,7 +54902,7 @@
sha256 = "1q74b0mbhly84g252a0arbyxc720rgs9a3yqf8b8s2fpfkzb95sg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-newline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-newline";
sha256 = "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w";
name = "smart-newline";
};
@@ -54694,7 +54923,7 @@
sha256 = "0h559cdyln5f4ignx1r86ryi7wizys0gj03dj7lfzaxr7wkd0jaf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-region";
sha256 = "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc";
name = "smart-region";
};
@@ -54715,7 +54944,7 @@
sha256 = "0azhfffm1bkgjx4i3p9f6x2gmw8kc3fafzqj4vxxdibhn0nizqk8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-shift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-shift";
sha256 = "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3";
name = "smart-shift";
};
@@ -54736,7 +54965,7 @@
sha256 = "0aighpby8khrljb67m533bwkzlsckyvv7d09cnzr1rfwxiil0ml4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-tab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-tab";
sha256 = "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5";
name = "smart-tab";
};
@@ -54757,7 +54986,7 @@
sha256 = "1s65hr7b8aggvdd1i6gkkpz6j1kqilggfnf46xvjnvdw9awmwk6b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-tabs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-tabs-mode";
sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl";
name = "smart-tabs-mode";
};
@@ -54778,7 +55007,7 @@
sha256 = "15834lnh7dq9kz31k06ifpnc0vz86rycz0ryildi5qd2nb7s3lw9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-window";
sha256 = "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m";
name = "smart-window";
};
@@ -54791,15 +55020,15 @@
smartparens = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smartparens";
- version = "20160511.1112";
+ version = "20160521.808";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "smartparens";
- rev = "671e9e849b1c987b9ee04b2df1e3c9d5d4c188b7";
- sha256 = "1njfl8yq37398a7z89f66n16vsqh8nmibzv682njjndb7q26mh86";
+ rev = "1321757dfe774782d13b0c050c292b2477877d0b";
+ sha256 = "1bznffl17x2n0k8k6jadnqnjk4r90y50wrvqyygyc3ib414k933x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smartparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartparens";
sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6";
name = "smartparens";
};
@@ -54820,7 +55049,7 @@
sha256 = "1sjwqi8w83qxihqmcm7z0vwmrz1az0y266qgj2nwfv39bri6y4i6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smartrep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartrep";
sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn";
name = "smartrep";
};
@@ -54841,7 +55070,7 @@
sha256 = "193cxfnh263yw628ipf9gssvyq3j7mffrdmnjhvzzcsnhd1k145p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smartscan";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartscan";
sha256 = "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb";
name = "smartscan";
};
@@ -54862,7 +55091,7 @@
sha256 = "1jcaspqrm23viigk0701711bmaqsyc5fbpkszf7bg7nvhkl4pfqy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smartwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartwin";
sha256 = "0rg92j0aa8qxhr91hjj2f4w8vj5w9b4d2nmkggng44nxk8zafdif";
name = "smartwin";
};
@@ -54883,7 +55112,7 @@
sha256 = "1vl3nx0y2skb8sibqxvmc3wrmmd6z88hknbry348d0ik3cbr0ijx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smarty-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smarty-mode";
sha256 = "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v";
name = "smarty-mode";
};
@@ -54904,7 +55133,7 @@
sha256 = "1ca8i45dj41vif2hm87ircwm9alxdm98irfi586ybrc72s24036r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smblog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smblog";
sha256 = "1byalkpc1bcb6p4j4g1cwc4q2i7irxjcphb0hqh1b2k1zixrw5rr";
name = "smblog";
};
@@ -54925,7 +55154,7 @@
sha256 = "1smv91ggvaw37597ilvhra8cnj4p71n6v5pfazii8k85kvs6x460";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smeargle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smeargle";
sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd";
name = "smeargle";
};
@@ -54946,7 +55175,7 @@
sha256 = "0xrbkpc3w7yadpjih169cpp75gilsnx4y9akgci5vfcggv4ffm26";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smex";
sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda";
name = "smex";
};
@@ -54966,7 +55195,7 @@
sha256 = "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sml-modeline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sml-modeline";
sha256 = "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd";
name = "sml-modeline";
};
@@ -54987,7 +55216,7 @@
sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smooth-scroll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smooth-scroll";
sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf";
name = "smooth-scroll";
};
@@ -55008,7 +55237,7 @@
sha256 = "1dkqix0iyjyiqf34h3p8faqcpffc0pwkxqqn80ys9jvj4f27kkrg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smooth-scrolling";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smooth-scrolling";
sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6";
name = "smooth-scrolling";
};
@@ -55029,7 +55258,7 @@
sha256 = "1a097f1x9l0m4dizvnb742svlqsm6hlif73rk7qjar081sk1gjxx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smotitah";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smotitah";
sha256 = "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2";
name = "smotitah";
};
@@ -55050,7 +55279,7 @@
sha256 = "0zknryfpg4791l7d7xv9hn2fx00rmbqw3737lfm75484hr10lymz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smtpmail-multi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smtpmail-multi";
sha256 = "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss";
name = "smtpmail-multi";
};
@@ -55071,7 +55300,7 @@
sha256 = "1z2sdnf11wh5hz1rkrbg7fs4ha3zrbj9qnvfzq9005y89d7cs95x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smyx-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smyx-theme";
sha256 = "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61";
name = "smyx-theme";
};
@@ -55084,15 +55313,15 @@
snakemake-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }:
melpaBuild {
pname = "snakemake-mode";
- version = "20160516.1545";
+ version = "20160517.2144";
src = fetchFromGitHub {
owner = "kyleam";
repo = "snakemake-mode";
- rev = "78a9071c13dd4c457a962ab47289ee9ac3847db2";
- sha256 = "0jag6cmig9xkyy1jw9lfwnxxqja3am85b2cl3vc0ljzxqx7ghxfp";
+ rev = "c64354a4f6b8e65abd8ff0a3713253de5da59e07";
+ sha256 = "0iwcfywais3jagx27h666fh6zgml8fncsz1jymjrbyr0w6xi33iz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/snakemake-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/snakemake-mode";
sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4";
name = "snakemake-mode";
};
@@ -55113,7 +55342,7 @@
sha256 = "0m5j1v9br7vp9m2km8xccy5vv8gis0mcgwjxfc6qhnv7kbx0sx2k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/snapshot-timemachine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/snapshot-timemachine";
sha256 = "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p";
name = "snapshot-timemachine";
};
@@ -55134,7 +55363,7 @@
sha256 = "1nyrfbjrg74wrqlh8229rf7ym07k2a0wscjm0kbg3sam9ryc546y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/snippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/snippet";
sha256 = "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j";
name = "snippet";
};
@@ -55155,7 +55384,7 @@
sha256 = "07056pnjgsgw06c67776qp7jci96iqbzlprbavzz2l1j8ywz8cwm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/soft-charcoal-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/soft-charcoal-theme";
sha256 = "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a";
name = "soft-charcoal-theme";
};
@@ -55176,7 +55405,7 @@
sha256 = "06q82v1hndvznsqg0r6jrxvgxhycg9m65kay4db4yy0gmc66v2xf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/soft-morning-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/soft-morning-theme";
sha256 = "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr";
name = "soft-morning-theme";
};
@@ -55197,7 +55426,7 @@
sha256 = "030mf8b0sf9mmzwhg85zh0ccvcg768kckwvbm0yzg7vmq1x46hjl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/soft-stone-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/soft-stone-theme";
sha256 = "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v";
name = "soft-stone-theme";
};
@@ -55218,7 +55447,7 @@
sha256 = "0xrrx1lr9gc33skcgdi5hjkdgqrhlas3p22zzkrbkmiajsgmyxdf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/solarized-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/solarized-theme";
sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12";
name = "solarized-theme";
};
@@ -55239,7 +55468,7 @@
sha256 = "1mlhidfnvs2sph6qavzqz5qng78q2v4n5qc021958s29kx35i603";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/solidity-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/solidity-mode";
sha256 = "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx";
name = "solidity-mode";
};
@@ -55260,7 +55489,7 @@
sha256 = "1ga35d3rhdf6ffd36q58ay6380gjvkmaiid4vscga3v7ca0dkhl1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sonic-pi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sonic-pi";
sha256 = "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp";
name = "sonic-pi";
};
@@ -55281,7 +55510,7 @@
sha256 = "10gh1hvxq9gm29r6qzlnva7vjidd7n4kih4z2ihyvbvy9za20xqw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/soothe-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/soothe-theme";
sha256 = "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3";
name = "soothe-theme";
};
@@ -55302,7 +55531,7 @@
sha256 = "086a66jlnkiv044i4japs4czw8gfs8p0n80p42ck83zm2jnznc49";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sos";
sha256 = "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb";
name = "sos";
};
@@ -55323,7 +55552,7 @@
sha256 = "13yn2yadkpmykaly3l3xsq1bhm4sxyk8k1px555y11qi0mfdcjhh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sotclojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sotclojure";
sha256 = "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090";
name = "sotclojure";
};
@@ -55344,7 +55573,7 @@
sha256 = "01n943kycazsw9znk7cj17qjlar91i5r25p3cmxcxh75wnh4h1vj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sotlisp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sotlisp";
sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk";
name = "sotlisp";
};
@@ -55365,7 +55594,7 @@
sha256 = "1h6h65gwxb07pscyhhhdn11h3lx3jgyfw8v1kw5m2qfrv5kh6ylq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sound-wav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sound-wav";
sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f";
name = "sound-wav";
};
@@ -55386,7 +55615,7 @@
sha256 = "1m8wcm6y80gq5rrm4brd3f20kmk54s6ph26j4lz4cmilxk6gj56v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/soundcloud";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/soundcloud";
sha256 = "06cbr1h03k5ixam6lsr82lx3nh2kkp0416mlig0zfkd4b8a9mf8c";
name = "soundcloud";
};
@@ -55414,7 +55643,7 @@
sha256 = "0w5ac515ymj43p5j19nhfqk0c3251c7x3i97r550g780niby1nc5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/soundklaus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/soundklaus";
sha256 = "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb";
name = "soundklaus";
};
@@ -55431,11 +55660,11 @@
src = fetchFromGitHub {
owner = "nathankot";
repo = "company-sourcekit";
- rev = "14d503d96fe595a688a3f162ae5739e4b08da24b";
- sha256 = "1ynyxrpl9qd2l60dpn9kb04zxgq748fffb0yj8pxvm9q3abblf3m";
+ rev = "fa537304a0a6f90944d797ce58bc067603b6f987";
+ sha256 = "0b0qs398kqy6jsq22hahmfrlb6v8v3bcdgi3z2kamczb0a5k0zhf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sourcekit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sourcekit";
sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks";
name = "sourcekit";
};
@@ -55456,7 +55685,7 @@
sha256 = "0jbny1vrv3qnam3f69yrwd6n5zngnqirc5fsa3py4bdqvlqsg2rc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sourcemap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sourcemap";
sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5";
name = "sourcemap";
};
@@ -55477,7 +55706,7 @@
sha256 = "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sourcetalk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sourcetalk";
sha256 = "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z";
name = "sourcetalk";
};
@@ -55498,7 +55727,7 @@
sha256 = "1a8jp7m9zarvljg5d9c8ydir3qcmwx05c3frs696p9nwvapf6lsb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/spacegray-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spacegray-theme";
sha256 = "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx";
name = "spacegray-theme";
};
@@ -55511,15 +55740,15 @@
spaceline = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, s }:
melpaBuild {
pname = "spaceline";
- version = "20160510.1630";
+ version = "20160519.1115";
src = fetchFromGitHub {
owner = "TheBB";
repo = "spaceline";
- rev = "bcb831508d2678646343ecb0e5af9086d93ab47d";
- sha256 = "147hhxc3lzk3dcr14vwxwln3v44v6fg62n88yw9q5781558jbkr2";
+ rev = "d27276e30f506d2d2b75858c8a461544766eec74";
+ sha256 = "0n42947xgvdf45h9nz9fmfg4dz5blkk8c883x9ynxv21r0mhvdwk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/spaceline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spaceline";
sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw";
name = "spaceline";
};
@@ -55540,7 +55769,7 @@
sha256 = "1giyni1havfvh6d9gm3n0za2f4b5bg3k01pvxmnri6da12m41b9b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/spacemacs-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spacemacs-theme";
sha256 = "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992";
name = "spacemacs-theme";
};
@@ -55561,7 +55790,7 @@
sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/spaces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spaces";
sha256 = "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06";
name = "spaces";
};
@@ -55582,7 +55811,7 @@
sha256 = "1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/spark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spark";
sha256 = "0dv7ixv9gw6xxhw5zm4gmv2ll4lja8hmn2pdizlqxaizpm245rkn";
name = "spark";
};
@@ -55603,7 +55832,7 @@
sha256 = "1fqd3ycywxxmln2kzqwflc69xmqlvi9gwvmf7frn0rfv73w09cvp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sparkline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sparkline";
sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y";
name = "sparkline";
};
@@ -55624,7 +55853,7 @@
sha256 = "1bwa7vi97xlgwzyrc9cdz8i8rajlvkp4ajs8nklsqwrvzngly9lx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sparql-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sparql-mode";
sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d";
name = "sparql-mode";
};
@@ -55642,7 +55871,7 @@
sha256 = "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/speck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/speck";
sha256 = "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg";
name = "speck";
};
@@ -55663,7 +55892,7 @@
sha256 = "0v4v2nr680zgljr9k7rgf7mhy49bv5ixc8ksba3g1bbrz0qv5ny6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/speech-tagger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/speech-tagger";
sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc";
name = "speech-tagger";
};
@@ -55683,7 +55912,7 @@
sha256 = "0cjw47ziv50b3i95i9y0r8rvgchawzkknv5sqr882aqqb8zgy6rc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/speechd-el";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/speechd-el";
sha256 = "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0";
name = "speechd-el";
};
@@ -55704,7 +55933,7 @@
sha256 = "102hjyr9ii2rmq8762irbwansbi023s7dg4a8n6lkadcvzfibmag";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/speed-type";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/speed-type";
sha256 = "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g";
name = "speed-type";
};
@@ -55725,7 +55954,7 @@
sha256 = "1wif9wf8hwxk0q09cdnrmyas7zjg8l5b8jd6sjxd40ypn6dmz2ch";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sphinx-doc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sphinx-doc";
sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z";
name = "sphinx-doc";
};
@@ -55746,7 +55975,7 @@
sha256 = "1mfp4777ppg7zg7zqj755zpfk9lmcq73hxv055ig66pz30m7x5rw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sphinx-frontend";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sphinx-frontend";
sha256 = "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag";
name = "sphinx-frontend";
};
@@ -55767,7 +55996,7 @@
sha256 = "1qdy9nc2h7mwxh7zg2p1x7yg96hxkwxqimjp6zb1119jx0s8grjc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/splitjoin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/splitjoin";
sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l";
name = "splitjoin";
};
@@ -55788,7 +56017,7 @@
sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/splitter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/splitter";
sha256 = "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2";
name = "splitter";
};
@@ -55809,7 +56038,7 @@
sha256 = "185zkdghi10yjmzxlfafjk9d9cq760432h2y5z373ksshxc3pdpa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/spotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spotify";
sha256 = "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k";
name = "spotify";
};
@@ -55830,7 +56059,7 @@
sha256 = "05knlca2dvpyqp9lw8dc47fl5kh2jb04q57cygkzfjjkzvywdwq8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/spotlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spotlight";
sha256 = "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p";
name = "spotlight";
};
@@ -55851,7 +56080,7 @@
sha256 = "0anidv7w2vwsjv8rwkvhs3x51av3y8dp435456czy5yfq6i6vfbl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/spray";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spray";
sha256 = "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4";
name = "spray";
};
@@ -55872,7 +56101,7 @@
sha256 = "0p13q8xax2h3m6rddvmh1p9biw3d1shvwwmqfhg0c93xajlwdfqi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/springboard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/springboard";
sha256 = "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib";
name = "springboard";
};
@@ -55893,7 +56122,7 @@
sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sprintly-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sprintly-mode";
sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4";
name = "sprintly-mode";
};
@@ -55914,7 +56143,7 @@
sha256 = "11igl9n2zwwar1xg651g5v0r0w6xl0grm8xns9wg80351ijrci7x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sproto-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sproto-mode";
sha256 = "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma";
name = "sproto-mode";
};
@@ -55935,7 +56164,7 @@
sha256 = "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sprunge";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sprunge";
sha256 = "199vfl6i881aks8fi9d9w4w7mnc7n443h79p3s4srcpmbyfg6g3w";
name = "sprunge";
};
@@ -55956,7 +56185,7 @@
sha256 = "0ng8q1k5kwqk01h4yzqnqgv2q7hb6qvh7rdhlvncwdh68y6bdgbl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/spu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spu";
sha256 = "0g7j0rz6ga6x6akiijp4vg5iymvqx5d08d60cz6dccq120fi95v8";
name = "spu";
};
@@ -55977,7 +56206,7 @@
sha256 = "0kxnwmdwx25inyprldw3sjwjxvrmran6wpm80ghai374j3arkabw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sql-impala";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sql-impala";
sha256 = "1jr9k48d0q00d1x5lqv0n971mla2ymnqmjfn8pw0s0vxkldq4ibi";
name = "sql-impala";
};
@@ -55998,7 +56227,7 @@
sha256 = "17nbcaqx58fq4rz501xcqqcjhmibdlkaavmmzwcfwra7jv8hqljy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sql-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sql-indent";
sha256 = "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g";
name = "sql-indent";
};
@@ -56019,7 +56248,7 @@
sha256 = "02jsz69j1mi082s0xfk99qrm6wskdfz20na3jc7c35f564l493hs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sql-mssql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sql-mssql";
sha256 = "15z60d2244mxhigr52g332qzjj5ygqyl1i6c19q6vfv2z2vcvy7x";
name = "sql-mssql";
};
@@ -56040,7 +56269,7 @@
sha256 = "0zlrx8sk7gwwr6a23mc22d7iinwf8p9ff16r9krqp86fyzbhnq1d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sqlite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sqlite";
sha256 = "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1";
name = "sqlite";
};
@@ -56058,7 +56287,7 @@
sha256 = "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sqlplus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sqlplus";
sha256 = "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz";
name = "sqlplus";
};
@@ -56079,7 +56308,7 @@
sha256 = "0p2g4ss3bf2asxcibrd8l70ll04nm47znr99l5xyzzwhyfzi61w4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sqlup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sqlup-mode";
sha256 = "0ngs58iri3fwv5ny707kvb6xjq98x19pzak8c9nq4qnpw3nkr83b";
name = "sqlup-mode";
};
@@ -56097,7 +56326,7 @@
sha256 = "1ffnm2kfh8cg5rdhrkqmh4krggbxvqg3s6lc1nssv88av1c5cs3i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sr-speedbar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sr-speedbar";
sha256 = "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23";
name = "sr-speedbar";
};
@@ -56118,7 +56347,7 @@
sha256 = "02jr9cgar2r71rrrx13rj83nd19bxajmzzgj4awzn0d93i4l5qkc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/srefactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/srefactor";
sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2";
name = "srefactor";
};
@@ -56139,7 +56368,7 @@
sha256 = "1rdhdkwdhb727rj53xyxk6i00sjr58a48hfig14m12niy1k739vd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ssh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ssh";
sha256 = "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g";
name = "ssh";
};
@@ -56160,7 +56389,7 @@
sha256 = "0076g1yb8xvn6s8gz5jxiz8mn448fmab574yizgakbxaxd91s1dj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ssh-agency";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ssh-agency";
sha256 = "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8";
name = "ssh-agency";
};
@@ -56181,7 +56410,7 @@
sha256 = "08nx1iwvxqs1anng32w3c2clhnjf45527j0gxz5fy6h9svmb921q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ssh-config-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ssh-config-mode";
sha256 = "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb";
name = "ssh-config-mode";
};
@@ -56202,7 +56431,7 @@
sha256 = "10a5havjg4yjshpfzkhgjdwbrvl44narg09ddzynczmyzm4f01wh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ssh-tunnels";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ssh-tunnels";
sha256 = "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj";
name = "ssh-tunnels";
};
@@ -56223,7 +56452,7 @@
sha256 = "1f2dxlc3dsf9ay417h1l43fxjkrb0a4gg96zd3asx9v2alpzgcim";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stack-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stack-mode";
sha256 = "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf";
name = "stack-mode";
};
@@ -56244,7 +56473,7 @@
sha256 = "0nkrpx1rmzg48mi5871mgdizasv80vpald513ycx4nshyln0ymv2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stan-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stan-mode";
sha256 = "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy";
name = "stan-mode";
};
@@ -56265,7 +56494,7 @@
sha256 = "0nkrpx1rmzg48mi5871mgdizasv80vpald513ycx4nshyln0ymv2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stan-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stan-snippets";
sha256 = "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85";
name = "stan-snippets";
};
@@ -56286,7 +56515,7 @@
sha256 = "0jq2hn4gqp71ynk0s2i21wp975in3xv2q18xx1fwd4p0yw8h5dig";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/standoff-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/standoff-mode";
sha256 = "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp";
name = "standoff-mode";
};
@@ -56307,7 +56536,7 @@
sha256 = "1w3l8ahal9hjisny382bcw9w1nh2swpb1jzf2djww5h0i4r2h36c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/start-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/start-menu";
sha256 = "1k1lc9i9vcl2am9afq0ksrxwsy6kppl4i0v10h0w2fq5z374rdkv";
name = "start-menu";
};
@@ -56328,7 +56557,7 @@
sha256 = "0cl2y72iagmv87kg72a46a3kap2xigwnrbk2hjgvsbxv2ng5f9cr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stash";
sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9";
name = "stash";
};
@@ -56349,7 +56578,7 @@
sha256 = "1rjp1zsbh476njjznbsxr47x4lqs4i887yi9xvwvpcb2wcwfly81";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/state";
sha256 = "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2";
name = "state";
};
@@ -56370,7 +56599,7 @@
sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/status";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/status";
sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3";
name = "status";
};
@@ -56391,7 +56620,7 @@
sha256 = "142jamr8mi1nkjvivvkh2qgh5fch89xpg5wwi8q0b6hcqcsy8nqn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/steam";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/steam";
sha256 = "10k408spgbxi266jk8x57zwav989is16nvwg41dknz91l76v63gw";
name = "steam";
};
@@ -56412,7 +56641,7 @@
sha256 = "0w1qb8r6nrxi5hbf8l4247yqq754zfbxz64pqqcnw43cxk0qd4j3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stekene-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stekene-theme";
sha256 = "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1";
name = "stekene-theme";
};
@@ -56433,7 +56662,7 @@
sha256 = "1xc4v8a35c2vpfhza15j4f89x7vyg9bbgm7xnprij7814k8iy7p0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stem";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stem";
sha256 = "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq";
name = "stem";
};
@@ -56452,7 +56681,7 @@
sha256 = "02sh1cwh9rnrpnsg56qrwl1q4ffh9719v2l8wccjqgd39krj9m65";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stgit";
sha256 = "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89";
name = "stgit";
};
@@ -56470,7 +56699,7 @@
sha256 = "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sticky";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sticky";
sha256 = "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w";
name = "sticky";
};
@@ -56491,7 +56720,7 @@
sha256 = "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stickyfunc-enhance";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stickyfunc-enhance";
sha256 = "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks";
name = "stickyfunc-enhance";
};
@@ -56512,7 +56741,7 @@
sha256 = "191sg32z1iagyxmbn49i1lpfihld9g9741cw2kj830s4vag4kinx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stock-ticker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stock-ticker";
sha256 = "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi";
name = "stock-ticker";
};
@@ -56533,7 +56762,7 @@
sha256 = "1kcbkf0wbmqy9slxfqg7wsyw5n2rsaz832ibrxszb642j0l8s7pr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/strie";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/strie";
sha256 = "1ngvpbws7laqxk6mm023r5295msap12h8bh9zrsbr05yxfzhlx83";
name = "strie";
};
@@ -56554,7 +56783,7 @@
sha256 = "1xm7bb3cp99ahr5jrwi0p0258qcvlbddy98wmbq00kk5pihqbzsg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/string-edit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/string-edit";
sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8";
name = "string-edit";
};
@@ -56575,7 +56804,7 @@
sha256 = "06qs8v2pai3pyg0spmarssmrq06xg9q60wjj46s5xxichlw9pgcf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/string-inflection";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/string-inflection";
sha256 = "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2";
name = "string-inflection";
};
@@ -56596,7 +56825,7 @@
sha256 = "1frdspm1qgksa8cpx5gkj50xk9mgz8202pgp11lqir6l3yjcj3wq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/string-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/string-utils";
sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v";
name = "string-utils";
};
@@ -56614,7 +56843,7 @@
sha256 = "1sa6wd2z2qkcnjprkkm9b945qz8d0l702sv9w15wl0lngbhw84na";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/strings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/strings";
sha256 = "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk";
name = "strings";
};
@@ -56635,7 +56864,7 @@
sha256 = "0dxajh72wdcwdb9ydbcm19fmp0p1drmh1niq4r69jnbn8sah0zax";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stripe-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stripe-buffer";
sha256 = "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a";
name = "stripe-buffer";
};
@@ -56655,7 +56884,7 @@
sha256 = "0wc2zfn0lrric9xbzdi8hj1fl3gfb2ag5fsb044zv52nkrmn2irm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stumpwm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stumpwm-mode";
sha256 = "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86";
name = "stumpwm-mode";
};
@@ -56675,7 +56904,7 @@
sha256 = "0sw7r4sbg0vmm7gqisjdp1wansn9k64djz3p83fwmyq3qkj90ar4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stupid-indent-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stupid-indent-mode";
sha256 = "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p";
name = "stupid-indent-mode";
};
@@ -56692,11 +56921,11 @@
src = fetchFromGitHub {
owner = "brianc";
repo = "jade-mode";
- rev = "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb";
- sha256 = "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506";
+ rev = "fd48e74686679633d8eba4d1029092b667be498e";
+ sha256 = "0rif2ln4kif1fg71pb9r6xqb12llrais5qcm7g7bcn5sw1gr3rhh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stylus-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stylus-mode";
sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5";
name = "stylus-mode";
};
@@ -56717,7 +56946,7 @@
sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/subatomic-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subatomic-theme";
sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc";
name = "subatomic-theme";
};
@@ -56738,7 +56967,7 @@
sha256 = "1w7mimyqc25phlww20l49wlafnxp6c7dwibvphg3vwl61g0llpq8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/subatomic256-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subatomic256-theme";
sha256 = "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy";
name = "subatomic256-theme";
};
@@ -56759,7 +56988,7 @@
sha256 = "10pirwc7g9vii5cyk4vg6m5g5hlap0yg9w4qy257744c67jmaxvg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/subemacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subemacs";
sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm";
name = "subemacs";
};
@@ -56780,7 +57009,7 @@
sha256 = "0q9p974xvswr2sijz1rs858x9sdx0rb00lkhj5cd90abn33lb260";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sublime-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sublime-themes";
sha256 = "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj";
name = "sublime-themes";
};
@@ -56801,7 +57030,7 @@
sha256 = "1kpq7kpmhgq3vjd62rr4qsc824qcyjxm50m49r7invgnmgd78h4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sublimity";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sublimity";
sha256 = "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw";
name = "sublimity";
};
@@ -56819,7 +57048,7 @@
sha256 = "1xxf8kgxzcwwjm96isj4zg31vw63ahivr6xch5dw8wsvk0mjks9y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/subr+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subr+";
sha256 = "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs";
name = "subr-plus";
};
@@ -56840,7 +57069,7 @@
sha256 = "09izm28jrzfaj469v6yd1xgjgvy6pmxarcy0rzn2ihn3c0z7mdg4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/subshell-proc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subshell-proc";
sha256 = "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2";
name = "subshell-proc";
};
@@ -56861,7 +57090,7 @@
sha256 = "1007xz4x1wgvxilv1qwf0a4y7hd7sqnnzwk2bdr12kfk7vq9cw2b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sudden-death";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sudden-death";
sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh";
name = "sudden-death";
};
@@ -56882,7 +57111,7 @@
sha256 = "0bscj6nziansx846rmmrpbc4wbsngq1jg70g5ncf0f14b3achaq3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sudo-edit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sudo-edit";
sha256 = "10vz7q8m0l2dyhiy9r9nj17qlwyv032glshzljzhm1n20w8y1fq4";
name = "sudo-edit";
};
@@ -56903,7 +57132,7 @@
sha256 = "1ym3j9mxc8k9akk9z1m6i0gqsfcgr8k8xzz5gniw8jfarf7f4isq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sudo-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sudo-ext";
sha256 = "1zlnz68kzdrc7p90qmzs7fsr9ry4rl259xpyv55jh5icry290z4x";
name = "sudo-ext";
};
@@ -56921,7 +57150,7 @@
sha256 = "0q5m8d6p9aqbfx17zgznkqw2jgh027xix4894wrdz91670zxd3py";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/summarye";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/summarye";
sha256 = "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65";
name = "summarye";
};
@@ -56942,7 +57171,7 @@
sha256 = "0mhyhkjjwszwl5wzkys9pgvgx9sps9r46k1s1hpzzf4s3vi015mc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sunny-day-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sunny-day-theme";
sha256 = "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw";
name = "sunny-day-theme";
};
@@ -56963,7 +57192,7 @@
sha256 = "0jv1shacpxqbw6pv9rlkk8z84si85alhillhb9a2s6s36kjmybk0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sunshine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sunshine";
sha256 = "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv";
name = "sunshine";
};
@@ -56984,7 +57213,7 @@
sha256 = "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/suomalainen-kalenteri";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/suomalainen-kalenteri";
sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh";
name = "suomalainen-kalenteri";
};
@@ -57005,7 +57234,7 @@
sha256 = "1frm90kssrp4s6x0g4vq4jkssh8rnrfjbgwa05igsjnsbnnfxxd1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/super-save";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/super-save";
sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p";
name = "super-save";
};
@@ -57026,7 +57255,7 @@
sha256 = "0m02snzka243adhwwgriml133n4312lhdia3wdqjcq8y2mlp3331";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/supergenpass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/supergenpass";
sha256 = "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95";
name = "supergenpass";
};
@@ -57047,7 +57276,7 @@
sha256 = "09m2ayx8wf7impns1mkc0phkl1ql91ljgzv3ivk94vrgni7n5f93";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/suscolors-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/suscolors-theme";
sha256 = "08sh20lmhqzpxb55nmqwsfv4xd6sjirh592in7s6vl52r3hl0jkh";
name = "suscolors-theme";
};
@@ -57068,7 +57297,7 @@
sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/svg-mode-line-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/svg-mode-line-themes";
sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506";
name = "svg-mode-line-themes";
};
@@ -57089,7 +57318,7 @@
sha256 = "1kn70570r6x0h1xfs1vr8as27pjfanyhml140yms60gdjb4ssf9r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/swap-buffers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swap-buffers";
sha256 = "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw";
name = "swap-buffers";
};
@@ -57110,7 +57339,7 @@
sha256 = "1m0apxjcj6xhbic36il1mbbril6pw2h6d9kmsb0jhibyy6mc8r78";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/swap-regions";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swap-regions";
sha256 = "0gl4vr7wjh5gjskrwbqypaqyfigpgh379bm4l2gvbsbhahsmbj67";
name = "swap-regions";
};
@@ -57128,7 +57357,7 @@
sha256 = "1fkicyjvanh8yk2y27sq075sarcyqhsdz0r4xhillpnv34ji98r5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/swbuff-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swbuff-x";
sha256 = "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y";
name = "swbuff-x";
};
@@ -57149,7 +57378,7 @@
sha256 = "10blwlwg1ry9jznf1a6iss5s0z8sj9gc02ayf5qv92mgxvjhrhdn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sweetgreen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sweetgreen";
sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy";
name = "sweetgreen";
};
@@ -57170,7 +57399,7 @@
sha256 = "08397a8y8hgyzwny4z9f6kgwy8d37h0iypcjps3l6lhnk35mshv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/swift-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swift-mode";
sha256 = "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d";
name = "swift-mode";
};
@@ -57187,11 +57416,11 @@
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "c20867b7468643fe2cd4894b5fc80f6cdfc4932f";
- sha256 = "09lag11n2vw4bbs9clndrp5nbyy7dzr4vp3vfy58i3j90nxvrzfm";
+ rev = "12145d74ebd884ce5b674be71df8ac69b59e7d04";
+ sha256 = "0xzskxyj9w01w1kjy1y5igcirinhr3y6rqfj32g1f1xkn0f91sg5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/swiper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swiper";
sha256 = "0qaia5pgsjsmrfmcdj72jmj39zq82wg4i5l2mb2z6jlf1jpbk6y9";
name = "swiper";
};
@@ -57212,7 +57441,7 @@
sha256 = "1fr9vs0574g93mq88d25nmj93hrx4d4s2d0im6wk156k2yb8ha2b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/swiper-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swiper-helm";
sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph";
name = "swiper-helm";
};
@@ -57233,7 +57462,7 @@
sha256 = "09ba45zbya2a72prq13pjg9pgbs86c6kayf8q2papvr9f5yv57xa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/switch-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/switch-window";
sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2";
name = "switch-window";
};
@@ -57254,7 +57483,7 @@
sha256 = "10ka6f86n07xlf0z7w35db0mzp2zk4xhr6jd19kjdrn2j0ynlcw5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/swoop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swoop";
sha256 = "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g";
name = "swoop";
};
@@ -57271,11 +57500,11 @@
src = fetchFromGitHub {
owner = "brianc";
repo = "jade-mode";
- rev = "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb";
- sha256 = "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506";
+ rev = "fd48e74686679633d8eba4d1029092b667be498e";
+ sha256 = "0rif2ln4kif1fg71pb9r6xqb12llrais5qcm7g7bcn5sw1gr3rhh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sws-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sws-mode";
sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i";
name = "sws-mode";
};
@@ -57296,7 +57525,7 @@
sha256 = "0d0c2i8hh0wrz8vnhxpxzwj7vlrjx6lrb3cx56pn4ny9qyqfzmw3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sx";
sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517";
name = "sx";
};
@@ -57317,7 +57546,7 @@
sha256 = "1q7di9s8k710nx98wnqnbkkhdimrn0jf6z4xkm4c78l6s5idjwlz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/symon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/symon";
sha256 = "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz";
name = "symon";
};
@@ -57338,7 +57567,7 @@
sha256 = "030bglxnvrkf1f9grbhd8n11j4c6sxpabpjdr1ryx522v01fvx8j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/symon-lingr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/symon-lingr";
sha256 = "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1";
name = "symon-lingr";
};
@@ -57359,7 +57588,7 @@
sha256 = "006siydqxqds0qqds0zxn821dk4pw14wyymyp03n594wgqzw7m8q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sync-recentf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sync-recentf";
sha256 = "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c";
name = "sync-recentf";
};
@@ -57380,7 +57609,7 @@
sha256 = "1dzk1zh10xwv2ff8z053chnwfj9zwk89zs2z7jbx0sxp1pxr3s94";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/syndicate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syndicate";
sha256 = "06nmldcw5dy2shhpk6nyix7gs57gsr5s9ksj57xgg8y2j3j0da95";
name = "syndicate";
};
@@ -57401,7 +57630,7 @@
sha256 = "02xnfkmpvjicckmp9is42fnavy9pd95s99zmf1wylxdji2hhpjxw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/synonymous";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/synonymous";
sha256 = "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5";
name = "synonymous";
};
@@ -57419,7 +57648,7 @@
sha256 = "1zkrh1krhjmhb924dlihfnmjf4gigk9lqkai8aal67h90g2q2dsz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/synonyms";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/synonyms";
sha256 = "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0";
name = "synonyms";
};
@@ -57440,7 +57669,7 @@
sha256 = "1zz9rnwaclr95fpjyabv5rlhk36n2k8f1lzz6yqh964hv8i9562s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/synosaurus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/synosaurus";
sha256 = "06a48ajpickf4qr1bc14skfr8khnjjph7c35b7ajfy8jw2zwavpn";
name = "synosaurus";
};
@@ -57461,7 +57690,7 @@
sha256 = "0zi11540wwcl93xcgd2yf6b72zv01zkaqbf1jfbksg82k9038m2d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/syntactic-sugar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syntactic-sugar";
sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r";
name = "syntactic-sugar";
};
@@ -57474,14 +57703,14 @@
syntax-subword = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "syntax-subword";
- version = "20160205.1654";
+ version = "20160519.1505";
src = fetchhg {
url = "https://bitbucket.com/jpkotta/syntax-subword";
- rev = "88e9bf1d4874";
- sha256 = "15zvh6dk02rm16zs6c9zvw1w76ycn61g3cpx6jb3456ff9zn6m9m";
+ rev = "ad0db0fcb464";
+ sha256 = "1wcgr6scvwwfmhhjbpq3riq0gmp4g08ffbl91fpgp72j8zrc1c6x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/syntax-subword";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syntax-subword";
sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm";
name = "syntax-subword";
};
@@ -57494,15 +57723,15 @@
syslog-mode = callPackage ({ fetchFromGitHub, fetchurl, hide-lines, lib, melpaBuild }:
melpaBuild {
pname = "syslog-mode";
- version = "20140217.1918";
+ version = "20160522.1015";
src = fetchFromGitHub {
owner = "vapniks";
repo = "syslog-mode";
- rev = "c18661b3058f0ec00e6957c955559a762cb0062c";
- sha256 = "1sxpda380c9wnnf5d72lrcqm6dkihf48cgsjcckzf706cc00ksf4";
+ rev = "018f05fa0e91197724ae950a7c7ad08f2460bc1e";
+ sha256 = "0z7zm65g0gqhs8nckyznqipqh2nw4si5bl37v3g92xgx0kyk3f2p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/syslog-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syslog-mode";
sha256 = "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19";
name = "syslog-mode";
};
@@ -57523,7 +57752,7 @@
sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/system-specific-settings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/system-specific-settings";
sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp";
name = "system-specific-settings";
};
@@ -57544,7 +57773,7 @@
sha256 = "0wqmpvqv5dbnniv7xpvmhw75h9xh3q5ndkrpzz3pk5b94drgm5s3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/systemd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/systemd";
sha256 = "1ykvm8mfi3fjvrkfcy9qn0sr9mhwm9x1svrmrd0gyqk418clk5i3";
name = "systemd";
};
@@ -57565,7 +57794,7 @@
sha256 = "0343ss3y9i40y3i9rr7p7bb4k9dj950zyvdv44q1abw2xrfd2xwd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/systemtap-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/systemtap-mode";
sha256 = "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz";
name = "systemtap-mode";
};
@@ -57586,7 +57815,7 @@
sha256 = "054l3imxk9ivq361cr15q1wym07mw3s8xzjkzqlihrfvadsq37ym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ta";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ta";
sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll";
name = "ta";
};
@@ -57607,7 +57836,7 @@
sha256 = "0lfvgbgvsm61kv5mcjnhnfjcnr7fy1015y0hndkf9xvdlw4hahr4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tab-group";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tab-group";
sha256 = "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9";
name = "tab-group";
};
@@ -57628,7 +57857,7 @@
sha256 = "0h7sfbca1nzcjylwl7zp25yj6wxnlx8g8a50zc6sg6jg4rggi2fm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tab-jump-out";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tab-jump-out";
sha256 = "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n";
name = "tab-jump-out";
};
@@ -57645,11 +57874,11 @@
src = fetchFromGitHub {
owner = "dholm";
repo = "tabbar";
- rev = "ad4c9c20cf9090a5ebf77a5150f2bf98bdb4bded";
- sha256 = "0n23nnig1lgjamrzsa91p2aplh7gpj2vkp951i9fpf49c6xpyj3x";
+ rev = "e2f46ab03cf805c7d72f5146329fa8b45212d1c1";
+ sha256 = "1h6pm3mn3qy9g24yli1pil06y9kcm9q5r86bblfqfscfcgx1ny2j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tabbar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tabbar";
sha256 = "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9";
name = "tabbar";
};
@@ -57662,15 +57891,15 @@
tabbar-ruler = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, mode-icons, powerline, tabbar }:
melpaBuild {
pname = "tabbar-ruler";
- version = "20160426.712";
+ version = "20160517.2125";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "tabbar-ruler.el";
- rev = "9f41bb3cdceefedb2f4ee291c1c3a67d111b6c97";
- sha256 = "0nsd2dngxs9fr211isfhvifzn0lzalgl6bx9j8p24gxyprkjpg3d";
+ rev = "11366e96334e1fcc26fc5921145d834d12adc671";
+ sha256 = "15b382hv5gkjmyv1r8dblhal8jbk6ypd8annnlj3i1qrgz6y4c2a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tabbar-ruler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tabbar-ruler";
sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d";
name = "tabbar-ruler";
};
@@ -57691,7 +57920,7 @@
sha256 = "013gkl672vmrji03wd74azcq390lgcr71i5c5qbs0p1v4rcbvqd2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tablist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tablist";
sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p";
name = "tablist";
};
@@ -57712,7 +57941,7 @@
sha256 = "1dbjfq9a7a5s9c18nrp4kcda64jkg5cp8na31kxw0hjcn98dgqa8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tabula-rasa";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tabula-rasa";
sha256 = "14j92inssmm61bn475gyn0dn0rv8kvfnqyl1zq3xliy7a0jn58zz";
name = "tabula-rasa";
};
@@ -57733,7 +57962,7 @@
sha256 = "104n6dmiis6w2psm2rxah9hg5jwaqzna6973ijr5a5rxyp4rcsz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tagedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tagedit";
sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z";
name = "tagedit";
};
@@ -57754,7 +57983,7 @@
sha256 = "13zwlb5805cpv0pbr7fj5b4crlg7lb0ibslvcpszm0cz6rlifcvf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/take-off";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/take-off";
sha256 = "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar";
name = "take-off";
};
@@ -57774,7 +58003,7 @@
sha256 = "1lqkazis9pfcfdsb2lar4l1n4pd085v60xmnlkdrdllwamqachkk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tango-2-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tango-2-theme";
sha256 = "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6";
name = "tango-2-theme";
};
@@ -57795,7 +58024,7 @@
sha256 = "1gfn1yyyb9p2fi17wra1yf2j96cfjw0sifgk3c0vl63h3vmiyvjf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tango-plus-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tango-plus-theme";
sha256 = "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5";
name = "tango-plus-theme";
};
@@ -57816,7 +58045,7 @@
sha256 = "11xb7xpmxvgv7mrjd2vlbjz3h5fa541aydv6bdxngjq6y3qn6wsp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tangotango-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tangotango-theme";
sha256 = "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2";
name = "tangotango-theme";
};
@@ -57837,7 +58066,7 @@
sha256 = "0y9dd39wajiafh7kql870wg2da60nvls35pymhmzrvnwnbsw8pys";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tao-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tao-theme";
sha256 = "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a";
name = "tao-theme";
};
@@ -57854,11 +58083,11 @@
src = fetchFromGitHub {
owner = "phillord";
repo = "tawny-owl";
- rev = "171768c8aacd855ae3c56caa6cdc8545fcb0cd34";
- sha256 = "0bwp4wiwsp73j8wynvglx7hscz4sa5yxy8q8g4vbkbqdipaavw71";
+ rev = "c07a464157581287b7c2351f7e01aa319f9fbf7a";
+ sha256 = "01rqbwfjf3fbqgwdnlw2jz50xfkmrwpxq0y6mqmm9ygwjq7y3wbg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tawny-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tawny-mode";
sha256 = "1xaw1six1n6rw1283fdyl15xcf6m7ngvq6gqlz0xzpf232c4b0kr";
name = "tawny-mode";
};
@@ -57879,7 +58108,7 @@
sha256 = "1jp80qywcphql1ngd4fr24lqdfwrw0bw6q9hgq5vmzgjwfxwxwd4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tbx2org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tbx2org";
sha256 = "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8";
name = "tbx2org";
};
@@ -57900,7 +58129,7 @@
sha256 = "1xpkrlfqb0np9zyxk41f3pxfkw98ii4q0xh8whq4llv5bmfxynzk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tc";
sha256 = "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s";
name = "tc";
};
@@ -57921,7 +58150,7 @@
sha256 = "1krway6iw62dlr4ak3kj9llqh48xjf3d84nlincap7gkrw886l4q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tco";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tco";
sha256 = "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f";
name = "tco";
};
@@ -57942,7 +58171,7 @@
sha256 = "1jyz6z5bk1gvmknphcnvjvbl329zm8m40yl0a1hfaj8fvhwyzdw5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tdd-status-mode-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tdd-status-mode-line";
sha256 = "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq";
name = "tdd-status-mode-line";
};
@@ -57963,7 +58192,7 @@
sha256 = "0b4cwkwkc4i8lc4j30xc9d6xskm3gqrc2dij60ya75h92aj0lj40";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tea-time";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tea-time";
sha256 = "0qypwf0pgsixq6c5avbwp81i3ayy9dd2fngzdvq14pax913q8pg1";
name = "tea-time";
};
@@ -57984,7 +58213,7 @@
sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/telepathy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/telepathy";
sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr";
name = "telepathy";
};
@@ -58005,7 +58234,7 @@
sha256 = "1m5224k1chb788mgj7j6cbma2xh5p7avvb1ax0jdafv5lfgikka4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/telephone-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/telephone-line";
sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3";
name = "telephone-line";
};
@@ -58026,7 +58255,7 @@
sha256 = "17633jachcgnibmvx433ygcfmz3j6hzli5mqbqg83r27chiq5mjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ten-hundred-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ten-hundred-mode";
sha256 = "17v38h33ka70ynq72mvma2chvlnm1k2amyvk62c65iv67rwilky3";
name = "ten-hundred-mode";
};
@@ -58039,15 +58268,15 @@
term-alert = callPackage ({ alert, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, term-cmd }:
melpaBuild {
pname = "term-alert";
- version = "20160507.256";
+ version = "20160517.648";
src = fetchFromGitHub {
owner = "CallumCameron";
repo = "term-alert";
- rev = "38f1efca3cc323f9481192abdabbadcc1aede4d1";
- sha256 = "1xy4qw31wl1510d3d0z5gc0bn95lx2zqm13b38srs61gip5wp7bc";
+ rev = "3e8b39ed4d960933ffdf0308f9bf0d5ce63648e9";
+ sha256 = "195jghl1c8ncl15nix275r4x61zlii90pnwgx4m9q2bnbwsz3ycm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/term-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term-alert";
sha256 = "02qvfhklysfk1fd4ibdngf4crp9k5ab11zgg90hi1sp429a53f3m";
name = "term-alert";
};
@@ -58060,15 +58289,15 @@
term-cmd = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "term-cmd";
- version = "20160506.1212";
+ version = "20160517.645";
src = fetchFromGitHub {
owner = "CallumCameron";
repo = "term-cmd";
- rev = "b6bb69ccdfcae8b40324a0420ff57aa21065df9a";
- sha256 = "1hmxh1cbr5xknvh0xgcx6yx6rskzccmhay99653ai0slzvg8gmhh";
+ rev = "6c9cbc659b70241d2ed1601eea34aeeca0646dac";
+ sha256 = "08qiipjsqc9dfbha6r2yijjbrg2s4i2mkn6zn5616086550v3kpj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/term-cmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term-cmd";
sha256 = "0pbz9fy9rjfpzspwq78ggf1wcvjslwvj8fvc05w4g56ydza0gqi4";
name = "term-cmd";
};
@@ -58089,7 +58318,7 @@
sha256 = "0ca82vj61inn41xzk36a91g73gpg38nya4r9ajc2ldjqa5z1zdj8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/term+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term+";
sha256 = "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8";
name = "term-plus";
};
@@ -58110,7 +58339,7 @@
sha256 = "1dql2w8xkdw52zlrc2p9x391zn8wv4dj8a6293p4s08if7gg260w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/term+key-intercept";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term+key-intercept";
sha256 = "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb";
name = "term-plus-key-intercept";
};
@@ -58131,7 +58360,7 @@
sha256 = "12gfvcf7hl29xhg231cx76q04ll7cvfpvhkb0qs3qn1sqb50fs2q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/term+mux";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term+mux";
sha256 = "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh";
name = "term-plus-mux";
};
@@ -58152,7 +58381,7 @@
sha256 = "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/term-run";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term-run";
sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs";
name = "term-run";
};
@@ -58173,7 +58402,7 @@
sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/termbright-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/termbright-theme";
sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj";
name = "termbright-theme";
};
@@ -58190,11 +58419,11 @@
src = fetchFromGitHub {
owner = "ternjs";
repo = "tern";
- rev = "f9924b36f655a074749d4cd13de3317984ef1a75";
- sha256 = "0z8rvq1aljsjm05wrwi5fgfsxy5nb0nn81mrlw71lmrd7rdj3xw7";
+ rev = "fa172b3e3c010eee46668be266b6173422a93978";
+ sha256 = "1h5wb7nbna3alfkyss03hdpmadqqlhcvmcz4d5cdzblp045lh1yc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tern";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tern";
sha256 = "1am97ssslkyijpvgk4nldi67ws48g1kpj6gisqzajrrlw5q93wvd";
name = "tern";
};
@@ -58211,11 +58440,11 @@
src = fetchFromGitHub {
owner = "ternjs";
repo = "tern";
- rev = "f9924b36f655a074749d4cd13de3317984ef1a75";
- sha256 = "0z8rvq1aljsjm05wrwi5fgfsxy5nb0nn81mrlw71lmrd7rdj3xw7";
+ rev = "fa172b3e3c010eee46668be266b6173422a93978";
+ sha256 = "1h5wb7nbna3alfkyss03hdpmadqqlhcvmcz4d5cdzblp045lh1yc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tern-auto-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tern-auto-complete";
sha256 = "1i99b4awph50ygcqsnppm1h48hbf8cpq1ppd4swakrwgmcy2mn26";
name = "tern-auto-complete";
};
@@ -58236,7 +58465,7 @@
sha256 = "00nv6j18s6983raajfcrxfg5rfz68cgf88zrdp7fhf9l0iicim1q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tern-django";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tern-django";
sha256 = "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0";
name = "tern-django";
};
@@ -58257,7 +58486,7 @@
sha256 = "1k0v56v7mwpb5p228c0g252szpxvpqswrmjfpk75kh32v56wp5xi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/terraform-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/terraform-mode";
sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn";
name = "terraform-mode";
};
@@ -58278,7 +58507,7 @@
sha256 = "1r3fmb8cshgh9pppdvydfcrzlmb9cgz4m04rgv69c5xv8clwcmbr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/test-case-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/test-case-mode";
sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi";
name = "test-case-mode";
};
@@ -58299,7 +58528,7 @@
sha256 = "004rd6jkaklsbgka9mf2zi5qzxsl2shwl1kw0vgb963xkmk9zaz8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/test-kitchen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/test-kitchen";
sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0";
name = "test-kitchen";
};
@@ -58320,7 +58549,7 @@
sha256 = "0i38pzqi2ih3ckfjz323d3bc3p8y9syfjr96im16wxrs1c77h814";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/test-simple";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/test-simple";
sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g";
name = "test-simple";
};
@@ -58341,7 +58570,7 @@
sha256 = "1qcd7vdg63q80zwz8ziaznllq1x7micmljm72s6sh3720rb5aiz2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/textile-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/textile-mode";
sha256 = "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf";
name = "textile-mode";
};
@@ -58362,7 +58591,7 @@
sha256 = "1b7xxz1i84azmbz8rqpxdn18avmnqlj87hfrpbngbf6pj5h9jqjh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/textmate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/textmate";
sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v";
name = "textmate";
};
@@ -58383,7 +58612,7 @@
sha256 = "1bz5ys36wd00clq9w3ahqpras368aj2b9d4bl32qc6dyp8jfknmz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/textmate-to-yas";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/textmate-to-yas";
sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l";
name = "textmate-to-yas";
};
@@ -58401,7 +58630,7 @@
sha256 = "16byw8ix7bjh5ldr8rymisq2bhc5sh7db6rhpf0x28yd6mmzn73v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tfs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tfs";
sha256 = "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0";
name = "tfs";
};
@@ -58422,7 +58651,7 @@
sha256 = "0njmn5dy773v9kmwclw1m79rh52xnxl8mswcaagni2z3dvlvw4m8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/theme-changer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/theme-changer";
sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w";
name = "theme-changer";
};
@@ -58443,7 +58672,7 @@
sha256 = "1kd4mazrcy5xamkvvrwsmcx63g0gp5w4264kxbk3d25bjqcf8rmj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/theme-looper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/theme-looper";
sha256 = "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5";
name = "theme-looper";
};
@@ -58464,7 +58693,7 @@
sha256 = "12kz4alyf3y2i7lkvi26hcxy55v0blsrxv5srx9fv5jhxkdz1vq1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/therapy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/therapy";
sha256 = "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh";
name = "therapy";
};
@@ -58482,7 +58711,7 @@
sha256 = "0zcyasdzb7dvmld8418cy2mg8mpdx01bv44cm0sp5950scrypsaq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/thesaurus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thesaurus";
sha256 = "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h";
name = "thesaurus";
};
@@ -58501,7 +58730,7 @@
sha256 = "1nclwxb63ffbc4wsga9ngkfcxsw88za0c4663fh9x64rl4db4hn8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/thing-cmds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thing-cmds";
sha256 = "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw";
name = "thing-cmds";
};
@@ -58519,7 +58748,7 @@
sha256 = "0ijz0mj095wycpc3as5fiikrwazljk0c04rh089ch0mzc95g3vqq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/thingatpt+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thingatpt+";
sha256 = "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa";
name = "thingatpt-plus";
};
@@ -58532,15 +58761,15 @@
thingopt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "thingopt";
- version = "20150315.823";
+ version = "20160520.1918";
src = fetchFromGitHub {
owner = "m2ym";
repo = "thingopt-el";
- rev = "6a50f23faa764c5f6200c0253c606b0b4e5226f8";
- sha256 = "0imzrb3vqnm36illqnpfc6x7rbq9rrrlpcw9n2yzl4n309mqdwr6";
+ rev = "5679815852652479f3b3c9f3a98affc927384b2c";
+ sha256 = "12zpn0sy2yg37jjjx12h3kln56241b3z09bn5zavmjfdwnr9jd0a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/thingopt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thingopt";
sha256 = "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y";
name = "thingopt";
};
@@ -58561,7 +58790,7 @@
sha256 = "0rjcrvw9v2y10ahycra53bwbccpwqxxwn2c21wjj1kfs0kdwhs9p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/thread-dump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thread-dump";
sha256 = "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2";
name = "thread-dump";
};
@@ -58578,11 +58807,11 @@
src = fetchFromGitHub {
owner = "apache";
repo = "thrift";
- rev = "9549b25c77587b29be4e0b5c258221a4ed85d37a";
- sha256 = "1kgb52n8c136xkianghpcblvc9sqi594vnydk9f084k4hff339a6";
+ rev = "8e2320339fe1c6cc2b5ea75c6a5940bda1e92fc9";
+ sha256 = "0bl3iaxiy2ijp82q09hsd6jhhlipv9x3km2qxsyz1x9m4zsl676f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/thrift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thrift";
sha256 = "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9";
name = "thrift";
};
@@ -58601,7 +58830,7 @@
sha256 = "0nyp1sp55l3mlhlxw8kyp6hxan3rbgwc4fmfs174n6hlj3zr5vg8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/thumb-frm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thumb-frm";
sha256 = "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c";
name = "thumb-frm";
};
@@ -58622,7 +58851,7 @@
sha256 = "0nypcryqwwsdawqxi7hgsv6fp28zqslj9phw7zscqqxzc3svaywn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/thumb-through";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thumb-through";
sha256 = "1544xw9lar199idk135z4d6i3n9w0v7g2bq7fnz0rjjw10kxvpcx";
name = "thumb-through";
};
@@ -58639,11 +58868,11 @@
src = fetchFromGitHub {
owner = "ananthakumaran";
repo = "tide";
- rev = "9fc975eb687a9a235d69e26c91a77850c58c77f0";
- sha256 = "0zfwr370sfpcnpx0l3qgf2lm5hl1f9gv8cxx54brabfxpgrvwrdj";
+ rev = "29f7cded26d277da9af489f067072f2f3ba9a23f";
+ sha256 = "1d6pqams8dwx0rhfd6llwjchxb5w9fq5zdaiggkzvcd9k3sw6c4l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tide";
sha256 = "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1";
name = "tide";
};
@@ -58661,7 +58890,7 @@
sha256 = "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tidy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tidy";
sha256 = "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m";
name = "tidy";
};
@@ -58682,7 +58911,7 @@
sha256 = "1iz3723sirazlrr9d5rpk4v0s1s9ajbx5j4i8jf1p54z8h7asjw5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/time-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/time-ext";
sha256 = "133vd63p8258wam4fvblhfg37w2zqy4a5c5c5nafwx0cy90sngwz";
name = "time-ext";
};
@@ -58692,6 +58921,27 @@
license = lib.licenses.free;
};
}) {};
+ timecop = callPackage ({ cl-lib ? null, datetime-format, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "timecop";
+ version = "20160520.652";
+ src = fetchFromGitHub {
+ owner = "zonuexe";
+ repo = "emacs-datetime";
+ rev = "3a1871613facc928ff250ed8f12fbc7073e46b75";
+ sha256 = "0pabb260d3vcr57jqqxqk90vp2qnm63sky37rgvhv508zix2hbva";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/timecop";
+ sha256 = "0kcjx3silk9vwysaawhcvpb7c82dzb2y7ns8x50jznylqg8c4zh5";
+ name = "timecop";
+ };
+ packageRequires = [ cl-lib datetime-format ];
+ meta = {
+ homepage = "https://melpa.org/#/timecop";
+ license = lib.licenses.free;
+ };
+ }) {};
timer-revert = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "timer-revert";
@@ -58703,7 +58953,7 @@
sha256 = "1hidvbd1xzz9m0fc55wac1mpv4dpcf8qnw1myh3646bfvivj9c2q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/timer-revert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/timer-revert";
sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy";
name = "timer-revert";
};
@@ -58724,7 +58974,7 @@
sha256 = "1ghvnmswq6rg17pjnys58mak6crfcvv1vb6q7spagq143y2ar24z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/timesheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/timesheet";
sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506";
name = "timesheet";
};
@@ -58737,15 +58987,15 @@
timp = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, fifo-class, lib, melpaBuild, signal }:
melpaBuild {
pname = "timp";
- version = "20160514.625";
+ version = "20160521.453";
src = fetchFromGitHub {
owner = "mola-T";
repo = "timp";
- rev = "6da0ecc12d3d1b99f7b39f860d5c5ab54f26a3f0";
- sha256 = "1zj67j1nwhj809xp6642rjgvwm6s7jvkgdlyzcgds50lj520qyly";
+ rev = "a90ce9f90f853ca8c8981315d901c4c66c8e7b23";
+ sha256 = "0yinzv5v82rx1jx10gdcx93rgqz5q1pz0jyghm9xg5d9j5hv317b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/timp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/timp";
sha256 = "1vh2wsgd8bclkbzn59zqbzzfzs0xx6x82004l7vnma8z97swvhgs";
name = "timp";
};
@@ -58766,7 +59016,7 @@
sha256 = "0rf177kr0qfhg8g5xrpi405dhp2va1yk170zm3f8hghi2575ciy2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tinkerer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tinkerer";
sha256 = "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd";
name = "tinkerer";
};
@@ -58787,7 +59037,7 @@
sha256 = "0mmz8b0fzffybc2jws9fif982zfx0l6kn1l4qxc67mf9nafbdca3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tiny";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tiny";
sha256 = "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy";
name = "tiny";
};
@@ -58808,7 +59058,7 @@
sha256 = "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tinysegmenter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tinysegmenter";
sha256 = "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6";
name = "tinysegmenter";
};
@@ -58829,7 +59079,7 @@
sha256 = "1zvykanmn065rlk9hlv85vary1l6y52bsnaa51fkpckpr6dicmcl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tj-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tj-mode";
sha256 = "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf";
name = "tj-mode";
};
@@ -58850,7 +59100,7 @@
sha256 = "0z94m84q7j35dffpnbz1yh6axd6c787hj358bkq2qk0irsvh5n79";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tldr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tldr";
sha256 = "1f1xsmkbf4j1c876qqr9h8fgx3zxjgdfzvzf6capxlx2svhxzvc9";
name = "tldr";
};
@@ -58871,7 +59121,7 @@
sha256 = "1ypbv9jbdnwv3xjsfzq8i3nmqdvziynv2rqsd6fm2r1xw0q06xd6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tmmofl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tmmofl";
sha256 = "1idflc5ky8hwdkps1rihdqy3i6cmhrh83sxz3kgf2kqjh365yr8b";
name = "tmmofl";
};
@@ -58892,7 +59142,7 @@
sha256 = "084nqdrpzgg1qpbqgvi893iglmz9dk3r0vwqxjkyxa3z3a0f5v17";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/toc-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toc-org";
sha256 = "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs";
name = "toc-org";
};
@@ -58910,7 +59160,7 @@
sha256 = "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/todochiku";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/todochiku";
sha256 = "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96";
name = "todochiku";
};
@@ -58931,7 +59181,7 @@
sha256 = "0ms4mapjg9mbpmcmpn68r0mhwaibwfr4v25sin74b2281h4q7gal";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/todotxt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/todotxt";
sha256 = "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr";
name = "todotxt";
};
@@ -58952,7 +59202,7 @@
sha256 = "1k9ywi7cdgb6i600wr04r2l00423l6vr7k93qa7i7svv856nbbc7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/todotxt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/todotxt-mode";
sha256 = "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k";
name = "todotxt-mode";
};
@@ -58973,7 +59223,7 @@
sha256 = "1falf86mm2206szkkwiwa5yk65y12asv84j1pdbcy6n8y6hha796";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/togetherly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/togetherly";
sha256 = "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f";
name = "togetherly";
};
@@ -58994,7 +59244,7 @@
sha256 = "184ghdi2m4hagddi71c1pmc408fad1cmw0q2n4k737w6j8537hph";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/toggle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toggle";
sha256 = "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq";
name = "toggle";
};
@@ -59015,7 +59265,7 @@
sha256 = "1w1lmqgzn9bp59h9y9plv80y53k6qhjgfmnnlqyyqfl45z3si7kg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/toggle-quotes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toggle-quotes";
sha256 = "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp";
name = "toggle-quotes";
};
@@ -59036,7 +59286,7 @@
sha256 = "0sgaslqxj806byidh06h5pqmqz8jzjfz9ky8jvkif3cq3a479jby";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/toggle-test";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toggle-test";
sha256 = "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1";
name = "toggle-test";
};
@@ -59057,7 +59307,7 @@
sha256 = "0f86aij1glmvgpbhmfpi441zy0r37zblb0q3ycgq0dp92x8yny5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/toggle-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toggle-window";
sha256 = "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g";
name = "toggle-window";
};
@@ -59078,7 +59328,7 @@
sha256 = "0a3zvhy3jxs88zk4nhdc7lzybz4qji9baw5gm88sxlgcjgn7ip6n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tomatinho";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tomatinho";
sha256 = "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz";
name = "tomatinho";
};
@@ -59099,7 +59349,7 @@
sha256 = "1b3bkla6i5nvanifxchph6ab6ldrskdf240hy4d27dkmmnr3pban";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/toml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toml";
sha256 = "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b";
name = "toml";
};
@@ -59120,7 +59370,7 @@
sha256 = "1w9vkh6c4g80zykcy77k3r0bdc99mq8yh58bqkyd6gsr7pnp16gj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/toml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toml-mode";
sha256 = "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l";
name = "toml-mode";
};
@@ -59141,7 +59391,7 @@
sha256 = "0pwbd5gzmpr6js20438870w605671930291070nhmhswvxfcdvay";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tommyh-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tommyh-theme";
sha256 = "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4";
name = "tommyh-theme";
};
@@ -59159,7 +59409,7 @@
sha256 = "1sqflxj3hzxdlwn5qmpqm4dwik5vsyp7lypkvshcghdplxymb38a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tool-bar+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tool-bar+";
sha256 = "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d";
name = "tool-bar-plus";
};
@@ -59177,7 +59427,7 @@
sha256 = "0a5rl1cgznycqwx4r48mh69lgm8ixbnlfzbqdyvclgm8fldbannn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/top-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/top-mode";
sha256 = "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx";
name = "top-mode";
};
@@ -59198,7 +59448,7 @@
sha256 = "0wv49gn1daylnjmnallpqsqy7630ynrp45agpiwi6kwyyqk1kdvv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tornado-template-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tornado-template-mode";
sha256 = "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h";
name = "tornado-template-mode";
};
@@ -59219,7 +59469,7 @@
sha256 = "188cdgic25wrb4jdgdcj070a0pxsh3m0rd9d2r6i1s1n1nalrs6g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/totd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/totd";
sha256 = "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0";
name = "totd";
};
@@ -59240,7 +59490,7 @@
sha256 = "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tox";
sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl";
name = "tox";
};
@@ -59260,7 +59510,7 @@
sha256 = "1pnsky541m8kzcv81w98jkv0hgajh04hxqlmgddc1y0wbvi849j0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/toxi-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toxi-theme";
sha256 = "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd";
name = "toxi-theme";
};
@@ -59281,7 +59531,7 @@
sha256 = "1yh9dxf986dl74sgn71qxwxsg67lr0yg1z7b9h2254lmxq0mgni6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/traad";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/traad";
sha256 = "08gxh5c01xfbbj9g4992jah494rw3d3bbs8j79r3mpqxllkp2znf";
name = "traad";
};
@@ -59304,11 +59554,11 @@
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "circe";
- rev = "2e4cc7d6a6c46702d13bb00ff897d7daece92c4f";
- sha256 = "1jggh5ca2azzwldfxp3rwyd0qc777afgghzjqk2ajv1q06yskkqa";
+ rev = "ea13b639568a6486aa77bb23e5db8318d9698bb1";
+ sha256 = "0xfip9hdvkyx18sxz40jkfrvsw6zrw5yz6d34sg4fg0ni0f3bsqb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tracking";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tracking";
sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z";
name = "tracking";
};
@@ -59329,7 +59579,7 @@
sha256 = "1m25l1lyff4h0h4vjrcsziwbf8svqg2llvvgl8i2b4jbh7k7pk5f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tracwiki-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tracwiki-mode";
sha256 = "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0";
name = "tracwiki-mode";
};
@@ -59350,7 +59600,7 @@
sha256 = "0llzfn9y3yyz2wwdbv8whx8vy2lazbnww6hjj0r621gkfxjml7wd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tramp-hdfs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tramp-hdfs";
sha256 = "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b";
name = "tramp-hdfs";
};
@@ -59371,7 +59621,7 @@
sha256 = "0cgx6h9a49qj7x6bgsnsa20hi1yj5k080x4x0jpn6l9bj5nqiaip";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tramp-term";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tramp-term";
sha256 = "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy";
name = "tramp-term";
};
@@ -59384,15 +59634,15 @@
transmission = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }:
melpaBuild {
pname = "transmission";
- version = "20160516.1319";
+ version = "20160517.1015";
src = fetchFromGitHub {
owner = "holomorph";
repo = "transmission";
- rev = "20c645d0f37236e8831a41fcaa3f038812bb0b6c";
- sha256 = "0d20ms66hzag62blm2cd1hw9jndggs8wywzrilyy86mrdwjlanyn";
+ rev = "83f682ff7cd6edae895026d813daf8655a2209be";
+ sha256 = "14qsx615xjdg7rhvdvjla4fh4w0gd43wr6hrbfjf8rd1jix68hbd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/transmission";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/transmission";
sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9";
name = "transmission";
};
@@ -59402,27 +59652,6 @@
license = lib.licenses.free;
};
}) {};
- transpose-frame = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "transpose-frame";
- version = "20140827.1506";
- src = fetchFromGitHub {
- owner = "pyluyten";
- repo = "emacs-nu";
- rev = "e2b509a9b631e98f6feabdc783c01a6b57d05fc2";
- sha256 = "0nbmpnljl0wdkwmxzg6lqd3mand9w043qmwp727hb84gxy0j4dib";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/transpose-frame";
- sha256 = "14zb9xvv4jcawihs6qh36n3xdh45il5ry8pq6hcrk9qsa0icvh28";
- 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";
@@ -59434,7 +59663,7 @@
sha256 = "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/transpose-mark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/transpose-mark";
sha256 = "1q1icp1szm1bxz9ywwyrfbsm1wmx0h4cvzywrh9q0fj1fq387qvv";
name = "transpose-mark";
};
@@ -59455,7 +59684,7 @@
sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/travis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/travis";
sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix";
name = "travis";
};
@@ -59473,7 +59702,7 @@
sha256 = "0hffnzvzbvmzf23z9z7n7y53l5i7kza9hgfl39qqcnw4njg48llx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tree-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tree-mode";
sha256 = "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24";
name = "tree-mode";
};
@@ -59494,7 +59723,7 @@
sha256 = "08484fhc69rk16g52f9bzc1kzpif61ddfchxjbj1qqqammbx11ym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/trident-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/trident-mode";
sha256 = "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd";
name = "trident-mode";
};
@@ -59515,7 +59744,7 @@
sha256 = "06wm3qwxjhzwjn9nnrqm5wwj1z5gfghg9d2qbg8w3zyqzva5dmvm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tronesque-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tronesque-theme";
sha256 = "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j";
name = "tronesque-theme";
};
@@ -59536,7 +59765,7 @@
sha256 = "1mm6rrprsmx4hc622qmllm7c81yhwbqmdr0n6020krq92zmilmlm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/truthy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/truthy";
sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg";
name = "truthy";
};
@@ -59557,7 +59786,7 @@
sha256 = "0gvwavsq9s4a75qz7xq9wl219fnzz085zjqpnrxxgmaqbi9m8l7a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/try";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/try";
sha256 = "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n";
name = "try";
};
@@ -59578,7 +59807,7 @@
sha256 = "1bk5v9dffs65qsay0dp336s2ly065nd0cg572zz058ikwxd44zd3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tss";
sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm";
name = "tss";
};
@@ -59599,7 +59828,7 @@
sha256 = "1gvqxk67cf779szyg907815i4m9jzrpmn5cnsmnwd62k3r3z4nxm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tt-mode";
sha256 = "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf";
name = "tt-mode";
};
@@ -59618,7 +59847,7 @@
sha256 = "14kfnpp7fcd84ly9ng7hm5hzx2sdpn2x6d8frwbkdxfb0x81kmmf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ttl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ttl-mode";
sha256 = "1nnn2y0n9rj3a8r85y2vp6qja5rm4drcbnj9q793zzqfjl9akqd4";
name = "ttl-mode";
};
@@ -59639,7 +59868,7 @@
sha256 = "0a8f9p1im6k7mnp2bq733rfx2x246gfwpvi5ccym1y5lakx37fil";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ttrss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ttrss";
sha256 = "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z";
name = "ttrss";
};
@@ -59660,7 +59889,7 @@
sha256 = "0hscvsdp25aw7h4x8kq1ws72zx08bs2kw1s6axsi5576cl4d5yvg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tuareg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tuareg";
sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q";
name = "tuareg";
};
@@ -59681,7 +59910,7 @@
sha256 = "1xdkgvr1pnlg3nrjmma4ra80ysr8xbslvczg7cq1x1mqw6gn9xq5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tumble";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tumble";
sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9";
name = "tumble";
};
@@ -59702,7 +59931,7 @@
sha256 = "1g7y7czan7mcs5lwc5r6cllgksrj3b9lpn1bj7khwkd1ll391jc2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tumblesocks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tumblesocks";
sha256 = "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9";
name = "tumblesocks";
};
@@ -59723,7 +59952,7 @@
sha256 = "0y1b9zvwbw3vp41siyzj04bis939fgz3j27hc5ljjzy92kd39nzm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tup-mode";
sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l";
name = "tup-mode";
};
@@ -59744,7 +59973,7 @@
sha256 = "1jb6par116mm5l4z27wk6m2sfh6j9nmgrya352sdagcvjbcpnzcl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/turkish";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/turkish";
sha256 = "0pdapxjbpj3lg3hxvwjn9v51jqaiz7a8053z2bmk4485vzs34532";
name = "turkish";
};
@@ -59765,7 +59994,7 @@
sha256 = "0khl4q22x6vdn87xdqqg5f535d4dqpnfbhk6qhlh187p1w7qaiq4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/turnip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/turnip";
sha256 = "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps";
name = "turnip";
};
@@ -59786,7 +60015,7 @@
sha256 = "0wvmih2y3hy7casxx2y1w8csmzfnfgbb5ivpggr94sc86p6bg8sa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/twig-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twig-mode";
sha256 = "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n";
name = "twig-mode";
};
@@ -59807,7 +60036,7 @@
sha256 = "1bj2mpiklqcangjzbnz5wz7klsfvp0x397lidvf42awn7s2aax0n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/twilight-anti-bright-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twilight-anti-bright-theme";
sha256 = "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9";
name = "twilight-anti-bright-theme";
};
@@ -59828,7 +60057,7 @@
sha256 = "1awqc4rvg8693myynb1d4y4dfdaxkd5blnixxs3mdv81l07zyn8c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/twilight-bright-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twilight-bright-theme";
sha256 = "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d";
name = "twilight-bright-theme";
};
@@ -59849,7 +60078,7 @@
sha256 = "0d7vd1h0rwwgrh7f9kmdgy2ni0p20da9c8ylwlg33nsb26345wfs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/twilight-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twilight-theme";
sha256 = "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7";
name = "twilight-theme";
};
@@ -59870,7 +60099,7 @@
sha256 = "1dk2s16p33fjx29la1zg35ax1mmwmrl33ww9qmg88ssxfcdj2jr0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/twittering-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twittering-mode";
sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1";
name = "twittering-mode";
};
@@ -59891,7 +60120,7 @@
sha256 = "1i826xq77nh4s7qlj63r2iznbn319l1l3fzpbjb2nj0m00bwvxl6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/typed-clojure-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typed-clojure-mode";
sha256 = "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3";
name = "typed-clojure-mode";
};
@@ -59912,7 +60141,7 @@
sha256 = "17q7f433x8i484scwdbfsd0vh8lshzkwjlarhqw6ic53mzakgjiq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/typescript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typescript-mode";
sha256 = "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha";
name = "typescript-mode";
};
@@ -59930,7 +60159,7 @@
sha256 = "0mgvpdp3vlvjy32d163h2mzsf9j2ij2f542sdr3rsy8l80n6nx31";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/typing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typing";
sha256 = "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3";
name = "typing";
};
@@ -59951,7 +60180,7 @@
sha256 = "0dkrnn9fzqv793wvd3nc7dbslayj37q5na1w1g63g32z2s8aq09j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/typing-game";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typing-game";
sha256 = "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2";
name = "typing-game";
};
@@ -59972,7 +60201,7 @@
sha256 = "1sh7vv3x7aalbn6jhml36y35bm9b1wnyzf03kwap3ibl2hmfwz1w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/typit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typit";
sha256 = "05m7ymcq6fgbhh93ninrf3qi7csdnf2ahhf01mkm8gxxyaqq6m4n";
name = "typit";
};
@@ -59993,7 +60222,7 @@
sha256 = "0bn1bvs334wb64bli9h613zf1vzjyi0pz8bgyq1wy12qmbwwmfwk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/typo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typo";
sha256 = "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx";
name = "typo";
};
@@ -60014,7 +60243,7 @@
sha256 = "1v8d1pc0vjc7wz0prr5w5vp2qb19f3gcyl6jx5130plajbvv23rc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ubuntu-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ubuntu-theme";
sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2";
name = "ubuntu-theme";
};
@@ -60032,7 +60261,7 @@
sha256 = "0qy211rxrmzhwl9qfrcmfnwayysvb5rghjginbvx3wf2s6hrbpya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ucs-cmds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ucs-cmds";
sha256 = "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1";
name = "ucs-cmds";
};
@@ -60053,7 +60282,7 @@
sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ucs-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ucs-utils";
sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2";
name = "ucs-utils";
};
@@ -60074,7 +60303,7 @@
sha256 = "13zznakgqyy3hw385f6w40rz4agxz6fmgaxzgmrz3kjpn19bc2fa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/uimage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/uimage";
sha256 = "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd";
name = "uimage";
};
@@ -60087,15 +60316,15 @@
ujelly-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ujelly-theme";
- version = "20160501.1359";
+ version = "20160521.1401";
src = fetchFromGitHub {
owner = "marktran";
repo = "color-theme-ujelly";
- rev = "e640bfa845cdbf1cc72a20ba4ce3ffbd529dcb71";
- sha256 = "1d842mpg1rnxg88gzpjkf4vakn9drjk4l094dq375hrminvnlygz";
+ rev = "43b2e0e9bd8419d00f2500b421efb218fc2e4e36";
+ sha256 = "0zwayin4fjswl1xmbsgvkkssnx97c6h230m5a7hl4a7llx9l5c6s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ujelly-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ujelly-theme";
sha256 = "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw";
name = "ujelly-theme";
};
@@ -60116,7 +60345,7 @@
sha256 = "033v4ck979lhkpwblci5clacfc1xnkq03p5d1m566wff8dp5flwz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ukrainian-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ukrainian-holidays";
sha256 = "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf";
name = "ukrainian-holidays";
};
@@ -60134,7 +60363,7 @@
sha256 = "0awmzz9cfr17ggpzsgxqqhz5946l7705vvkfaiz7qx9wg0pbch18";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unbound";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unbound";
sha256 = "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x";
name = "unbound";
};
@@ -60155,7 +60384,7 @@
sha256 = "0366h4jfi0c7yda9wcrz4zxgf2qqdd08b8z2dr8c1rkvkdd67iam";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/uncrustify-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/uncrustify-mode";
sha256 = "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd";
name = "uncrustify-mode";
};
@@ -60176,7 +60405,7 @@
sha256 = "1860hnsbvndaahqs233adk8piz7nyj8v3b0gziv1lrnq864hrq5i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/undercover";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/undercover";
sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf";
name = "undercover";
};
@@ -60197,7 +60426,7 @@
sha256 = "1ypxpv5vw2ls757iwrq3zld6k0s29q3kg3spcsl5ks4aqpnkxpva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/underwater-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/underwater-theme";
sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr";
name = "underwater-theme";
};
@@ -60217,7 +60446,7 @@
sha256 = "1qla7njkb7gx5aj87i8x6ni8jfk1k78ivwfiiws3gpbnyiydpx8y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/undo-tree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/undo-tree";
sha256 = "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr";
name = "undo-tree";
};
@@ -60238,7 +60467,7 @@
sha256 = "1c0daw246ky7b1x5b8h55x79pl1pjqk1k348l487bdd8zdj4w9wx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/undohist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/undohist";
sha256 = "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn";
name = "undohist";
};
@@ -60259,7 +60488,7 @@
sha256 = "0fd9k5m1yw2274m2w9rkrg7vqagzf0rjbybglqi7d200b3hmjin3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unfill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unfill";
sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv";
name = "unfill";
};
@@ -60280,7 +60509,7 @@
sha256 = "015gjf8chd6h9azhyarmskk41cm0cmg981jif7q81hakl9av6rhh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unicode-emoticons";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-emoticons";
sha256 = "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn";
name = "unicode-emoticons";
};
@@ -60301,7 +60530,7 @@
sha256 = "0936dqxyp72if9wvn2dcci670yp1gqrmpnll9xq00skp85yq9zs5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unicode-enbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-enbox";
sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv";
name = "unicode-enbox";
};
@@ -60328,7 +60557,7 @@
sha256 = "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unicode-fonts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-fonts";
sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3";
name = "unicode-fonts";
};
@@ -60354,7 +60583,7 @@
sha256 = "0kzcg1wxi1z424jdn7pibk9zyfyi85kligav08sl1c2hdldzya4l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unicode-input";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-input";
sha256 = "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8";
name = "unicode-input";
};
@@ -60375,7 +60604,7 @@
sha256 = "16jgm70ldsngxldiagjkw3ragypalpiidnf82g5hss9ciybkd3j4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unicode-progress-reporter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-progress-reporter";
sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7";
name = "unicode-progress-reporter";
};
@@ -60396,7 +60625,7 @@
sha256 = "0ny260mr1h810fvqsfj2hpd3zql4g309m60qj4vk6kmd83p5b60f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unicode-troll-stopper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-troll-stopper";
sha256 = "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5";
name = "unicode-troll-stopper";
};
@@ -60417,7 +60646,7 @@
sha256 = "1ayb15nd5vqr0xaghrnp55kqw7bblrjipmfrag6bqpn7jk9bvbdz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unicode-whitespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-whitespace";
sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy";
name = "unicode-whitespace";
};
@@ -60438,7 +60667,7 @@
sha256 = "1jvr1k8zd40m1rvwmxzidz1dvr4j8cbh78nqgc3vfb410fj619gw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unidecode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unidecode";
sha256 = "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1";
name = "unidecode";
};
@@ -60459,7 +60688,7 @@
sha256 = "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unify-opening";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unify-opening";
sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8";
name = "unify-opening";
};
@@ -60480,7 +60709,7 @@
sha256 = "1wl9rzys1zr2c41h5i57y6hxsavix1b26f453l2izmb6r0b1dvh0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unipoint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unipoint";
sha256 = "0fm7anwcmga9adyfwlri7x014rpvfl1r6nccyi6lrpx126wy008s";
name = "unipoint";
};
@@ -60501,7 +60730,7 @@
sha256 = "1snbvhvx2csw1f314dbdwny8yvfq834plpkzx0vl4k3wddmr3a66";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unison-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unison-mode";
sha256 = "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl";
name = "unison-mode";
};
@@ -60522,7 +60751,7 @@
sha256 = "0bhdqpxq6cly4b6v4ya1ksw0yfdb9g2f2ifbjn4gfcq6j4zszbdm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unkillable-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unkillable-scratch";
sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7";
name = "unkillable-scratch";
};
@@ -60543,7 +60772,7 @@
sha256 = "179hi6hsp2naczlcym3qxx9wbqx96bkkzvqygf3iffa0rmik4j7h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/url-shortener";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/url-shortener";
sha256 = "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys";
name = "url-shortener";
};
@@ -60564,7 +60793,7 @@
sha256 = "0xwr0v4f64d7hi5ldig4r5yjn8h3f8by49g5820187lsp7ng2nw4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/urlenc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/urlenc";
sha256 = "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh";
name = "urlenc";
};
@@ -60582,7 +60811,7 @@
sha256 = "00g1zj5fjykdi6gh2wkswpwx132xa6jmwfnrgfg5r96zwb8pib4i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/usage-memo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/usage-memo";
sha256 = "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95";
name = "usage-memo";
};
@@ -60603,7 +60832,7 @@
sha256 = "19vc1hblbqlns2c28aqwjpmj8k35ih7akqi04wrqv1b6pljfy3jg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/use-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/use-package";
sha256 = "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8";
name = "use-package";
};
@@ -60624,7 +60853,7 @@
sha256 = "06jsa0scvf12kznm0ngv76y726rzh93prc7ymw3fvknvg0xivb8v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/use-package-chords";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/use-package-chords";
sha256 = "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass";
name = "use-package-chords";
};
@@ -60645,7 +60874,7 @@
sha256 = "1vacc4l5jsyxdfcinxja3r1qyc4cskmd9xvxp6zxkjfw4x6nr71c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/utop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/utop";
sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7";
name = "utop";
};
@@ -60666,7 +60895,7 @@
sha256 = "0r74gw8gcbrr62rvj4anz0c3n6kwi1xpb42d3pkzlh4igblhi5zj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/uuid";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/uuid";
sha256 = "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw";
name = "uuid";
};
@@ -60687,7 +60916,7 @@
sha256 = "19bf6vpc2b9hfjkjanji96fflvk1lbillasnpwcb6zzyq0cs47bw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/uuidgen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/uuidgen";
sha256 = "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48";
name = "uuidgen";
};
@@ -60708,7 +60937,7 @@
sha256 = "0fx18m688wfflbzwv8h3051439fwql69v1ip5q6xn958rdq4pi3x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/uzumaki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/uzumaki";
sha256 = "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q";
name = "uzumaki";
};
@@ -60729,7 +60958,7 @@
sha256 = "1661fwfx2gpxjriy3ngi9raz8c2kkk3rgg51irdi591jr2zqmw6s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vagrant";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vagrant";
sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf";
name = "vagrant";
};
@@ -60750,7 +60979,7 @@
sha256 = "138gw90wa2qyzyicig3cwhpb1xc5bh9g0vb87y91afjlykhzr6a5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vagrant-tramp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vagrant-tramp";
sha256 = "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5";
name = "vagrant-tramp";
};
@@ -60771,7 +61000,7 @@
sha256 = "10vs4d8csww781j1ps3f6dczy5zzza36z7a8zqk40fg4x57ikw44";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vala-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vala-mode";
sha256 = "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p";
name = "vala-mode";
};
@@ -60792,7 +61021,7 @@
sha256 = "0iscaz8lm4fk6w13f68ysqk8ppng2wj9fkkkq1rfqz77ws66f8nq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vala-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vala-snippets";
sha256 = "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy";
name = "vala-snippets";
};
@@ -60813,7 +61042,7 @@
sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vbasense";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vbasense";
sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n";
name = "vbasense";
};
@@ -60834,7 +61063,7 @@
sha256 = "09h7yg44hbxv3pyazfypkvk8j3drlwz0zn8x1wj0kbsviksl1wxk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vc-auto-commit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vc-auto-commit";
sha256 = "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk";
name = "vc-auto-commit";
};
@@ -60855,7 +61084,7 @@
sha256 = "0icc4kqfpimxlja4jgcy9gjj4myc8y84vbvacyf79lxixygpaxi1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vc-check-status";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vc-check-status";
sha256 = "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi";
name = "vc-check-status";
};
@@ -60876,7 +61105,7 @@
sha256 = "1zpvinbc3nrnjm931fgzrlkl31xcsg9ikh041s1fkfjkhfq0h82h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vc-darcs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vc-darcs";
sha256 = "1xskl9wjxkbdpi0fm769ymbvya70vssi944x5252w2d3layibm6m";
name = "vc-darcs";
};
@@ -60897,7 +61126,7 @@
sha256 = "0whzfzg0m03wbmqsxml8hislnbfvawcniq83hj66lbrnbivxsqj4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vc-osc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vc-osc";
sha256 = "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz";
name = "vc-osc";
};
@@ -60918,7 +61147,7 @@
sha256 = "1jfis26lmghl30ydzq1xdkrrj3d85q7g44ns6kmfg119ccapllbj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vcl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vcl-mode";
sha256 = "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5";
name = "vcl-mode";
};
@@ -60939,7 +61168,7 @@
sha256 = "0fzz26c1pdaz3i58ndhzd2520mhny487daqs21yajxi9x2m00zrl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vcomp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vcomp";
sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0";
name = "vcomp";
};
@@ -60960,7 +61189,7 @@
sha256 = "1lh8nv0ayl9ipl2aqc8npzz84g5q7w6v60l14v61mmk34fc23lnc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vdirel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vdirel";
sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj";
name = "vdirel";
};
@@ -60981,7 +61210,7 @@
sha256 = "1wa03gb98x650q798aqshm43kh6gfxaz1rlyrmvka5dxgf48whmf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vector-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vector-utils";
sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n";
name = "vector-utils";
};
@@ -61002,7 +61231,7 @@
sha256 = "1y6vjw5qzaxr37spg5d4nxffmhiipzsrd7mvh8bs3jcfrsg3080n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/verify-url";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/verify-url";
sha256 = "1gd83rb1q0kywchd0345p5axqj1sv4f5kadympx5pbp4n5p1dqb2";
name = "verify-url";
};
@@ -61023,7 +61252,7 @@
sha256 = "1mp71axs3vdrdwlhgywfldvnr6a1g2qbxiywmpfmcv59n5n58p1j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vertica";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vertica";
sha256 = "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng";
name = "vertica";
};
@@ -61044,7 +61273,7 @@
sha256 = "044vy6yi9yfk3h2gd3a718w50py02h1b5fr0i7a08rjlq4l3srka";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vertigo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vertigo";
sha256 = "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83";
name = "vertigo";
};
@@ -61065,7 +61294,7 @@
sha256 = "185a7962h94122q783ih7s8r28xifm0bcrqvkd0g4p64mijlbh3d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vhdl-capf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vhdl-capf";
sha256 = "06dkw5ra9wnscpgrnx851vyfgr5797xd60qdimsr2v1bqd8si9km";
name = "vhdl-capf";
};
@@ -61086,7 +61315,7 @@
sha256 = "1syfmx7gzphy08h2py3789xwkqwgirfg189h8s6400q9sznzm6fc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vhdl-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vhdl-tools";
sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw";
name = "vhdl-tools";
};
@@ -61107,7 +61336,7 @@
sha256 = "0wdm8k49zl6i6wnh7vjkswdh5m9lix56jv37xvc90inipwgs402z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vi-tilde-fringe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vi-tilde-fringe";
sha256 = "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp";
name = "vi-tilde-fringe";
};
@@ -61128,7 +61357,7 @@
sha256 = "1ch8lr514f9lp3wdhy1z4dqcbnqkbqkgflnchwd82r5ylzbdxy2a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/viewer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/viewer";
sha256 = "10rw3b8akd2fl8gsqf1m24zi6q4n0z68lvvv1vx9c9b7ghqcqxw1";
name = "viewer";
};
@@ -61141,15 +61370,15 @@
viking-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "viking-mode";
- version = "20160516.317";
+ version = "20160520.739";
src = fetchFromGitHub {
owner = "tlinden";
repo = "viking-mode";
- rev = "e741f8e34aed456bb916c16fe4ba98c633bf060f";
- sha256 = "1xl94z4mgjaw61nz3bnr6b1vxm6b5s066lz8dbrvzlg1pkzf4gsk";
+ rev = "8a894f92dd4c838b0b46d5ecacb6aaa06a3cd349";
+ sha256 = "1ysapz1chja9f1fjppglp11z2kxxjx92idcgva6rk8vkp1x23i33";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/viking-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/viking-mode";
sha256 = "13g6gw8yc4pgi1zjig6nlpnsh52dzmprisq95r6lx6hk0xbzrx16";
name = "viking-mode";
};
@@ -61170,7 +61399,7 @@
sha256 = "11qh6fpf6269j9syf06v5wnkgi65wnn7dbyjwb6yz72rvq7ihhcz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vim-empty-lines-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vim-empty-lines-mode";
sha256 = "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb";
name = "vim-empty-lines-mode";
};
@@ -61191,7 +61420,7 @@
sha256 = "13g2hin100c8h5bd7hzhyqzj02ab9c35giyv963l7y044v7sbwig";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vim-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vim-region";
sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx";
name = "vim-region";
};
@@ -61212,7 +61441,7 @@
sha256 = "1i407ilhmk2qrk66ygbvizq964bdk502x7lvrzs4wxwfr5y8ciyj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vimgolf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vimgolf";
sha256 = "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn";
name = "vimgolf";
};
@@ -61233,7 +61462,7 @@
sha256 = "01wxjvbq3i1ji9fpff7fbk20pzmr52z6fycqfi7malgwq05is1bm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vimish-fold";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vimish-fold";
sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3";
name = "vimish-fold";
};
@@ -61254,7 +61483,7 @@
sha256 = "000fs2h5zcv8aq8an16r6zwwf9x1qnfs7xxn39iahiwfzvnljqp0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vimrc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vimrc-mode";
sha256 = "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp";
name = "vimrc-mode";
};
@@ -61275,7 +61504,7 @@
sha256 = "0rd7hyv66278dj32yva5q9z1749y84c6fwl2iqrns512j1l4kl8q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/virtualenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/virtualenv";
sha256 = "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl";
name = "virtualenv";
};
@@ -61296,7 +61525,7 @@
sha256 = "05rzjlb04h7xyq7l7z87hqqcsf907p2nsxqnh7r6wm24kddfb0ab";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/virtualenvwrapper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/virtualenvwrapper";
sha256 = "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i";
name = "virtualenvwrapper";
};
@@ -61317,7 +61546,7 @@
sha256 = "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/visible-mark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visible-mark";
sha256 = "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80";
name = "visible-mark";
};
@@ -61338,7 +61567,7 @@
sha256 = "1cv8mf3l92a9p8qmkfiphk3r81f2ihg2gyw2r4jbbd5ppwbxkl0n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/visual-ascii-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visual-ascii-mode";
sha256 = "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g";
name = "visual-ascii-mode";
};
@@ -61359,7 +61588,7 @@
sha256 = "0r1iylk7r25wmlba4vlrc6k1apbkrbplb9id1h9q91wqhwdnxqal";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/visual-fill-column";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visual-fill-column";
sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5";
name = "visual-fill-column";
};
@@ -61372,15 +61601,15 @@
visual-regexp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "visual-regexp";
- version = "20160516.1558";
+ version = "20160520.700";
src = fetchFromGitHub {
owner = "benma";
repo = "visual-regexp.el";
- rev = "80668e93223ad54d0c4c8facc1bac1cdf2155f4c";
- sha256 = "027gdqwv3ygg0j3mwx40rar3rn9pgcd1hb73r80hxlmy0kk1hkrw";
+ rev = "db0aab0346d0feba467f16ba08c1a71a0b00ecea";
+ sha256 = "1l3p7fypl5abwmsks0ms66xxq3zc78dp9gpbvwv5pqzh8b2f4xdq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/visual-regexp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visual-regexp";
sha256 = "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z";
name = "visual-regexp";
};
@@ -61401,7 +61630,7 @@
sha256 = "0bc44z8y1jmw7jlz785bisy36v08jichj53nwhmp2wjyv40xy321";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/visual-regexp-steroids";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visual-regexp-steroids";
sha256 = "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr";
name = "visual-regexp-steroids";
};
@@ -61422,7 +61651,7 @@
sha256 = "0hb845pnh2yska6alca8hbbxh65x7g81pr7852h8fddm0qd1agkd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vkill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vkill";
sha256 = "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm";
name = "vkill";
};
@@ -61443,7 +61672,7 @@
sha256 = "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vlf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vlf";
sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8";
name = "vlf";
};
@@ -61461,7 +61690,7 @@
sha256 = "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vline";
sha256 = "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp";
name = "vline";
};
@@ -61482,7 +61711,7 @@
sha256 = "183pvfp5nnqpgdmfxm84qrnid0lijgk79l5lhwzmnznzkrb7bgxw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/voca-builder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/voca-builder";
sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y";
name = "voca-builder";
};
@@ -61495,15 +61724,15 @@
volatile-highlights = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "volatile-highlights";
- version = "20160221.512";
+ version = "20160520.2306";
src = fetchFromGitHub {
owner = "k-talo";
repo = "volatile-highlights.el";
- rev = "a5dccb026232733f72c98ce394d836b2e5cd42ac";
- sha256 = "1yrpqlpxnw7jckhhc18i058vcpi12y687181h0azcwb0wq9p2c26";
+ rev = "eab9774fa301b6103c3f95fa0812e9241102c163";
+ sha256 = "0k5n241zf4h9339iwjkngcjmi1qhfgaz73376ry5lvdq48izcgkg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/volatile-highlights";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/volatile-highlights";
sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d";
name = "volatile-highlights";
};
@@ -61524,7 +61753,7 @@
sha256 = "0ymibjq6iwab5ia1fglhz4gm5cnbi792018fmrabcqkisj2zsjb7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/volume";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/volume";
sha256 = "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i";
name = "volume";
};
@@ -61545,7 +61774,7 @@
sha256 = "1d9rwgyvizn1zas8v98v86g5kck0m567cprpcakdawwamn155k49";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vue-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vue-mode";
sha256 = "0gy7a5sliaijq0666l55vbkg15anrw7k1828szdn1ppkraw14bn0";
name = "vue-mode";
};
@@ -61563,7 +61792,7 @@
sha256 = "0vb5ss30mz0kqq8cscjckw647vqn6xprp2sfjcbpg2fx59z4agma";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/w32-browser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/w32-browser";
sha256 = "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6";
name = "w32-browser";
};
@@ -61582,7 +61811,7 @@
sha256 = "0nyara81bnd0rvgyljqrrbvjvndkngdc7qzf6scl5iz3vlglfgy7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/w32browser-dlgopen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/w32browser-dlgopen";
sha256 = "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39";
name = "w32browser-dlgopen";
};
@@ -61603,7 +61832,7 @@
sha256 = "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/w3m";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/w3m";
sha256 = "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw";
name = "w3m";
};
@@ -61624,7 +61853,7 @@
sha256 = "0nvlni3iy2sq76z8d4kj5492m0w7qv96shjqkynvlj0avf528hv4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wacspace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wacspace";
sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl";
name = "wacspace";
};
@@ -61645,7 +61874,7 @@
sha256 = "0w59ix8cbbcyhh882c8vkrbh84i8d03h9w7dchr3qy233b8wcxlc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/waher-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/waher-theme";
sha256 = "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5";
name = "waher-theme";
};
@@ -61666,7 +61895,7 @@
sha256 = "06d6ywc0hq6jn5ahq96qa8v8fnps464f2gjmdhsgvj8b0d0c5jl1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wakatime-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wakatime-mode";
sha256 = "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8";
name = "wakatime-mode";
};
@@ -61687,7 +61916,7 @@
sha256 = "09gqsssc2sk0vwfg0h4zxq9a779sdjdgvxsw7p6n2k0g4wk0phri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wand";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wand";
sha256 = "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l";
name = "wand";
};
@@ -61708,7 +61937,7 @@
sha256 = "06jqlvy2078fd8py59z5rraf2ymlkv6wizmw91vq63f87vpw71zg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wandbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wandbox";
sha256 = "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz";
name = "wandbox";
};
@@ -61729,7 +61958,7 @@
sha256 = "01zwk4rh18fmgrj75kyhkny1s3r0cmnjjnxa3ljbw1yy6q90acga";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wanderlust";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wanderlust";
sha256 = "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9";
name = "wanderlust";
};
@@ -61750,7 +61979,7 @@
sha256 = "1x472s5qr6wvla7nj5i9mas8z9qhkj4zj5qghfwn5chb9igvfkif";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/warm-night-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/warm-night-theme";
sha256 = "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29";
name = "warm-night-theme";
};
@@ -61771,7 +62000,7 @@
sha256 = "0i84ndnxma8s07kf5ixqyhv5f89mzc4iymgazj5inmxhvbc7s7r2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/watch-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/watch-buffer";
sha256 = "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5";
name = "watch-buffer";
};
@@ -61792,7 +62021,7 @@
sha256 = "0zw8z2r82986likz0b0zy37bywicrvz9dizzw9p52gs1lx0is1fy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wavefront-obj-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wavefront-obj-mode";
sha256 = "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk";
name = "wavefront-obj-mode";
};
@@ -61813,7 +62042,7 @@
sha256 = "0p7j4hvcxfyjf0na9s3xv29dvmwq82s56lincfasd0ydcpz4fbwc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wc-goal-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wc-goal-mode";
sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419";
name = "wc-goal-mode";
};
@@ -61834,7 +62063,7 @@
sha256 = "1j1k3ab0ymr66w23z3r4yd1g6410n5y80jfyg2f9i9rdk7vq18gd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wc-mode";
sha256 = "191dmxfpqnj7d43cr0fhdmj5ldfs7w9zg5pb2lv9wvlfl7asdid6";
name = "wc-mode";
};
@@ -61855,7 +62084,7 @@
sha256 = "0irw76inj3gdmi88hiayplv6fzjjjsvvvmr121ahh3p73mb14cjd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wcheck-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wcheck-mode";
sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k";
name = "wcheck-mode";
};
@@ -61876,7 +62105,7 @@
sha256 = "05gfc67724b0mwg8kvk3dsazx3dld50b9xjq8h1nc6jvdz3zxb9z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/weather-metno";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weather-metno";
sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6";
name = "weather-metno";
};
@@ -61897,7 +62126,7 @@
sha256 = "03xcadplw1hg5hxw6bfrhw5xkkxk3i4105f114c6m3d2525jq4y5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web";
sha256 = "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a";
name = "web";
};
@@ -61918,7 +62147,7 @@
sha256 = "0j8v8p4w586wz80q9scdby6b80sbxz4lqg9zb5pbr2w8bsps8n4m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/web-beautify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-beautify";
sha256 = "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f";
name = "web-beautify";
};
@@ -61939,7 +62168,7 @@
sha256 = "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/web-completion-data";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-completion-data";
sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9";
name = "web-completion-data";
};
@@ -61960,7 +62189,7 @@
sha256 = "1cs9ldj2qckyynwxzvbd5fmniis6mhprdz1wvvvpjs900bbc843s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/web-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-mode";
sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i";
name = "web-mode";
};
@@ -61981,7 +62210,7 @@
sha256 = "0mbhyk7sgisx0l0xiz2xgy4jfbgwazlnxjvajsh4nysyig5rys05";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/web-server";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-server";
sha256 = "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3";
name = "web-server";
};
@@ -62001,7 +62230,7 @@
sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/weblogger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weblogger";
sha256 = "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk";
name = "weblogger";
};
@@ -62022,7 +62251,7 @@
sha256 = "0ly12vy93m6jk6r62006ykjcrk966qk0ah0fk0hjxf8fx8shhsig";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/websocket";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/websocket";
sha256 = "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg";
name = "websocket";
};
@@ -62043,7 +62272,7 @@
sha256 = "19hgb5knqqc4rb8yl8s604xql8ar6m9r4d379cfakn15jvwqnl98";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wedge-ws";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wedge-ws";
sha256 = "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll";
name = "wedge-ws";
};
@@ -62064,7 +62293,7 @@
sha256 = "0vg3w18xj6i320jsivsml3mi1fdxr8dgxmn7qy2780ajy5ndxnw1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/weechat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weechat";
sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46";
name = "weechat";
};
@@ -62085,7 +62314,7 @@
sha256 = "1hkhim2jfdywx6ks4qfcizycp5qsx4ms6929kbgmzzb8i7j380x6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/weechat-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weechat-alert";
sha256 = "026hkddvd4a6wy7s8s0lklw8b99fpjawdgi7amvpcrn79ylwbf22";
name = "weechat-alert";
};
@@ -62106,7 +62335,7 @@
sha256 = "0hc5iyjpcik996ns84akrl28scndmn0gd1zfdf1nnqq6n2m5zvgh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/weibo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weibo";
sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd";
name = "weibo";
};
@@ -62127,7 +62356,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wgrep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep";
sha256 = "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4";
name = "wgrep";
};
@@ -62148,7 +62377,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wgrep-ack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-ack";
sha256 = "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh";
name = "wgrep-ack";
};
@@ -62169,7 +62398,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wgrep-ag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-ag";
sha256 = "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a";
name = "wgrep-ag";
};
@@ -62190,7 +62419,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wgrep-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-helm";
sha256 = "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b";
name = "wgrep-helm";
};
@@ -62211,7 +62440,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wgrep-pt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-pt";
sha256 = "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg";
name = "wgrep-pt";
};
@@ -62232,7 +62461,7 @@
sha256 = "04w62davpqqqvympkr52bg54c2i45p09q9bs70p9ff5jvc6i3g76";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/what-the-commit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/what-the-commit";
sha256 = "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak";
name = "what-the-commit";
};
@@ -62253,7 +62482,7 @@
sha256 = "1phskycfxksmpmyaf2gr9p0dxm6c7wcghvd34vqb44h8nry0iq6m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/which-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/which-key";
sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59";
name = "which-key";
};
@@ -62274,7 +62503,7 @@
sha256 = "1y75cylvqgn54h8yqahz4wi1qj5yhbs66i7x23jmbmah3q0rycab";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/whitaker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/whitaker";
sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj";
name = "whitaker";
};
@@ -62295,7 +62524,7 @@
sha256 = "0sh92g5vd518f80klvljqkjpw4ji909439dpc3sfaccf5jiwn9xn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/white-sand-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/white-sand-theme";
sha256 = "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5";
name = "white-sand-theme";
};
@@ -62316,7 +62545,7 @@
sha256 = "15yhbyyr0ksd9ziinlylyddny2szlj35x2548awj9ijnqqgjd23r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/whitespace-cleanup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/whitespace-cleanup-mode";
sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3";
name = "whitespace-cleanup-mode";
};
@@ -62337,7 +62566,7 @@
sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/whole-line-or-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/whole-line-or-region";
sha256 = "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1";
name = "whole-line-or-region";
};
@@ -62355,7 +62584,7 @@
sha256 = "18bnwwjk8jj4ns08sxhnznj0d8n1bxm2kj43r06nwyibh6ajpl7f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wid-edit+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wid-edit+";
sha256 = "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv";
name = "wid-edit-plus";
};
@@ -62376,7 +62605,7 @@
sha256 = "0bq39sfipad16skh5q26gp7z24kk93hgnaxb378dzfq1306kmn8q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wide-column";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wide-column";
sha256 = "1kyyvq9fgaypvhiy9vbvr99xsac5vhylkbjsxn5fhylyc5n867sb";
name = "wide-column";
};
@@ -62397,7 +62626,7 @@
sha256 = "0036alzp66k7w3z45lj8qzh3plxv9vwcw17wibkz90mlb27vy6yz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/widget-mvc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/widget-mvc";
sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f";
name = "widget-mvc";
};
@@ -62418,7 +62647,7 @@
sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wiki-nav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wiki-nav";
sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy";
name = "wiki-nav";
};
@@ -62439,7 +62668,7 @@
sha256 = "02bczc1mb1cs1aryz5pw6cmpydjmxja2zj91893cz8rnfn1r031i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wiki-summary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wiki-summary";
sha256 = "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw";
name = "wiki-summary";
};
@@ -62460,7 +62689,7 @@
sha256 = "1n45m8xn65a2lg8ff7m6hbqnp2j49n9sfyr924laljvhjbi37knd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wilt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wilt";
sha256 = "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6";
name = "wilt";
};
@@ -62478,7 +62707,7 @@
sha256 = "142ql6886h418f73h3wjblhnd16qvbap7mfr4g2yv4xybh88d4x2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wimpy-del";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wimpy-del";
sha256 = "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x";
name = "wimpy-del";
};
@@ -62499,7 +62728,7 @@
sha256 = "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/win-switch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/win-switch";
sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my";
name = "win-switch";
};
@@ -62517,7 +62746,7 @@
sha256 = "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/windata";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/windata";
sha256 = "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5";
name = "windata";
};
@@ -62538,7 +62767,7 @@
sha256 = "0g69r64gyz4p3k6n8l0i1837mszycbrp23acnp0iy0y3mg67x3pn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/window-end-visible";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-end-visible";
sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq";
name = "window-end-visible";
};
@@ -62559,7 +62788,7 @@
sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/window-jump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-jump";
sha256 = "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr";
name = "window-jump";
};
@@ -62580,7 +62809,7 @@
sha256 = "08chi9b4bap78n069aavvx3850kabk2jflrgymy4jxv08ybqikdg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/window-layout";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-layout";
sha256 = "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85";
name = "window-layout";
};
@@ -62598,7 +62827,7 @@
sha256 = "1as3qbvj6d171qp2s8ycqqi16bgqm47vfk3fbxrl9szjzaxh9nw6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/window-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-number";
sha256 = "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap";
name = "window-number";
};
@@ -62619,7 +62848,7 @@
sha256 = "1f4c6q4larifm745fr8f3w8sxs1sbs77vna29rw120jz8rnlz0jy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/window-numbering";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-numbering";
sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x";
name = "window-numbering";
};
@@ -62637,7 +62866,7 @@
sha256 = "0mqdcgk6mdxgl9if7jzgg16zqdwnsp8icrdhnygphw5m9h2dqcnm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/window+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window+";
sha256 = "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j";
name = "window-plus";
};
@@ -62658,7 +62887,7 @@
sha256 = "16471dng4iknh5wa3931iz9mm8bgd6lsrnhrjkd5ava2bv484gz6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/window-purpose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-purpose";
sha256 = "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d";
name = "window-purpose";
};
@@ -62679,7 +62908,7 @@
sha256 = "0hijf56ahbc5inn7n39nj96d948c4d05n9d5ci3g3vbl5hsyb121";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/windsize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/windsize";
sha256 = "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9";
name = "windsize";
};
@@ -62700,7 +62929,7 @@
sha256 = "1qrbvidnmgg7jyasb28bc0z1x4a4ayzq5jmv38dsx0qs080s85wy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/winpoint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/winpoint";
sha256 = "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w";
name = "winpoint";
};
@@ -62721,7 +62950,7 @@
sha256 = "1igld3zkvm3qbg1k77cn7rlxi8jqy8cvvp7z5mqwx9ifyihiwd0b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/winring";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/winring";
sha256 = "1mgr5z4h7mf677xx8md3pqd31k17qs62z9iamfih206fcwgh24k4";
name = "winring";
};
@@ -62741,7 +62970,7 @@
sha256 = "1nfyi9grkl9vhf8rs6r53g5f1p2wsk5jggw0m4i3z60yfflmkqi7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wisp-mode";
sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc";
name = "wisp-mode";
};
@@ -62762,7 +62991,7 @@
sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wispjs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wispjs-mode";
sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p";
name = "wispjs-mode";
};
@@ -62783,7 +63012,7 @@
sha256 = "0rzq2fbz523fyy2p6ddx9iws89sfgw3pwillw8yz965f3hxx3dj3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/with-editor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/with-editor";
sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb";
name = "with-editor";
};
@@ -62804,7 +63033,7 @@
sha256 = "1c7g8f3jr7bb0xxprammfg433gd63in5iiiaq8rjmc94h6hdcys3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/with-namespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/with-namespace";
sha256 = "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i";
name = "with-namespace";
};
@@ -62825,7 +63054,7 @@
sha256 = "12rfpkyjkhikjh0mihhp5h5pzbm4br68nwf8k1ja9djl77vfzv36";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wn-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wn-mode";
sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3";
name = "wn-mode";
};
@@ -62846,7 +63075,7 @@
sha256 = "1xna0cjgi9m87pws2h0cza67qbpdhjmdi5h4wv6v4g14nr26hi3w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wolfram-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wolfram-mode";
sha256 = "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf";
name = "wolfram-mode";
};
@@ -62867,7 +63096,7 @@
sha256 = "0hacc8ha5w44cgwkipa3nwh1q5gdrcxhjkmw2gnvb1l01crgnack";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wonderland";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wonderland";
sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi";
name = "wonderland";
};
@@ -62888,7 +63117,7 @@
sha256 = "1b9pya342ikyxnlyxp86wx8xk6zcdws7jsqs7a9xk027prwkfngj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wordnut";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wordnut";
sha256 = "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n";
name = "wordnut";
};
@@ -62909,7 +63138,7 @@
sha256 = "0d2byl3si2r0zh5ih6xpsgcd9r114ry0lzg5vcf31rr2gqf0j06h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wordsmith-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wordsmith-mode";
sha256 = "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n";
name = "wordsmith-mode";
};
@@ -62930,7 +63159,7 @@
sha256 = "1ndvwribh0i49rc6v89sfmxv5alr43995ccslviid563xn3yskii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/worf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/worf";
sha256 = "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi";
name = "worf";
};
@@ -62951,7 +63180,7 @@
sha256 = "0q32z54qafj8ap3ybx82i3fm1msmzwvpxgmkaglzhi8nccgzbn2n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/workgroups";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/workgroups";
sha256 = "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8";
name = "workgroups";
};
@@ -62972,7 +63201,7 @@
sha256 = "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/workgroups2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/workgroups2";
sha256 = "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v";
name = "workgroups2";
};
@@ -62993,7 +63222,7 @@
sha256 = "0i00xm4rynbp2v3gm6h46ajgj8h8nxnsjh6db1659b0hbpnah0ji";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/world-time-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/world-time-mode";
sha256 = "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl";
name = "world-time-mode";
};
@@ -63014,7 +63243,7 @@
sha256 = "09fzbbrdgq19c3gylj4i0c5g070k65w943wz28mzis8b403vzh3n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wrap-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wrap-region";
sha256 = "058518smxj3j3mr6ljzh7c9x5g23d24104p58sl9nhpw0cq9k28i";
name = "wrap-region";
};
@@ -63035,7 +63264,7 @@
sha256 = "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/writegood-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/writegood-mode";
sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d";
name = "writegood-mode";
};
@@ -63056,7 +63285,7 @@
sha256 = "11a3h5v7knj8y360cxin59c1ipd9y4qsqlanrw69yb5k4816ayyr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/writeroom-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/writeroom-mode";
sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk";
name = "writeroom-mode";
};
@@ -63077,7 +63306,7 @@
sha256 = "1x2ybnv0h52i24vd1n95s4vglc6p79cyxh91a20cwza34svhz152";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ws-butler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ws-butler";
sha256 = "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn";
name = "ws-butler";
};
@@ -63098,7 +63327,7 @@
sha256 = "14f87rgvh8rmdd7gp53iaibi1liiag10si2znbhiy1hf93ssd2pq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wsd-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wsd-mode";
sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc";
name = "wsd-mode";
};
@@ -63119,7 +63348,7 @@
sha256 = "1bq552mxlhq9sd2c9p2yir52p0jnfdav6vcdgs3xklcf89b1403m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wttrin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wttrin";
sha256 = "0msp8lja9nz6khz3dkasv8hnhkaayqxd7m58kma03hpkcjxnaxil";
name = "wttrin";
};
@@ -63140,7 +63369,7 @@
sha256 = "0ba193ilqmp7l35hhzfym4kvbnj9h57m8mwsxdj6rdj2cwrifx8r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wwtime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wwtime";
sha256 = "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic";
name = "wwtime";
};
@@ -63161,7 +63390,7 @@
sha256 = "0i7bgbhk4lvdkdjh6z4xs69mbdi49985j82cjikzyyskjcqd2klq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/x-dict";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/x-dict";
sha256 = "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc";
name = "x-dict";
};
@@ -63182,7 +63411,7 @@
sha256 = "02ylb8xgyl3qkpi0v5b4zbq3ysm7a5yc3h99laabrqb390dkm2hc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/x86-lookup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/x86-lookup";
sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd";
name = "x86-lookup";
};
@@ -63203,7 +63432,7 @@
sha256 = "1x3h69c2n82db8jkmd66c5i3x4rhmas5difm73msbx198w5i6lm7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xah-elisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-elisp-mode";
sha256 = "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij";
name = "xah-elisp-mode";
};
@@ -63224,7 +63453,7 @@
sha256 = "00ydkpkdgnj9v6dkf4pw9wj5skbq2v5y71xsr37d1fqmdzsb03g7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xah-find";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-find";
sha256 = "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq";
name = "xah-find";
};
@@ -63245,7 +63474,7 @@
sha256 = "01w60sj9ck881i3lb4s4yg0i7s0vpn1gp3zshxsxsvzbc5n6znjg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xah-fly-keys";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-fly-keys";
sha256 = "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs";
name = "xah-fly-keys";
};
@@ -63266,7 +63495,7 @@
sha256 = "0abknznp2si80zq5pc0hqr3w3pca2vrv3msm6jz1s8l8zi2hwx72";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xah-get-thing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-get-thing";
sha256 = "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg";
name = "xah-get-thing";
};
@@ -63287,7 +63516,7 @@
sha256 = "1adyww9jbjvcn9p3z9ggs3gijdmnab275a81ch8sir1xp59pfm3s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xah-lookup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-lookup";
sha256 = "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc";
name = "xah-lookup";
};
@@ -63308,7 +63537,7 @@
sha256 = "1wsdnqpfgk7f1dbz90k6sf13hjh0x3xjjgappfkmhcy36g7sshl7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xah-math-input";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-math-input";
sha256 = "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a";
name = "xah-math-input";
};
@@ -63329,7 +63558,7 @@
sha256 = "18msj947w6msma6zm23slk2v0h92n5ych5j12zbzkzzir49sffql";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xah-replace-pairs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-replace-pairs";
sha256 = "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x";
name = "xah-replace-pairs";
};
@@ -63350,7 +63579,7 @@
sha256 = "0dc74kqwi0hpihdbb9a9lrqb7823w6j96mah47zyd9d4rd3vx850";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xahk-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xahk-mode";
sha256 = "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9";
name = "xahk-mode";
};
@@ -63371,7 +63600,7 @@
sha256 = "08hzsqf4gawcr9q2h3rxrf1igvdja84aaa821657k04kdq4dpcbj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xbm-life";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xbm-life";
sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q";
name = "xbm-life";
};
@@ -63392,7 +63621,7 @@
sha256 = "0xqw0yhm08alaaqma3ymnihzyp2wg0hxsjzmrb2vmak5q1qqnkrp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xcscope";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xcscope";
sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w";
name = "xcscope";
};
@@ -63413,7 +63642,7 @@
sha256 = "0p9p3w8i5w1pzh3y3yxz0rg5gywfq4m5anbiyrdn84vdd42jij4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xkcd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xkcd";
sha256 = "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w";
name = "xkcd";
};
@@ -63434,7 +63663,7 @@
sha256 = "0c30xh7qxg3y2p5jqkbssz5z53rx0yp64qqyy9f87qzgkcd2jd8k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xml+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xml+";
sha256 = "0xgqyfdn6kkp89zj4h54r009a44sbff0nrhh582zw5rlklypwdz1";
name = "xml-plus";
};
@@ -63455,7 +63684,7 @@
sha256 = "0z3yd3dzcsd7584jchv9q55fx04ig4yjzp8ay2pa112lykv4jxxd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xml-quotes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xml-quotes";
sha256 = "1lmafa695xkhd90k6yiv8a57ch1jx33l1zpm39z0kj546mn6y8aq";
name = "xml-quotes";
};
@@ -63476,7 +63705,7 @@
sha256 = "0g52bmamcd54acyk6i47ar5jawad6ycvm9g656inb994wprnjin9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xml-rpc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xml-rpc";
sha256 = "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js";
name = "xml-rpc";
};
@@ -63497,7 +63726,7 @@
sha256 = "1nk50iwb6az01r1s2l9wwdqrz3k4ywr00q0zmd9vvi3y9v4cjah0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xmlgen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xmlgen";
sha256 = "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383";
name = "xmlgen";
};
@@ -63518,7 +63747,7 @@
sha256 = "178bdfwiinhf98qm88ivmgy6rd0qjx5gnckkclanybva0r8l6832";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xmlunicode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xmlunicode";
sha256 = "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p";
name = "xmlunicode";
};
@@ -63539,7 +63768,7 @@
sha256 = "0761amc73mbgaydp3iyfzgyjxp77yk440s24h69hvk87c5vn1cz3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xo";
sha256 = "0kpbnxh8sa2dk8anrvgc7d39qap13pyjxh154gpm8xdb9zhfwl25";
name = "xo";
};
@@ -63560,7 +63789,7 @@
sha256 = "09fpxr55b2adqmca8xhpy8z5cify5091fjdjyxjd1jh5wdp1658v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xquery-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xquery-mode";
sha256 = "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql";
name = "xquery-mode";
};
@@ -63581,7 +63810,7 @@
sha256 = "1yy759qc4njc8bqh8hmgc0mq5vk5spz5syxgflqhjijk8nrvyfgl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xquery-tool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xquery-tool";
sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0";
name = "xquery-tool";
};
@@ -63594,15 +63823,15 @@
xref-js2 = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }:
melpaBuild {
pname = "xref-js2";
- version = "20160421.503";
+ version = "20160521.748";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "xref-js2";
- rev = "9342014d3b86fcadc13469cf78404712c3178d63";
- sha256 = "1mppy0fk4qrhvjzapz95jiiki2bpijvxalrw0h81wqzf62d259va";
+ rev = "a950782a09b5e88d994c888c1700e54204b5dbd3";
+ sha256 = "0xs7wi29kxy2rjpimrlmigsk5sm03is4cd2snc4gsqfns769bjp0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xref-js2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xref-js2";
sha256 = "1mfyszdi1wx2lqd9fyqm0ra227dcsjs8asc1dw2li0alwh7n4xs3";
name = "xref-js2";
};
@@ -63623,7 +63852,7 @@
sha256 = "171vffga2yzxqmgh77vila6x96bz1i6818f1pfaxblw1hz2ga341";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xresources-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xresources-theme";
sha256 = "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga";
name = "xresources-theme";
};
@@ -63644,7 +63873,7 @@
sha256 = "19l9w373ysh1avakz4pmisn0d2mpym8pdxgz7k0m1bbqqzf2war7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xterm-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xterm-color";
sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj";
name = "xterm-color";
};
@@ -63665,7 +63894,7 @@
sha256 = "10dsf2lgjjqvjzzyc5kwggfk511v8ypmx173bixry3djcc15dsf3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xterm-frobs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xterm-frobs";
sha256 = "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf";
name = "xterm-frobs";
};
@@ -63686,7 +63915,7 @@
sha256 = "1jwimgglhqgp259wjqmpp1wi9j51qxcl1l356jlhjnfp1zh1ihmg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xterm-keybinder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xterm-keybinder";
sha256 = "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz";
name = "xterm-keybinder";
};
@@ -63707,7 +63936,7 @@
sha256 = "06cbr7y3wp7j8lnbys57g6md4fdx9xhlnxl73pj7xpfa5i2x9ifl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xterm-title";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xterm-title";
sha256 = "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6";
name = "xterm-title";
};
@@ -63728,7 +63957,7 @@
sha256 = "09mn8s7gzzxgs7kskld8l68zjrcgnvml3fqj69wrfq7b1g62hhxy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xtest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xtest";
sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7";
name = "xtest";
};
@@ -63749,7 +63978,7 @@
sha256 = "0f6pvwzhncycw8gnjy24h6q1qglfgvdjfs5dzqx9s43j3yg63lzm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yabin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yabin";
sha256 = "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17";
name = "yabin";
};
@@ -63770,7 +63999,7 @@
sha256 = "0b252m7vb5kg5bjhpgag6nhm32cac8dhlmy4pr0kpa860lh2xlz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yafolding";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yafolding";
sha256 = "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq";
name = "yafolding";
};
@@ -63791,7 +64020,7 @@
sha256 = "0lgy9b893mq4harxh80n0n2zia00s2c6ga8p654q563idrskgz17";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yagist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yagist";
sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd";
name = "yagist";
};
@@ -63812,7 +64041,7 @@
sha256 = "1r29x9gkj5cfcg2ac4j5vw55n1niainhl2316mfq0zpxjjp2bhwq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yahoo-weather";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yahoo-weather";
sha256 = "1kzi6yp186wfcqh5q1v9vw6b1h8x89sba6wlnacfpjbarwapfif0";
name = "yahoo-weather";
};
@@ -63833,7 +64062,7 @@
sha256 = "12dd4ahg9f1493982d49g7sxx0n6ss4xcfhxwzyaqxckwzfranp0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yalinum";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yalinum";
sha256 = "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf";
name = "yalinum";
};
@@ -63854,7 +64083,7 @@
sha256 = "03hcm3rv0na79dbivycg78bp08zfxfrgz8rf0i1wdk5sc9hzg105";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yaml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yaml-mode";
sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc";
name = "yaml-mode";
};
@@ -63875,7 +64104,7 @@
sha256 = "1xgqqgg4q3hrhiap8gmr8iifdr1mg4dl0j236b6alhrgmykbhimy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yaml-tomato";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yaml-tomato";
sha256 = "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2";
name = "yaml-tomato";
};
@@ -63896,7 +64125,7 @@
sha256 = "0pw44klm8ldsdjphybzkknv8yh23xhzwg76w3d9cqs79jkd0rw8w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yandex-weather";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yandex-weather";
sha256 = "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md";
name = "yandex-weather";
};
@@ -63909,15 +64138,15 @@
yankpad = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yankpad";
- version = "20160513.2047";
+ version = "20160517.1027";
src = fetchFromGitHub {
owner = "Kungsgeten";
repo = "yankpad";
- rev = "71638d27cefeb2367072a3e51a4ca19f60e16257";
- sha256 = "1kz1qwz12hgq7vw443mn2wnrhgskpmidlb6rsrvk0brfsx33vpaf";
+ rev = "83d1939568609236c1947368f334cb105f3c3f89";
+ sha256 = "1nm0wad4jblirc8jvaa6kyk2g00a16mmp2q0x6ks6adqhylnlzdf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yankpad";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yankpad";
sha256 = "1w5r9zk33cjgsmk45znfg32ym06nyqj5q3knr59jmn1fafx7a3z4";
name = "yankpad";
};
@@ -63935,7 +64164,7 @@
sha256 = "0svy6zp5f22z7mblap4psh7h4i52d1qasi9yk22l39przhsrjar4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yaoddmuse";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yaoddmuse";
sha256 = "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54";
name = "yaoddmuse";
};
@@ -63956,7 +64185,7 @@
sha256 = "096ay60hrd14b459cyxxcf9g7i1ivsxg6yhc0q162px6kl1x0m2y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yard-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yard-mode";
sha256 = "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx";
name = "yard-mode";
};
@@ -63977,7 +64206,7 @@
sha256 = "0w9a6j0ndpfwaz1g974vv5jqgbzxw26l19kq51j3ah73063cavpf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yari";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yari";
sha256 = "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h";
name = "yari";
};
@@ -63998,7 +64227,7 @@
sha256 = "08wa97hsfy1rc8ify3rz2ncfij4z6l16p4s20naygqccjv3ir6z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yascroll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yascroll";
sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f";
name = "yascroll";
};
@@ -64011,15 +64240,15 @@
yasnippet = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yasnippet";
- version = "20160514.718";
+ version = "20160517.1928";
src = fetchFromGitHub {
owner = "capitaomorte";
repo = "yasnippet";
- rev = "0d79e6988ec371279fc1c23733c7371bd21927ee";
- sha256 = "0ysg99rq8yrv3bwqs3jk9pzbzxvsvxcm2f7pjdlrs2jqp4jyfqza";
+ rev = "497867cea5395ddfd2d482176bd789de9b1576b8";
+ sha256 = "1xmpv8hzlaa0ljg80d9bc74xk9vhirgqnb0klpnxlc408kp7zhhl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yasnippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yasnippet";
sha256 = "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf";
name = "yasnippet";
};
@@ -64040,7 +64269,7 @@
sha256 = "1gxn302kwjfq6s6rxxvy0jpp37r2vh4ry899giqbdfr0cc1qnw0c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yatemplate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yatemplate";
sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q";
name = "yatemplate";
};
@@ -64059,7 +64288,7 @@
sha256 = "08iwfpsjs36pqr2l85avxhsjx8z0sdfw8cqwwf3brn7i4x67f7z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yatex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yatex";
sha256 = "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6";
name = "yatex";
};
@@ -64080,7 +64309,7 @@
sha256 = "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yaxception";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yaxception";
sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58";
name = "yaxception";
};
@@ -64101,7 +64330,7 @@
sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ycm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ycm";
sha256 = "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc";
name = "ycm";
};
@@ -64122,7 +64351,7 @@
sha256 = "1x138lbjy87sk68sjx07l3in2d9qzcc3pa9vgzvg95aiaacnk8qi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ycmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ycmd";
sha256 = "10jqr6xz2fnrd1ihips9jmbcd28zha432h4pxjpswz3ivwjqhxna";
name = "ycmd";
};
@@ -64153,7 +64382,7 @@
sha256 = "1fyvvkx6pa41bcr9cyh4yclwdzc5bs742s9fxr6wb4a5scq3hg9m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yesql-ghosts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yesql-ghosts";
sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf";
name = "yesql-ghosts";
};
@@ -64174,7 +64403,7 @@
sha256 = "1a40kpl5b4sar15s7l8vkfm2iyr5ma3c1n6w5r4z37w5kn59bkk5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yoshi-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yoshi-theme";
sha256 = "1kzdjs3rzg9rxrjgsk0wk75rwvbip6ixg1apcxv2c1a6biqqf2hv";
name = "yoshi-theme";
};
@@ -64195,7 +64424,7 @@
sha256 = "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/youdao-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/youdao-dictionary";
sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym";
name = "youdao-dictionary";
};
@@ -64216,7 +64445,7 @@
sha256 = "1k7m3xk5ksbr2s3ypz5yqafz9sfav1m0qk2jz1xyi3fdaw2j0w2z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/z3-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/z3-mode";
sha256 = "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd";
name = "z3-mode";
};
@@ -64237,7 +64466,7 @@
sha256 = "16k8hha798hrs0qfdwqdr6n7y13ffgm6jj3msrk0zl8117jhaany";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zeal-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zeal-at-point";
sha256 = "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw";
name = "zeal-at-point";
};
@@ -64257,7 +64486,7 @@
sha256 = "0xg67asvgav5js03i3bqmh7apndrn0jy5vai0bsh22pq8wgvq083";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zeitgeist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zeitgeist";
sha256 = "0m6drp3c6hp70ypbva3ji2dndl9an1jm2zlhnpwmjxsmw47cd732";
name = "zeitgeist";
};
@@ -64278,7 +64507,7 @@
sha256 = "0dnaxhsw549k54j0mgydm7qbl4pizgipfyzc15f9afsxa107rpnl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zen-and-art-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zen-and-art-theme";
sha256 = "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2";
name = "zen-and-art-theme";
};
@@ -64299,7 +64528,7 @@
sha256 = "1bjjmmplzjl17aqyz89s3z44vxpvik5ibv7004kp5678gf1vv5rs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zenburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zenburn-theme";
sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9";
name = "zenburn-theme";
};
@@ -64320,7 +64549,7 @@
sha256 = "1y3wj15kfbgskl29glmba6lzq43rcm141p4i5s180aqcw7ydp5vr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zencoding-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zencoding-mode";
sha256 = "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7";
name = "zencoding-mode";
};
@@ -64340,7 +64569,7 @@
sha256 = "1abm0wmfkhbwdnqnvjd9r0pm7ahkcj7ip7jcz6rm49qam815g7rk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zenity-color-picker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zenity-color-picker";
sha256 = "1v6ks922paacdgpv5v8cpic1g66670x73ixsy2nixs5qdw241wzl";
name = "zenity-color-picker";
};
@@ -64353,15 +64582,15 @@
zerodark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zerodark-theme";
- version = "20160427.1009";
+ version = "20160518.927";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "zerodark-theme";
- rev = "6e7760bff61db146dc55ba161ff8b0db7baa884a";
- sha256 = "03qywaxahlzp1sg5gvgb7i77pnp2q1dkzcsa2k2m8vs8vk0zlayh";
+ rev = "90aa9d2ca5632bfc6471982339f0709494b35f4a";
+ sha256 = "1kdsyki7i7x0ypq0iabdv1bnx0gd45acqcixvrxi3rf9j4chyvls";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zerodark-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zerodark-theme";
sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9";
name = "zerodark-theme";
};
@@ -64382,7 +64611,7 @@
sha256 = "1gb51bqdf87yibs1zngk6q090p05293cpwlwbwzhnih9sl6wkq8x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zlc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zlc";
sha256 = "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0";
name = "zlc";
};
@@ -64403,7 +64632,7 @@
sha256 = "1xsxmvbh3xm3zh9yc6q28h48nar6pwyd51xw04b1x7amwkp8qdnp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/znc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/znc";
sha256 = "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz";
name = "znc";
};
@@ -64424,7 +64653,7 @@
sha256 = "1gm3ly6czbw4vrxcslm50jy6nxf2qsl656cjwbyhw251wppn75cg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zombie";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zombie";
sha256 = "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv";
name = "zombie";
};
@@ -64445,7 +64674,7 @@
sha256 = "04m53hzk5n9vxh0gxi8jzpdhsdjlxnvz7hmsisr3bs99v603ha01";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zombie-trellys-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zombie-trellys-mode";
sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv";
name = "zombie-trellys-mode";
};
@@ -64466,7 +64695,7 @@
sha256 = "0b8m0mdxbskkqsx86i6942235i8x0pk67a7s8lhsp2anahksazla";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zone-nyan";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zone-nyan";
sha256 = "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b";
name = "zone-nyan";
};
@@ -64487,7 +64716,7 @@
sha256 = "0w550l9im3mhxhja1b7cr9phdcbvx5lprw551lj0d1lv7qvjasz0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zone-rainbow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zone-rainbow";
sha256 = "0l51fmhvx9vsxbs62cbjgqphb691397f651nqin7cj3dfvchzh4j";
name = "zone-rainbow";
};
@@ -64508,7 +64737,7 @@
sha256 = "17mrzf85ym0x5ih4l6sjdjlcmviabf8c8rpvpkd90gp9qxd8pyx1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zone-select";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zone-select";
sha256 = "05kc211invmy4ajwf71vgr2b7bdgn99c4a26m95gcjqgy3sh5xzz";
name = "zone-select";
};
@@ -64529,7 +64758,7 @@
sha256 = "0m1q45pza61j0fp8cxkgmds5fyjrk0nqpwhg8m91610m3pvyc3ap";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zone-sl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zone-sl";
sha256 = "04rwd6vj3abk3bzhq3swxwcq5da2n9cldrcmvnqgjr975np4cgs3";
name = "zone-sl";
};
@@ -64547,7 +64776,7 @@
sha256 = "1g6dpyihwaz28ppndhkw3jzmph6pmcnfhaff926j0zr1j701sqdd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zones";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zones";
sha256 = "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w";
name = "zones";
};
@@ -64568,7 +64797,7 @@
sha256 = "16ni0va1adpqdnrkiwmpxwrhyanxp5jwbknii2wnbhgq62s7gv43";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zonokai-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zonokai-theme";
sha256 = "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29";
name = "zonokai-theme";
};
@@ -64587,7 +64816,7 @@
sha256 = "1whpd97yjby5zbcr4fcn0nxhqvn6k3jn8k2d15i6ss579kziwdqn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zoom-frm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zoom-frm";
sha256 = "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk";
name = "zoom-frm";
};
@@ -64600,15 +64829,15 @@
zoom-window = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zoom-window";
- version = "20160510.20";
+ version = "20160520.539";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-zoom-window";
- rev = "9a274e216e9f30629c8e048a62815afc4c103fbe";
- sha256 = "1pv506wm8n97ssskd2cnzal04c2qd7wirl39gd7j8grgmvxp25zh";
+ rev = "07488bf1303b3f98e68ade015ceb4d350f92223d";
+ sha256 = "1fy16qiibqgplabd1rxd3r6k91rn4z0gv6jvmdjm0a7nh2424v4b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zoom-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zoom-window";
sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3";
name = "zoom-window";
};
@@ -64629,7 +64858,7 @@
sha256 = "1hq5ycnj0kwqs25z5rm095d55r768458vc5h5dpjhka5n6c099p1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zop-to-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zop-to-char";
sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga";
name = "zop-to-char";
};
@@ -64650,7 +64879,7 @@
sha256 = "0fgwxw7r3zfv0b7xi8bx7kxff2r5hdw9gxf16kwq04fnh18nhi39";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zossima";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zossima";
sha256 = "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb";
name = "zossima";
};
@@ -64671,7 +64900,7 @@
sha256 = "1335z1v4889njnm98pz2sjk6n7r3vncsz83bk3z6gj5i0ig7wjap";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zotelo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zotelo";
sha256 = "0y6s5ma7633h5pf9zj7vkazidlf211va7nk47ppb1q0iyfkyln36";
name = "zotelo";
};
@@ -64692,7 +64921,7 @@
sha256 = "0qksa67aazs9vx7v14nlakr34z6l0h6mhfzi2c0vhrr0c210r6hp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zotxt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zotxt";
sha256 = "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5";
name = "zotxt";
};
@@ -64713,7 +64942,7 @@
sha256 = "1sxjpbgi7ydmrlv34l16n40qpg969wfcb6kknndrh3fgjjc3p41b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ztree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ztree";
sha256 = "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20";
name = "ztree";
};
@@ -64734,7 +64963,7 @@
sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zygospore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zygospore";
sha256 = "0n9qs6fymdjly0i4rmx87y8gapfn5sqivsivcffi42vcb5f17kxj";
name = "zygospore";
};
@@ -64755,7 +64984,7 @@
sha256 = "0y0hhar3krkvbpb5y9k197mb0wfpz8cl6fmxazq8msjml7hkk339";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zzz-to-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/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 3106336a48d..a0482ef2874 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
@@ -60,9 +60,6 @@ self:
# upstream issue: missing file header
connection = markBroken super.connection;
- # upstream issue: missing file header
- crux = markBroken super.crux;
-
# upstream issue: missing file header
dictionary = markBroken super.dictionary;
diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
index c9a56460a05..9993fd6cc6d 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/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/0blayout";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/0blayout";
sha256 = "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92";
name = "_0blayout";
};
@@ -31,7 +31,7 @@
sha256 = "13f4l9xzx4xm5m80kkb49zh31w0bn0kw9m5ca28rrx4aysqmwryv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/abc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/abc-mode";
sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx";
name = "abc-mode";
};
@@ -52,7 +52,7 @@
sha256 = "1yr6cqycd7ljkqzfp4prz9ilcpjq8wxg5yf645m24gy9v4w365ia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/abyss-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/abyss-theme";
sha256 = "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c";
name = "abyss-theme";
};
@@ -73,7 +73,7 @@
sha256 = "0a8widshsm39cbala17pmnk1sazazhhyqppwalysli170whk49c5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-alchemist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-alchemist";
sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0";
name = "ac-alchemist";
};
@@ -94,7 +94,7 @@
sha256 = "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-anaconda";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-anaconda";
sha256 = "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf";
name = "ac-anaconda";
};
@@ -115,7 +115,7 @@
sha256 = "12z8nq797hjy0bq5vzpcm7z7bdn0ixc3ma4cj3v51xnwmgknzk6c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-cake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-cake";
sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl";
name = "ac-cake";
};
@@ -136,7 +136,7 @@
sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-cake2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-cake2";
sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy";
name = "ac-cake2";
};
@@ -157,7 +157,7 @@
sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-capf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-capf";
sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm";
name = "ac-capf";
};
@@ -178,7 +178,7 @@
sha256 = "1vpj0lxbvlxffj2z29l109w70hcphiavyvglsw524agxql3c8yf9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-cider";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-cider";
sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6";
name = "ac-cider";
};
@@ -199,7 +199,7 @@
sha256 = "1sdgpyq5p824dnxv6r7djwvhyhdmnis8k6992klr8iz7anhxzdam";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-clang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-clang";
sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4";
name = "ac-clang";
};
@@ -220,7 +220,7 @@
sha256 = "0a3s880nswc2s6yh2v5zsmws550q917i7av8nrxc5sp1d03xqwmn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-dcd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-dcd";
sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r";
name = "ac-dcd";
};
@@ -241,7 +241,7 @@
sha256 = "0cc3jpc4pihbyznyzvf6i3xwc2x78gb5m36ba9gkvxhabsljnlfg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-emoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-emoji";
sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw";
name = "ac-emoji";
};
@@ -262,7 +262,7 @@
sha256 = "0ijni3qgd68jhznhirhgcl59cr7hwfvbwgf6z120x56jmp8h01d2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-etags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-etags";
sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb";
name = "ac-etags";
};
@@ -283,7 +283,7 @@
sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-geiser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-geiser";
sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx";
name = "ac-geiser";
};
@@ -304,7 +304,7 @@
sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-haskell-process";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/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/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-helm";
sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq";
name = "ac-helm";
};
@@ -346,7 +346,7 @@
sha256 = "19v9515ixg22m7h7riix8w3vyhzax1m2pbwdirp59v532xn9b0cz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-html";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-html";
sha256 = "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa";
name = "ac-html";
};
@@ -367,7 +367,7 @@
sha256 = "1zmjqnlbfchnb7n2v7ms7q06xma1lmf9ry3v6f4pfnwlmz5lsf3a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-html-bootstrap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/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/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-html-csswatcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/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/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-inf-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/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/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-ispell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-ispell";
sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67";
name = "ac-ispell";
};
@@ -451,7 +451,7 @@
sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-mozc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-mozc";
sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f";
name = "ac-mozc";
};
@@ -472,7 +472,7 @@
sha256 = "16f8hvdz6y8nsfj7094yrvw194ag3w1jvz81h287vcgcvmyb7wdf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-octave";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-octave";
sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z";
name = "ac-octave";
};
@@ -493,7 +493,7 @@
sha256 = "0ca4viakvc09mvhk7d01pxnc3v3ydra6413asvdjx555njm9ic0f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-php";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-php";
sha256 = "1dlz4cv54ynl4ql5l2sa5lazlzq6rrlbz61k20l5lcljjwvj5xja";
name = "ac-php";
};
@@ -525,7 +525,7 @@
sha256 = "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-racer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-racer";
sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp";
name = "ac-racer";
};
@@ -546,7 +546,7 @@
sha256 = "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ac-slime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-slime";
sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg";
name = "ac-slime";
};
@@ -567,7 +567,7 @@
sha256 = "1pzh5l8dybrrmglj55nbff6065pxlbx14501p3a1qx1wvf24g1sv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-flyspell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-flyspell";
sha256 = "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd";
name = "ace-flyspell";
};
@@ -588,7 +588,7 @@
sha256 = "0233ai62zhsy5yhv72016clygwp2pcg80y6kr4cjm2k1k2wwy7m9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-isearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-isearch";
sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm";
name = "ace-isearch";
};
@@ -609,7 +609,7 @@
sha256 = "1z82a0lrb61msamqpsy7rxcgs2nfhhckkk4zw0aw49l248p2nrgs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-jump-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-buffer";
sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi";
name = "ace-jump-buffer";
};
@@ -630,7 +630,7 @@
sha256 = "1hsnsncarhvkhl2r6cg1x23vgfqzrwcbmdfkwasfgs7pgnd722m7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-jump-helm-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/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/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-jump-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/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/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-jump-zap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-zap";
sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb";
name = "ace-jump-zap";
};
@@ -693,7 +693,7 @@
sha256 = "1v127ld04gn16bgismbcz91kfjk71f3g8yf10r4scfp603y41zgz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-link";
sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5";
name = "ace-link";
};
@@ -714,7 +714,7 @@
sha256 = "1d2g873zwq78ggs47954lccmaky20746wg0gafyj93d1qyc3m8rn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-pinyin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-pinyin";
sha256 = "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc";
name = "ace-pinyin";
};
@@ -735,7 +735,7 @@
sha256 = "1qiiivkwa95bhyym8ly7fnwwglc9dcifkyr314bsq8m4rp1mgry4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-popup-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/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/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ace-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-window";
sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa";
name = "ace-window";
};
@@ -777,7 +777,7 @@
sha256 = "0hib4a8385q2czi1yqs0hwnva2xi7kw0bdfnrgha1hrl30rilp2f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ack-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ack-menu";
sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9";
name = "ack-menu";
};
@@ -798,7 +798,7 @@
sha256 = "0zybch8hz3mj63i0pxynb4d76ywqcy7b4fsa4hh71c2kb0bnczb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/actionscript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/actionscript-mode";
sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq";
name = "actionscript-mode";
};
@@ -819,7 +819,7 @@
sha256 = "0kp2aafjhqxz3mjr9hkkss85r4n51chws5a2qj1xzb63dh36liwm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/adoc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/adoc-mode";
sha256 = "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15";
name = "adoc-mode";
};
@@ -840,7 +840,7 @@
sha256 = "1y9bw2vkl952pha2dsi18swyr94mihgwlcg5m8hg4d5bfg2fzcb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aes";
sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v";
name = "aes";
};
@@ -861,7 +861,7 @@
sha256 = "15kp99vwyi7hb1jkq3lwvqzw3v62ycixsq6y4pd1x0nn2v5p5m5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ag";
sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g";
name = "ag";
};
@@ -874,15 +874,15 @@
aggressive-indent = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "aggressive-indent";
- version = "1.7";
+ version = "1.8.1";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "aggressive-indent-mode";
- rev = "c0a1e24ef39e2b0f388135c2ed8f8b419346337c";
- sha256 = "0wm8qp8d961ic1jr7g29m3vk807rq2xgi7zbk31b82ghakdvdy3j";
+ rev = "8438ff5e71ca040e7a1e325d608a3f5ea050503f";
+ sha256 = "03mpg4ksvcc5zs540rgnf3gssyx97aiiv60lwdn3934al4125vnq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aggressive-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aggressive-indent";
sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2";
name = "aggressive-indent";
};
@@ -903,7 +903,7 @@
sha256 = "02nkcin0piv7s93c9plhy361dbqr78m0gd19myc7qb7gnm36kzpn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ahk-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ahk-mode";
sha256 = "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni";
name = "ahk-mode";
};
@@ -924,7 +924,7 @@
sha256 = "0blrpqn8wy9pwzikgzb0v6x4hk7axv93j4byfci62fh1905zfkkb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/airline-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/airline-themes";
sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih";
name = "airline-themes";
};
@@ -945,7 +945,7 @@
sha256 = "1y5nmcrlsmniv37x7w6yhihmb335n82d96yz7xclhwg59n652pjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/alchemist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alchemist";
sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369";
name = "alchemist";
};
@@ -966,7 +966,7 @@
sha256 = "1pk5dgjqrynap85700wdivq41bdqvwd5hkfimgmcd48l5lhj9pbj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/alect-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alect-themes";
sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8";
name = "alect-themes";
};
@@ -987,7 +987,7 @@
sha256 = "1vpc3q40m6dcrslki4bg725j4kv6c6xfxwjjl1ilg7la49fwwf26";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alert";
sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118";
name = "alert";
};
@@ -1008,7 +1008,7 @@
sha256 = "00kfnkr0rclzbir2xxzr9wf2g0hf1alc004v8i9mqf3ab6dgdqiy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/amd-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/amd-mode";
sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06";
name = "amd-mode";
};
@@ -1029,7 +1029,7 @@
sha256 = "0sj6cr2bghy80dnwgl7rg61abdlvgfzi0jjc7jrxz7fdzwkcq714";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anaconda-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anaconda-mode";
sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r";
name = "anaconda-mode";
};
@@ -1050,7 +1050,7 @@
sha256 = "0fnxxvw81c34zhmiyr5awl92wr5941n4gklvzjc4jphaf2nhkg4w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anaphora";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anaphora";
sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2";
name = "anaphora";
};
@@ -1071,7 +1071,7 @@
sha256 = "0gjynmzqlqz0d57fb4np6xrklqdn11y4vjbm18rlpvmk92bgw740";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/android-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/android-mode";
sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc";
name = "android-mode";
};
@@ -1092,7 +1092,7 @@
sha256 = "1798nv4djhxzbin68zf6w7dbfm9sc39d0kygky52ii36arg5r1zp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/angular-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/angular-mode";
sha256 = "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i";
name = "angular-mode";
};
@@ -1113,7 +1113,7 @@
sha256 = "0h9i0iimanbvhbqy0cj9na335rs961pvhxjj4k8y53qc73xm102a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/angular-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/angular-snippets";
sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c";
name = "angular-snippets";
};
@@ -1134,7 +1134,7 @@
sha256 = "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/annotate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/annotate";
sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy";
name = "annotate";
};
@@ -1155,7 +1155,7 @@
sha256 = "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/annoying-arrows-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/annoying-arrows-mode";
sha256 = "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7";
name = "annoying-arrows-mode";
};
@@ -1176,7 +1176,7 @@
sha256 = "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ansi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ansi";
sha256 = "0b5xnv6z471jm53g37njxin6l8yflsgm80y4wxahfgy8apipcq89";
name = "ansi";
};
@@ -1197,7 +1197,7 @@
sha256 = "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ansible";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ansible";
sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g";
name = "ansible";
};
@@ -1218,7 +1218,7 @@
sha256 = "05z379k6a7xq9d2zapf687x3f37jpmh6kfghpgxdd18v0hzca8ds";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ansible-doc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ansible-doc";
sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w";
name = "ansible-doc";
};
@@ -1239,7 +1239,7 @@
sha256 = "06cn81sksvl88l1g3cfgp1kf8xzfv00b31j2rf58f45zlbl5ckv9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anti-zenburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anti-zenburn-theme";
sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk";
name = "anti-zenburn-theme";
};
@@ -1260,7 +1260,7 @@
sha256 = "1z6l72dn98icqsmxb3rrj6l63ijc3xgfa3vdl19yqa2rfy6ya721";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anyins";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anyins";
sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c";
name = "anyins";
};
@@ -1280,7 +1280,7 @@
sha256 = "08f7qxwnvykmxwrii3nv1fnai4mqs2ir5419k0llj6mkrik0gfc6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anything";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything";
sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj";
name = "anything";
};
@@ -1301,7 +1301,7 @@
sha256 = "01lw9159axg5w9bpdy55m4zc902zmsqvk213ky1nmgnln0fvq3rd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anything-exuberant-ctags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-exuberant-ctags";
sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk";
name = "anything-exuberant-ctags";
};
@@ -1322,7 +1322,7 @@
sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anything-replace-string";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-replace-string";
sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71";
name = "anything-replace-string";
};
@@ -1343,7 +1343,7 @@
sha256 = "1bcvin2694ypqgiw0mqk82riq7gw6ra10vbkzng1yp9jp2qr6wmm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anything-sage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-sage";
sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3";
name = "anything-sage";
};
@@ -1364,7 +1364,7 @@
sha256 = "1dxaf68przg0hh0p1zhxsq2dysp3ln178yxhbqalxw67bjy8ikny";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/anzu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anzu";
sha256 = "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i";
name = "anzu";
};
@@ -1385,7 +1385,7 @@
sha256 = "13j2r4nx2x6j3qx50d5rdnqd8nl5idxdkhizsk7ccz3v2607fbyy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/apples-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apples-mode";
sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s";
name = "apples-mode";
};
@@ -1406,7 +1406,7 @@
sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aproject";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aproject";
sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2";
name = "aproject";
};
@@ -1427,7 +1427,7 @@
sha256 = "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/artbollocks-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/artbollocks-mode";
sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp";
name = "artbollocks-mode";
};
@@ -1448,7 +1448,7 @@
sha256 = "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/arview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/arview";
sha256 = "0d935lj0x3rbar94l7288xrgbcp1wmz6r2l0b7i89r5piczyiy1y";
name = "arview";
};
@@ -1469,7 +1469,7 @@
sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/asilea";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/asilea";
sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j";
name = "asilea";
};
@@ -1479,22 +1479,22 @@
license = lib.licenses.free;
};
}) {};
- assess = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ assess = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, m-buffer, melpaBuild }:
melpaBuild {
pname = "assess";
- version = "0.1";
+ version = "0.2";
src = fetchFromGitHub {
owner = "phillord";
repo = "assess";
- rev = "880d519d6b1e7202a72b1632733690310efb197f";
- sha256 = "0jy08kj7cy744lbdyil0j50b08vm76bzxwmzd99v4sz12s3qcd2s";
+ rev = "387e5cfe2f010fb3da7f1b670fc27c19ace99b4a";
+ sha256 = "1qfrrw6vgz93xiyy0xiaw0hh97lmv3365gm6a9cr5g0h4012z8pq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/assess";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/assess";
sha256 = "0xj3f48plwxmibax00qn15ya7s0h560xzwr8nkwl5r151v1mc9rr";
name = "assess";
};
- packageRequires = [];
+ packageRequires = [ dash emacs m-buffer ];
meta = {
homepage = "https://melpa.org/#/assess";
license = lib.licenses.free;
@@ -1511,7 +1511,7 @@
sha256 = "1dgw075pdzfrb5wjba7iwal8crxpxm642fkfwj8389a5hpsj7v2n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/async";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/async";
sha256 = "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f";
name = "async";
};
@@ -1521,6 +1521,27 @@
license = lib.licenses.free;
};
}) {};
+ atom-one-dark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "atom-one-dark-theme";
+ version = "0.4.0";
+ src = fetchFromGitHub {
+ owner = "jonathanchu";
+ repo = "atom-one-dark-theme";
+ rev = "c2ae343971f8cda7f5b5392552ce9281f52e53de";
+ sha256 = "1xyn8qiikng6vf5rbpfqz9ac10c69aip0w6v9l46w0qxsy8svyaj";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/atom-one-dark-theme";
+ sha256 = "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw";
+ name = "atom-one-dark-theme";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/atom-one-dark-theme";
+ license = lib.licenses.free;
+ };
+ }) {};
aurel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "aurel";
@@ -1532,7 +1553,7 @@
sha256 = "0dqr1yrzf7a8655dsbcch4622rc75j9yjbn9zhkyikqjicddnlda";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aurel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aurel";
sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl";
name = "aurel";
};
@@ -1553,7 +1574,7 @@
sha256 = "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/aurora-config-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aurora-config-mode";
sha256 = "1hpjwidqmjxanijsc1imc7ww9abbylmkin1p0846fbz1hz3a603c";
name = "aurora-config-mode";
};
@@ -1574,7 +1595,7 @@
sha256 = "1b6g7qvrxv6gkl4izq1y7k0x0l7izyfnpki10di5vdv3jp6xg9b2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auth-password-store";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auth-password-store";
sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5";
name = "auth-password-store";
};
@@ -1595,7 +1616,7 @@
sha256 = "05crb8cm7s1nggrqq0xcs2xiabjw3vh44fnkdiilq1c5cnajdcrj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-compile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-compile";
sha256 = "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks";
name = "auto-compile";
};
@@ -1616,7 +1637,7 @@
sha256 = "04i9b11iksg6acn885wl3qgi5xpsm3yszlqmd2x21yhprndlz7gb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete";
sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3";
name = "auto-complete";
};
@@ -1637,7 +1658,7 @@
sha256 = "1kp2l1cgzlg2g3wllz4gl1ssn4lnx2sn26xqigfrpr8y5rj2bsfj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-clang-async";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-clang-async";
sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh";
name = "auto-complete-clang-async";
};
@@ -1658,7 +1679,7 @@
sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-exuberant-ctags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-exuberant-ctags";
sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd";
name = "auto-complete-exuberant-ctags";
};
@@ -1679,7 +1700,7 @@
sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-nxml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-nxml";
sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a";
name = "auto-complete-nxml";
};
@@ -1700,7 +1721,7 @@
sha256 = "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-pcmp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-pcmp";
sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna";
name = "auto-complete-pcmp";
};
@@ -1721,7 +1742,7 @@
sha256 = "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-complete-sage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-sage";
sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1";
name = "auto-complete-sage";
};
@@ -1742,7 +1763,7 @@
sha256 = "191294k92qp8gmfypf0q8j8qrym96aqikzvyb9p03wqvbr3r1dsk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-dictionary";
sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16";
name = "auto-dictionary";
};
@@ -1763,7 +1784,7 @@
sha256 = "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-indent-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-indent-mode";
sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz";
name = "auto-indent-mode";
};
@@ -1784,7 +1805,7 @@
sha256 = "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-package-update";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-package-update";
sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k";
name = "auto-package-update";
};
@@ -1805,7 +1826,7 @@
sha256 = "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-shell-command";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-shell-command";
sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j";
name = "auto-shell-command";
};
@@ -1826,7 +1847,7 @@
sha256 = "0n3r7j83csby2s7284hy5pycynazyrkljxkn6xqn08gvxbbbdpdq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/auto-yasnippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-yasnippet";
sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa";
name = "auto-yasnippet";
};
@@ -1847,7 +1868,7 @@
sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/autodisass-java-bytecode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autodisass-java-bytecode";
sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc";
name = "autodisass-java-bytecode";
};
@@ -1868,7 +1889,7 @@
sha256 = "1hyp49bidwc53cr25wwwyzcd0cbbqzxkfcpnccimphv24qfsai85";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/autodisass-llvm-bitcode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autodisass-llvm-bitcode";
sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01";
name = "autodisass-llvm-bitcode";
};
@@ -1889,7 +1910,7 @@
sha256 = "0g6kd1r0wizamw26bhp5jkvpsd98rcybkfchc622b9v5b89a07nq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/autopair";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autopair";
sha256 = "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28";
name = "autopair";
};
@@ -1910,7 +1931,7 @@
sha256 = "0rq9ab264565z83cly743nbhrd9m967apmnlhqr1gy8dm4hcy7nm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/avy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy";
sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag";
name = "avy";
};
@@ -1931,7 +1952,7 @@
sha256 = "1564yv9330vjymw3xnikc2lz20f65n40fbl8m1zs1gp4nlgzkk38";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/avy-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy-menu";
sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw";
name = "avy-menu";
};
@@ -1952,7 +1973,7 @@
sha256 = "0s6m44b49jm5cnrx1pvk7rfw3zhwiw5xasdlgmlvv7wws7m5snd9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/avy-migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy-migemo";
sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296";
name = "avy-migemo";
};
@@ -1973,7 +1994,7 @@
sha256 = "0lmv34pi9qdh76fi3w4lrfyfhzr824nsiif4nyjvpnmrabxgk309";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/avy-zap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy-zap";
sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx";
name = "avy-zap";
};
@@ -1994,7 +2015,7 @@
sha256 = "0px1xggk6qyrwkma1p3d7b4z2id2gbrsxkliw3nwc1q4zndg1zr7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/babel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/babel";
sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c";
name = "babel";
};
@@ -2015,7 +2036,7 @@
sha256 = "0hmn3jlsqgpc602lbcs9wzw0hgr5qpjdcxi2hjlc1cp27ilyscnf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/back-button";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/back-button";
sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85";
name = "back-button";
};
@@ -2042,7 +2063,7 @@
sha256 = "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/badwolf-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/badwolf-theme";
sha256 = "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41";
name = "badwolf-theme";
};
@@ -2063,7 +2084,7 @@
sha256 = "11rlmrjdpa3vnf0h9vcd75946q9jyf1mpbm7h12hmpj6g2pavgdd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bash-completion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bash-completion";
sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj";
name = "bash-completion";
};
@@ -2084,7 +2105,7 @@
sha256 = "1xvxz9sk9l57a4kiiavxxdp0v241mfgiy2lg5ilacq1cd6xrrhky";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbcode-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbcode-mode";
sha256 = "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89";
name = "bbcode-mode";
};
@@ -2105,7 +2126,7 @@
sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbdb-";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-";
sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf";
name = "bbdb-";
};
@@ -2126,7 +2147,7 @@
sha256 = "0fg72qnb40djyciy4gzj359lqlcbbrq0indbkzd0dj09zipkx0df";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbdb-vcard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-vcard";
sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj";
name = "bbdb-vcard";
};
@@ -2147,7 +2168,7 @@
sha256 = "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bbdb2erc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb2erc";
sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd";
name = "bbdb2erc";
};
@@ -2168,7 +2189,7 @@
sha256 = "01d10algmi9a4xd7mzf7n3zxfs2qf5as66wx17mff5cd8dahxj1q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/beeminder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/beeminder";
sha256 = "1cb8xmgsv23b464hpchm9f9i64p3fyf7aillrwk1aa2l1008kyww";
name = "beeminder";
};
@@ -2189,7 +2210,7 @@
sha256 = "1agrci37bni1vfkxg171l53fvsnjdryhf05v54wj07jngnwf3cw9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/beginend";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/beginend";
sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq";
name = "beginend";
};
@@ -2210,7 +2231,7 @@
sha256 = "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/better-defaults";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/better-defaults";
sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm";
name = "better-defaults";
};
@@ -2231,7 +2252,7 @@
sha256 = "0skg8wcgdfzd59ay4fbbbdd258cm8q7v321iml46bdipzk0r5lnw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/biblio";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/biblio";
sha256 = "0ym7xvcfd7hh3qdpfb8zpa7w8s4lpg0vngh9d0ns3s3lnhz4mi0g";
name = "biblio";
};
@@ -2252,7 +2273,7 @@
sha256 = "0skg8wcgdfzd59ay4fbbbdd258cm8q7v321iml46bdipzk0r5lnw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/biblio-core";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/biblio-core";
sha256 = "0zpfamrb2gka41h834a05hxdbw4h55777kh6rhjikjfmy765nl97";
name = "biblio-core";
};
@@ -2273,7 +2294,7 @@
sha256 = "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bind-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bind-key";
sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm";
name = "bind-key";
};
@@ -2294,7 +2315,7 @@
sha256 = "047qzylycx3r06dd0q9q9f37pvfigmlv59gi3wqvlg6k3gcmdvy0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bind-map";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bind-map";
sha256 = "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358";
name = "bind-map";
};
@@ -2315,7 +2336,7 @@
sha256 = "0pmpg54faq0l886f2cmnmwm28d2yfg8adk7gp7623gx0ifggn332";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bing-dict";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bing-dict";
sha256 = "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1";
name = "bing-dict";
};
@@ -2336,7 +2357,7 @@
sha256 = "1r3f5d67x257g8kvdbdsl4w3y1dvc1d6s9x8bygbkvyahfi5m5hn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/birds-of-paradise-plus-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/birds-of-paradise-plus-theme";
sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m";
name = "birds-of-paradise-plus-theme";
};
@@ -2349,15 +2370,15 @@
bog = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bog";
- version = "1.1.0";
+ version = "1.2.0";
src = fetchFromGitHub {
owner = "kyleam";
repo = "bog";
- rev = "a13b6305f0b6a73373809fb71595194aa284696c";
- sha256 = "1j2ar9sinbrraqvymqmjray48xbr1arhpigzgkgnhkc2zzqv8dwb";
+ rev = "ee403848c65c6141888344144958bc979596f5d4";
+ sha256 = "0414kdwgvmz0bmbaaz7zxf83rdjzmzcvvk5b332c679hk0b9kxg7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bog";
sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl";
name = "bog";
};
@@ -2378,7 +2399,7 @@
sha256 = "1q3ws2vn062dh7ci6jn2k2bcn7szh3ap64sgwkzdd6f1pas37fnr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bongo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bongo";
sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv";
name = "bongo";
};
@@ -2399,7 +2420,7 @@
sha256 = "1apxgj14hgfpz6hjp3384yjf2zrkv4pcncf2zklijs668igvaskq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/boon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/boon";
sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb";
name = "boon";
};
@@ -2420,7 +2441,7 @@
sha256 = "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/boxquote";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/boxquote";
sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s";
name = "boxquote";
};
@@ -2441,7 +2462,7 @@
sha256 = "0y9m6cv70pzcm0v2v8nwmyh1xx40831chx72m85h5ic5db03gy7b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/browse-kill-ring";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/browse-kill-ring";
sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4";
name = "browse-kill-ring";
};
@@ -2462,7 +2483,7 @@
sha256 = "08qz9l0gb7fvknzkp67srhldzkk8cylnbn0qwkflxgcs6ndfk95y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/browse-url-dwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/browse-url-dwim";
sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf";
name = "browse-url-dwim";
};
@@ -2483,7 +2504,7 @@
sha256 = "0s43cvkr1za5sd2cvl55ig34wbp8xyjf85snmf67ps04swyyk92q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/buffer-flip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-flip";
sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098";
name = "buffer-flip";
};
@@ -2504,7 +2525,7 @@
sha256 = "0xdks4jfqyhkh34y48iq3gz8swp0f526kwnaai5mhgvazvs4za8c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/buffer-move";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-move";
sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg";
name = "buffer-move";
};
@@ -2525,7 +2546,7 @@
sha256 = "0rp9hiysy13c4in7b420r7yjza2knlmvphj7l01xbxphbilplqk5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/buffer-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-utils";
sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2";
name = "buffer-utils";
};
@@ -2546,7 +2567,7 @@
sha256 = "0x9q4amsmawi8jqj9xxg81khvb3gyyf9hjvb0w6vhrgjwpxiq8sy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bufshow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bufshow";
sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h";
name = "bufshow";
};
@@ -2567,7 +2588,7 @@
sha256 = "07jzg58a3jxs4mmsgb35f5f8awazlvzak9wrhif6xb60jq1wrp0v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bug-reference-github";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bug-reference-github";
sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6";
name = "bug-reference-github";
};
@@ -2588,7 +2609,7 @@
sha256 = "18d74nwcpk1i8adxzfwz1lgqqcxsc4wkrb490v64pph79dxsi80h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bundler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bundler";
sha256 = "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4";
name = "bundler";
};
@@ -2609,7 +2630,7 @@
sha256 = "03hab3iw2jjckal20zwsw7cm38nf7pan0m96d8ab4i75phy6liyw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/bury-successful-compilation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bury-successful-compilation";
sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3";
name = "bury-successful-compilation";
};
@@ -2630,7 +2651,7 @@
sha256 = "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/butler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/butler";
sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq";
name = "butler";
};
@@ -2651,7 +2672,7 @@
sha256 = "0wkivh8x75gfsks6hy1ps9mlk101hrwsk8hqxx7qhs7f5iv0a082";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/buttercup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buttercup";
sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb";
name = "buttercup";
};
@@ -2672,7 +2693,7 @@
sha256 = "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/button-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/button-lock";
sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp";
name = "button-lock";
};
@@ -2693,7 +2714,7 @@
sha256 = "1k2hmc87ifww95k3m8ksiswkk2z0y8grssba7381g8dnlp6jgprx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cacoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cacoo";
sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z";
name = "cacoo";
};
@@ -2714,7 +2735,7 @@
sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cake";
sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr";
name = "cake";
};
@@ -2735,7 +2756,7 @@
sha256 = "1w7yq35gzzwyf480d8gc5r6jbnawg09l6663q068ir6zr9pp4far";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cake-inflector";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cake-inflector";
sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf";
name = "cake-inflector";
};
@@ -2756,7 +2777,7 @@
sha256 = "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cake2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cake2";
sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x";
name = "cake2";
};
@@ -2777,7 +2798,7 @@
sha256 = "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/calfw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/calfw";
sha256 = "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8";
name = "calfw";
};
@@ -2798,7 +2819,7 @@
sha256 = "0v927m3l5cf0j0rs0nfk5whwqmmxs941d8qalxi19j1ihspjz8d6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/camcorder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/camcorder";
sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi";
name = "camcorder";
};
@@ -2819,7 +2840,7 @@
sha256 = "0xgnq21fb37y05535ipy0z584pnaglxy5bfqzdppyzsy7lpbb4k3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cargo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cargo";
sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx";
name = "cargo";
};
@@ -2840,7 +2861,7 @@
sha256 = "0mg49rpz362ipn5qzqhyfs3d6fpb51rfa73kna3gxdw0wxq2sa7g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/caseformat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/caseformat";
sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk";
name = "caseformat";
};
@@ -2861,7 +2882,7 @@
sha256 = "1hvm6r6a8rgjwnn2mcamwqrmhz424vlr4mbvbri3wmn0ikbk510l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cask";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cask";
sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5";
name = "cask";
};
@@ -2882,7 +2903,7 @@
sha256 = "09y4cr32i2cw06lnq698lajxmqyzq2ah426f4dm176xfbrim89d5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cask-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cask-mode";
sha256 = "0fs9zyihipr3klnh3w22h43qz0wnxplm62x4kx7pm1chq9bc9kz6";
name = "cask-mode";
};
@@ -2903,7 +2924,7 @@
sha256 = "0padb1zfjkmx9kbqnqh744qvpd3ln0khwxifxld9cpcpdp5k04vc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cask-package-toolset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cask-package-toolset";
sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g";
name = "cask-package-toolset";
};
@@ -2924,7 +2945,7 @@
sha256 = "1j1lw5zifp7q1ykm6si0nzxfp7n3z2lzla2njkkxmc2s6m7w4x1a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/caskxy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/caskxy";
sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s";
name = "caskxy";
};
@@ -2945,7 +2966,7 @@
sha256 = "125d5i7ycdn2hgffc1l3jqcfzvk70m1ciywj4h53qakkl15r9m38";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cbm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cbm";
sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn";
name = "cbm";
};
@@ -2966,7 +2987,7 @@
sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cdlatex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cdlatex";
sha256 = "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64";
name = "cdlatex";
};
@@ -2987,7 +3008,7 @@
sha256 = "07h5g905i1jglsryl0dnqxz8yya5kkyjjggzbk4nl3rcj41lyas7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/celery";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/celery";
sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h";
name = "celery";
};
@@ -3008,7 +3029,7 @@
sha256 = "08hqgsjvs62l1cfzshbpj80xd8365qmx2b5r5jq20d5cj68s36wl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cerbere";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cerbere";
sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06";
name = "cerbere";
};
@@ -3029,7 +3050,7 @@
sha256 = "1pkbg1zlcfbzsxl0yhz1g9cn77lgw5p9g8xfvdm4ilsia9zy7d29";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cfengine-code-style";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cfengine-code-style";
sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a";
name = "cfengine-code-style";
};
@@ -3050,7 +3071,7 @@
sha256 = "0n93qz5hzsnrs6c3y5yighfpdpkkmabxyi5i755hfcs5007v199v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chapel-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chapel-mode";
sha256 = "0hmnsv8xf85fc4jqkaqz5j3sf56hgib4jp530vvyc2dl2sps6vzz";
name = "chapel-mode";
};
@@ -3071,7 +3092,7 @@
sha256 = "0vb03k10i8vwy5wv65xl15kcsh9zz4y2xhpgndih87ssckdnhhlw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/char-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/char-menu";
sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l";
name = "char-menu";
};
@@ -3092,7 +3113,7 @@
sha256 = "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/charmap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/charmap";
sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84";
name = "charmap";
};
@@ -3113,7 +3134,7 @@
sha256 = "09ypxhfad3v1pz0xhw4xgxvfj7ad2kb3ff9zy1mnw7fzsa7gw6nj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/checkbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/checkbox";
sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa";
name = "checkbox";
};
@@ -3134,7 +3155,7 @@
sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/chinese-word-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-word-at-point";
sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4";
name = "chinese-word-at-point";
};
@@ -3155,7 +3176,7 @@
sha256 = "0pbgfm9hkryanb4fly74w417h6bw9mnad5k5raj9ypiwgcz2r0n8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cider";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider";
sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx";
name = "cider";
};
@@ -3176,7 +3197,7 @@
sha256 = "1rkd76561h93si4lpisz3qnaj48dx8x01nd59a3lgpqsbbibnccf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cider-eval-sexp-fu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider-eval-sexp-fu";
sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq";
name = "cider-eval-sexp-fu";
};
@@ -3197,7 +3218,7 @@
sha256 = "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cil-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cil-mode";
sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y";
name = "cil-mode";
};
@@ -3218,7 +3239,7 @@
sha256 = "0lg7f71kdq3zzc85xp9p81vdarz6d6l5zy9175c67ps9smdx528i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/circe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/circe";
sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07";
name = "circe";
};
@@ -3239,7 +3260,7 @@
sha256 = "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cl-format";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cl-format";
sha256 = "1259ykj6z6m6gaqhkmj5f3q9vyk7idpvlvlma5likpknxj5f444v";
name = "cl-format";
};
@@ -3260,7 +3281,7 @@
sha256 = "12vgi5dicx3lxzngjcg9g3nflrhfy9wdw6ldm72zarp1h96jy5cw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cl-lib-highlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cl-lib-highlight";
sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8";
name = "cl-lib-highlight";
};
@@ -3281,7 +3302,7 @@
sha256 = "0w34ixzk8vs2nv5xr7l1b3k0crl1lqvbq6gs5r4b8rhsx9b6c1mb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/click-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/click-mode";
sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r";
name = "click-mode";
};
@@ -3302,7 +3323,7 @@
sha256 = "0h856l6rslawf3vg37xhsaw5w56r9qlwzbqapg751qg0v7wf0860";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cliphist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cliphist";
sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29";
name = "cliphist";
};
@@ -3323,7 +3344,7 @@
sha256 = "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clips-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clips-mode";
sha256 = "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf";
name = "clips-mode";
};
@@ -3344,7 +3365,7 @@
sha256 = "0qjj40h8ryrs02rj73hkyhcjxdz926qxgvnjidav3sw2ggn8vdl3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clj-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clj-refactor";
sha256 = "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz";
name = "clj-refactor";
};
@@ -3376,7 +3397,7 @@
sha256 = "18gv8vmmpiyq16cq4nr9nk2bmc5y2rsv21wjl4ji29rc7566shha";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cljr-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cljr-helm";
sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc";
name = "cljr-helm";
};
@@ -3397,7 +3418,7 @@
sha256 = "0hz6a7gj0zfsdaifkhwf965c96rkjc3kivvqlf50zllsw0ysbnn0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clocker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clocker";
sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k";
name = "clocker";
};
@@ -3418,7 +3439,7 @@
sha256 = "1x1kfycf3023z0r3v7xqci59k8jv5wn2vqc9y0nx7k5qgifmswrx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clojure-cheatsheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-cheatsheet";
sha256 = "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv";
name = "clojure-cheatsheet";
};
@@ -3431,15 +3452,15 @@
clojure-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clojure-mode";
- version = "5.3.0";
+ version = "5.4.0";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clojure-mode";
- rev = "8ef7127da214cb7fd4b47fc943462f2a8bfb8f85";
- sha256 = "1x7nl5wzcah9hnlj5jfd3y5604w60zcqcw1nn6vw335c2vzzissj";
+ rev = "8739cea528699ae80d04867d588be42a786ee58f";
+ sha256 = "1hz0dna07yw04swzr42fbv1384mq88j5npcgxj9db0ghdbnibq7g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clojure-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-mode";
sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np";
name = "clojure-mode";
};
@@ -3452,15 +3473,15 @@
clojure-mode-extra-font-locking = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clojure-mode-extra-font-locking";
- version = "5.3.0";
+ version = "5.4.0";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clojure-mode";
- rev = "8ef7127da214cb7fd4b47fc943462f2a8bfb8f85";
- sha256 = "1x7nl5wzcah9hnlj5jfd3y5604w60zcqcw1nn6vw335c2vzzissj";
+ rev = "8739cea528699ae80d04867d588be42a786ee58f";
+ sha256 = "1hz0dna07yw04swzr42fbv1384mq88j5npcgxj9db0ghdbnibq7g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clojure-mode-extra-font-locking";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-mode-extra-font-locking";
sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n";
name = "clojure-mode-extra-font-locking";
};
@@ -3481,7 +3502,7 @@
sha256 = "0sw34yjp8934xd2n76lbwyvxkbyz5pxszj6gkflas8lfjvms9z7d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clojure-quick-repls";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-quick-repls";
sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0";
name = "clojure-quick-repls";
};
@@ -3502,7 +3523,7 @@
sha256 = "1p0w83m9j4a6va4g68a4gcfbdkp8nic0q8cm28l8nr7czd5s0yl6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/clojure-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-snippets";
sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij";
name = "clojure-snippets";
};
@@ -3523,7 +3544,7 @@
sha256 = "1p251vyh8fc6xzaf0v7yvf4wkrvcfjdb3qr88ll4xcb61gj3vi3a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/closql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/closql";
sha256 = "0a8fqw8n03x9mygvzb95m8mmfqp3j8hynwafvryjsl0np0695b6l";
name = "closql";
};
@@ -3544,7 +3565,7 @@
sha256 = "1rwln3ms71fys3rdv3sx8w706aqn874im3kqcfrkxz86wiazm2d5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cm-mode";
sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x";
name = "cm-mode";
};
@@ -3565,7 +3586,7 @@
sha256 = "14z5izpgby7lak6hzjwsph31awg5126hcjzld21ihknhlg09sw7q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cmake-ide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-ide";
sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg";
name = "cmake-ide";
};
@@ -3586,7 +3607,7 @@
sha256 = "10adf81lig0mbm6hdi031p2d7x3yj4fq8vb4pavy6v2xgpj1j5jx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cmake-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-mode";
sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7";
name = "cmake-mode";
};
@@ -3607,7 +3628,7 @@
sha256 = "10xlny2agxjknvnjdnw41cyb3d361yy0wvpc8l1d0xwnmmfh3bxk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cmake-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-project";
sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3";
name = "cmake-project";
};
@@ -3628,7 +3649,7 @@
sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/codic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/codic";
sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn";
name = "codic";
};
@@ -3649,7 +3670,7 @@
sha256 = "0yhmg5j051mviqp5laz7y1zjs1w9ykbbxqm7vrgf2py0hpd1kcrg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/coffee-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coffee-mode";
sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1";
name = "coffee-mode";
};
@@ -3659,6 +3680,27 @@
license = lib.licenses.free;
};
}) {};
+ color-identifiers-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "color-identifiers-mode";
+ version = "1.0.0";
+ src = fetchFromGitHub {
+ owner = "ankurdave";
+ repo = "color-identifiers-mode";
+ rev = "536151410dbb198b328dc62b829d9692cec0b1bd";
+ sha256 = "1zwgyp65jivds9zvbp5k5q3gazffh3w0mvs739ddq93lkf165rwh";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-identifiers-mode";
+ sha256 = "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq";
+ name = "color-identifiers-mode";
+ };
+ packageRequires = [ dash emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/color-identifiers-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
color-theme-modern = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "color-theme-modern";
@@ -3670,7 +3712,7 @@
sha256 = "0apvqrva3f7valjrxpslln8460kpr82z4zazj3lg3j82k102zla9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/color-theme-modern";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-modern";
sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm";
name = "color-theme-modern";
};
@@ -3691,7 +3733,7 @@
sha256 = "13jmg05skv409z8pg5m9rzkajj9knyln0ff8a3i1pbpyrnpngmmc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/color-theme-sanityinc-solarized";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-sanityinc-solarized";
sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf";
name = "color-theme-sanityinc-solarized";
};
@@ -3712,7 +3754,7 @@
sha256 = "0w99ypq048xldl1mrgc7qr4n2770dm48aknhp7q0176l43nvxnqf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/color-theme-sanityinc-tomorrow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-sanityinc-tomorrow";
sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd";
name = "color-theme-sanityinc-tomorrow";
};
@@ -3733,7 +3775,7 @@
sha256 = "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/colorsarenice-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/colorsarenice-theme";
sha256 = "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi";
name = "colorsarenice-theme";
};
@@ -3754,7 +3796,7 @@
sha256 = "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/commander";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/commander";
sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393";
name = "commander";
};
@@ -3775,7 +3817,7 @@
sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/comment-dwim-2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/comment-dwim-2";
sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj";
name = "comment-dwim-2";
};
@@ -3796,7 +3838,7 @@
sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/commenter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/commenter";
sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3";
name = "commenter";
};
@@ -3817,7 +3859,7 @@
sha256 = "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/common-lisp-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/common-lisp-snippets";
sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl";
name = "common-lisp-snippets";
};
@@ -3838,7 +3880,7 @@
sha256 = "08rrjfp2amgya1hswjz3vd5ja6lg2nfmm7454p0h1naz00hlmmw0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company";
sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4";
name = "company";
};
@@ -3859,7 +3901,7 @@
sha256 = "1i6788qfinh47c5crgr57ykgbp6bvk1afcl00c8gywxsf8srvnvy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-anaconda";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-anaconda";
sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl";
name = "company-anaconda";
};
@@ -3880,7 +3922,7 @@
sha256 = "1dds3fynbd6yb0874aw6g4qk5zmq3pgl3jmcp38md027qalgqmym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-ansible";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ansible";
sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d";
name = "company-ansible";
};
@@ -3901,7 +3943,7 @@
sha256 = "1pja44g15d11kl47abzykrp28j782nkbmb0db0ilpc96xf1fjlsw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-cabal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-cabal";
sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra";
name = "company-cabal";
};
@@ -3922,7 +3964,7 @@
sha256 = "0s6gzdmxlsl1l0vh52xspxys1wmsq063p6nva6qisg1r622gjzjl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-coq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-coq";
sha256 = "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa";
name = "company-coq";
};
@@ -3943,7 +3985,7 @@
sha256 = "1f8sjjms9kxni153pia6b45p2ih2mhm2r07d0j3fmxmz3q2jdldd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-emoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-emoji";
sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3";
name = "company-emoji";
};
@@ -3964,7 +4006,7 @@
sha256 = "0y9i0q37xjbnlnlxq7xjvnpn6ykzbd55g6nbw10z1wg0m2v7f96r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-ghc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ghc";
sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn";
name = "company-ghc";
};
@@ -3985,7 +4027,7 @@
sha256 = "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-go";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-go";
sha256 = "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29";
name = "company-go";
};
@@ -4006,7 +4048,7 @@
sha256 = "17zi0xx8p2diwy1wgrhl6j8p57alwz24rjpz4apyyrqjk09ippq4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-irony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-irony";
sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km";
name = "company-irony";
};
@@ -4027,7 +4069,7 @@
sha256 = "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-jedi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-jedi";
sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj";
name = "company-jedi";
};
@@ -4048,7 +4090,7 @@
sha256 = "0k6bx4i3d2x6kmkzififc8r7vid74bxsvgxp19z7bv1fh6m1f3aa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-math";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-math";
sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87";
name = "company-math";
};
@@ -4069,7 +4111,7 @@
sha256 = "0yxnylpbjrwmqx6px0q3pff4dh00fmfzb09gp4xvn9w9hrxdsx7g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-ngram";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ngram";
sha256 = "1y9k9s8c248m91xld4f5l75j4swml333rpwq590bsx7mrsq131xx";
name = "company-ngram";
};
@@ -4090,7 +4132,7 @@
sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-nixos-options";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-nixos-options";
sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0";
name = "company-nixos-options";
};
@@ -4111,7 +4153,7 @@
sha256 = "1b2v84ss5k43nnbsnvabgvb19ardsacbs1prn2h9i1k2d5mb8icw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-quickhelp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-quickhelp";
sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g";
name = "company-quickhelp";
};
@@ -4132,7 +4174,7 @@
sha256 = "0i1fh5lvqwlgn3g3fzh0xacxyljx6gkryipn133vfkv4jbns51n4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-restclient";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-restclient";
sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb";
name = "company-restclient";
};
@@ -4159,7 +4201,7 @@
sha256 = "1ynyxrpl9qd2l60dpn9kb04zxgq748fffb0yj8pxvm9q3abblf3m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-sourcekit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-sourcekit";
sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs";
name = "company-sourcekit";
};
@@ -4180,7 +4222,7 @@
sha256 = "11cinjsyf24d4a682ikniprxd1vkwn6mynsp5dzab6yzq09np78i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-tern";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-tern";
sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh";
name = "company-tern";
};
@@ -4201,7 +4243,7 @@
sha256 = "0b0k75rg43h48dbcqiid947nspqiqxkiqcmvph9aqpxlfr67bz5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-web";
sha256 = "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy";
name = "company-web";
};
@@ -4222,7 +4264,7 @@
sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/company-ycmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ycmd";
sha256 = "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk";
name = "company-ycmd";
};
@@ -4243,7 +4285,7 @@
sha256 = "1mii790r6gaz0nidlaib50wj4vryfvw7ls6b4mg1nw5km7hplpgq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/composable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/composable";
sha256 = "1fs4pczjn9sv12sladf6zbkz0cmzxr0jaqkiwryydal1l5nqqxcy";
name = "composable";
};
@@ -4264,7 +4306,7 @@
sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/concurrent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/concurrent";
sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf";
name = "concurrent";
};
@@ -4285,7 +4327,7 @@
sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/conkeror-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/conkeror-minor-mode";
sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933";
name = "conkeror-minor-mode";
};
@@ -4306,7 +4348,7 @@
sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/connection";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/connection";
sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q";
name = "connection";
};
@@ -4327,7 +4369,7 @@
sha256 = "0s4b7dkndhnh8q3plvg2whjx8zd7ffz4hnbn3xh86xd3k7sch7av";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/contextual";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/contextual";
sha256 = "0vribs0fa1xf5kwkmvzjwhiawni0p3v56c5l4dkz8d7wn2g6wfdx";
name = "contextual";
};
@@ -4348,7 +4390,7 @@
sha256 = "00055gzv032xxzqm1hffipljy8fzgsm58cbv8dzajh035jvdgpv7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/corral";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/corral";
sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da";
name = "corral";
};
@@ -4369,7 +4411,7 @@
sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/counsel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/counsel";
sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6";
name = "counsel";
};
@@ -4390,7 +4432,7 @@
sha256 = "01545iy2gaxyd4i8gawgxqi9gbkrjk20djhvc59finnjrblzccn3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/coverage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coverage";
sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm";
name = "coverage";
};
@@ -4411,7 +4453,7 @@
sha256 = "0ji8n4sv0zqmfn4g7ay927d8ya6wrvqdzvd5sc6vicma9gn27lvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/coverlay";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coverlay";
sha256 = "0p5k9254r3i247h6ll6kjsgw3naiff5lgfkmb2wkc870lzggq0m4";
name = "coverlay";
};
@@ -4432,7 +4474,7 @@
sha256 = "1rk0bwdvfrp24z69flh7jg3c8vgvwk6vciixmmmldnrlwhpnbh6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cpputils-cmake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cpputils-cmake";
sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60";
name = "cpputils-cmake";
};
@@ -4453,7 +4495,7 @@
sha256 = "169ai0xkh3988racnhaapxw0v1pbxvcaq470x1qacdzdpka4a7bs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/creds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/creds";
sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk";
name = "creds";
};
@@ -4474,7 +4516,7 @@
sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/crm-custom";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crm-custom";
sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c";
name = "crm-custom";
};
@@ -4495,7 +4537,7 @@
sha256 = "13kkpilijr0q455srgn8yhzqikxask11z8d3rji7cc1yw7kf6y0i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/crux";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crux";
sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c";
name = "crux";
};
@@ -4516,7 +4558,7 @@
sha256 = "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cryptol-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cryptol-mode";
sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2";
name = "cryptol-mode";
};
@@ -4537,7 +4579,7 @@
sha256 = "0dqih7cy57sciqn5vz5fiwynpld96qldyl7jcgn9qpwnzb401ayx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/csharp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/csharp-mode";
sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0";
name = "csharp-mode";
};
@@ -4558,7 +4600,7 @@
sha256 = "13zq8kym1y6bzrpxbcdz32323a6azy5px4ridff6xh8bfprwlay3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ctable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctable";
sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1";
name = "ctable";
};
@@ -4577,7 +4619,7 @@
sha256 = "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ctags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctags";
sha256 = "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y";
name = "ctags";
};
@@ -4598,7 +4640,7 @@
sha256 = "05vhryqcydvcfm18fwby344931kzzh47x4l5ixy95xkcjkzrj8c7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ctags-update";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctags-update";
sha256 = "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf";
name = "ctags-update";
};
@@ -4619,7 +4661,7 @@
sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ctxmenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctxmenu";
sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp";
name = "ctxmenu";
};
@@ -4640,7 +4682,7 @@
sha256 = "1y685qfdkjyl7dwyvivlgc2lwp102vy6hvcb9zynw84c49f726sn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cuda-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cuda-mode";
sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300";
name = "cuda-mode";
};
@@ -4661,7 +4703,7 @@
sha256 = "1yhizh8j745hv5ancpvijds9dasvsr2scwjscksp2x3krnd26ssp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cyberpunk-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cyberpunk-theme";
sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9";
name = "cyberpunk-theme";
};
@@ -4682,7 +4724,7 @@
sha256 = "1vkwm1n0amf0y0jdyvqskp00b6aijqhd7wclzkzrq7glrvj2z1xw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cyphejor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cyphejor";
sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g";
name = "cyphejor";
};
@@ -4703,7 +4745,7 @@
sha256 = "11ddx5c535a76pnxqdfahchi839v59iwvpiyswigskyfhzxn5ic1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/cython-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cython-mode";
sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i";
name = "cython-mode";
};
@@ -4724,7 +4766,7 @@
sha256 = "0kbncsaxj93jd79sd6dkap29fz8z100wi1nk0njd568glm8q4k5g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/d-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/d-mode";
sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2";
name = "d-mode";
};
@@ -4745,7 +4787,7 @@
sha256 = "1gdh4izwhyly6dyrmh7lfpd12gnb8hpnafj8br51ksijsssrf21f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/darcula-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darcula-theme";
sha256 = "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg";
name = "darcula-theme";
};
@@ -4766,7 +4808,7 @@
sha256 = "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/darktooth-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darktooth-theme";
sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs";
name = "darktooth-theme";
};
@@ -4787,7 +4829,7 @@
sha256 = "1vkn95dyc0pppnflyqlrlx32g9zc7wdcgc9fgf1hgvqp313ydfcs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dart-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dart-mode";
sha256 = "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff";
name = "dart-mode";
};
@@ -4808,7 +4850,7 @@
sha256 = "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dash";
sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz";
name = "dash";
};
@@ -4829,7 +4871,7 @@
sha256 = "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dash-functional";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dash-functional";
sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p";
name = "dash-functional";
};
@@ -4850,7 +4892,7 @@
sha256 = "06aprbhhxb6bbzmf0r5yq2ry6x7708vp4d94ja3ir6zcwc96wn0k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/date-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/date-at-point";
sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0";
name = "date-at-point";
};
@@ -4871,7 +4913,7 @@
sha256 = "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/date-field";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/date-field";
sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk";
name = "date-field";
};
@@ -4881,6 +4923,27 @@
license = lib.licenses.free;
};
}) {};
+ datetime = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "datetime";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "doublep";
+ repo = "datetime";
+ rev = "dd38546d80a8aa30b9e259490ab82c337e851f54";
+ sha256 = "1w8qzj8qrgkygprb3ibyx28j951lv7k1frbpdwz69cg23whi3s30";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/datetime";
+ sha256 = "0mnkckibymc5dswmzd1glggna2fspk06ld71m7aaz6j78nfrm850";
+ name = "datetime";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/datetime";
+ license = lib.licenses.free;
+ };
+ }) {};
decide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "decide";
@@ -4892,7 +4955,7 @@
sha256 = "0wm24ndiyhrayg1gz456s0s1ddlpcvg4vp555g4zzl3zcpsy94bg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/decide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/decide";
sha256 = "1gjkays48lhrifi9jwja5n2dpxjbl7f9rmka1nsqg9vf7s59vhhc";
name = "decide";
};
@@ -4913,7 +4976,7 @@
sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dedicated";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dedicated";
sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9";
name = "dedicated";
};
@@ -4934,7 +4997,7 @@
sha256 = "031f8ls1q80j717cg6b4pjd37wk7vrl5hcycsn8ca7yssmqa8q81";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/default-text-scale";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/default-text-scale";
sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi";
name = "default-text-scale";
};
@@ -4955,7 +5018,7 @@
sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/deferred";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/deferred";
sha256 = "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr";
name = "deferred";
};
@@ -4976,7 +5039,7 @@
sha256 = "1lyqd9cgj7cb2lasf6ycw5j8wnsx2nrfm8ra4sg3dgcspm01a89g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/define-word";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/define-word";
sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a";
name = "define-word";
};
@@ -4995,7 +5058,7 @@
sha256 = "1s71xk5c1hck7lh780lpa1q1c8qdpf2wdahl2406mgf06y1ifp7b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/deft";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/deft";
sha256 = "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p";
name = "deft";
};
@@ -5016,7 +5079,7 @@
sha256 = "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/demangle-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/demangle-mode";
sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk";
name = "demangle-mode";
};
@@ -5037,7 +5100,7 @@
sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/describe-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/describe-number";
sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji";
name = "describe-number";
};
@@ -5058,7 +5121,7 @@
sha256 = "184zi5fv7ranghfx1hpx7j2wnk6kim8ysliyw2c5c1294sxxq3f3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/desktop+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/desktop+";
sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8";
name = "desktop-plus";
};
@@ -5079,7 +5142,7 @@
sha256 = "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/desktop-registry";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/desktop-registry";
sha256 = "1sfj0w6hlrx37js63fn1v5xc9ngmahv07g42z68717md6w3c8g0v";
name = "desktop-registry";
};
@@ -5100,7 +5163,7 @@
sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dictionary";
sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w";
name = "dictionary";
};
@@ -5121,7 +5184,7 @@
sha256 = "0sjwpvzd4x9c1b9iv66b33llvp96ryyzyp8pn1rnhvxfvjv43cnz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/diff-hl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diff-hl";
sha256 = "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6";
name = "diff-hl";
};
@@ -5142,7 +5205,7 @@
sha256 = "1ci2gmyl0i736b2sxh77fyg4hs2pkn6rn9z7v2hzv6xlgqd6j3z6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/diffview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diffview";
sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k";
name = "diffview";
};
@@ -5163,7 +5226,7 @@
sha256 = "0jzwaivsqh66py9hd3dg1ys5rc3p6pn8ndpwpvgyivk4pg6zhhj6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/digistar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/digistar-mode";
sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s";
name = "digistar-mode";
};
@@ -5184,7 +5247,7 @@
sha256 = "1vrd74vmm60gb69a4in412mjncnhkjbfpakpaa6w9rj7w4kyfiz1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dim";
sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52";
name = "dim";
};
@@ -5197,15 +5260,15 @@
dim-autoload = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dim-autoload";
- version = "1.1.4";
+ version = "1.2.0";
src = fetchFromGitHub {
owner = "tarsius";
repo = "dim-autoload";
- rev = "d68ef0d2f9204ffe0d521e2647e6d8f473588fd3";
- sha256 = "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans";
+ rev = "ac04fade74a50fd2aac48fc298e4d21d8427f737";
+ sha256 = "0jn3hwnqg455fz85m79mbwsiv93ps4sfr1fcfjfwj3qhhbhq7d82";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dim-autoload";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dim-autoload";
sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9";
name = "dim-autoload";
};
@@ -5226,7 +5289,7 @@
sha256 = "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/diminish";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diminish";
sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43";
name = "diminish";
};
@@ -5247,7 +5310,7 @@
sha256 = "1xg9cschjd2m0zal296q54ifk5i4s1s3azwfdkbgshxxgvxaky0w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dionysos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dionysos";
sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz";
name = "dionysos";
};
@@ -5268,7 +5331,7 @@
sha256 = "1d813b4wiamif48v0za5invnss52mn7yw3hzrlxd4918gy5y2r74";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-atool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-atool";
sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w";
name = "dired-atool";
};
@@ -5289,7 +5352,7 @@
sha256 = "1m0nx8wd6q56qbp5mbp9n466kyglrz34nflwvgd1qnmi08jwswgv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-efap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-efap";
sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00";
name = "dired-efap";
};
@@ -5310,7 +5373,7 @@
sha256 = "0lrc4082ghg77x5jl26hj8c7cp48yjvqhv4g3j0pznpzb4qyfnq0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-fdclone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-fdclone";
sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9";
name = "dired-fdclone";
};
@@ -5331,7 +5394,7 @@
sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-imenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-imenu";
sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1";
name = "dired-imenu";
};
@@ -5352,7 +5415,7 @@
sha256 = "0rpln6m3j4xbhrmmz18hby6xpzpzbf1c5hr7bxvna265cb0i5rn7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-k";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-k";
sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8";
name = "dired-k";
};
@@ -5373,7 +5436,7 @@
sha256 = "1a9r1kz5irpvb2byabbf27sy7rjzaygfpqimpag41sj955wlgy9a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-quick-sort";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-quick-sort";
sha256 = "01vrk3wqq2zmcblyp9abi2lvrzr2a5ca8r8gjjnr5223037ppl3l";
name = "dired-quick-sort";
};
@@ -5394,7 +5457,7 @@
sha256 = "0mfvyjbx7l7a1sfq47m6rb507xxw92nykkkpzmi2mpwv30f1c22j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dired-single";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-single";
sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf";
name = "dired-single";
};
@@ -5415,7 +5478,7 @@
sha256 = "0p8c2hjgr81idm1psv3i3v5hr5rv0875ig8app2yqjwzvl0nn73f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/direx";
sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm";
name = "direx";
};
@@ -5436,7 +5499,7 @@
sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/direx-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/direx-grep";
sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2";
name = "direx-grep";
};
@@ -5457,7 +5520,7 @@
sha256 = "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/discover";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/discover";
sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga";
name = "discover";
};
@@ -5478,7 +5541,7 @@
sha256 = "1wlqyl03hhnflbyay3qlvdzqzvv5rbybcjpfddggda7ias9h0pr4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/discover-my-major";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/discover-my-major";
sha256 = "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg";
name = "discover-my-major";
};
@@ -5499,7 +5562,7 @@
sha256 = "1b1a1bwc6nv6wkd8jg1cqmjb9m9pxi5i2wbrz97fgii23dwfmlnl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dispass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dispass";
sha256 = "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z";
name = "dispass";
};
@@ -5520,7 +5583,7 @@
sha256 = "069ymd1hinc6g1h0iy8pf6sckvasssi2p6lgaway6yj1gvks22vz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dix";
sha256 = "0c5fmknpy6kwlz7nx0csbbia1maz0szj7yha1p7wq28s3a5426xq";
name = "dix";
};
@@ -5541,7 +5604,7 @@
sha256 = "1wkgb6wq3crnpnd747ilwl2kbz5fjk5q5z1xza8j4bf1ic2aybb8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/docker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/docker";
sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk";
name = "docker";
};
@@ -5562,7 +5625,7 @@
sha256 = "1cmh8pwwa6dhl4w66wy8s5yqxs326mnaalg1ig2yhl4bjk8gi4m2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dockerfile-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dockerfile-mode";
sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa";
name = "dockerfile-mode";
};
@@ -5583,7 +5646,7 @@
sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/doom";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/doom";
sha256 = "098q77lix7kwpmarv26yndyk1yy1h4k3l9kaf3g7sg6ji6k7d3wl";
name = "doom";
};
@@ -5604,7 +5667,7 @@
sha256 = "13czcxmmvy4g9ysfjr6lb91c0fqv1xv8ppd27wbfsrgxm3aaqimb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/downplay-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/downplay-mode";
sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b";
name = "downplay-mode";
};
@@ -5625,7 +5688,7 @@
sha256 = "10a8z7bqn6dmj9pgkrx5pq7kbh4i1n2vvv6600a8wp8n8wqbc2i5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dracula-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dracula-theme";
sha256 = "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r";
name = "dracula-theme";
};
@@ -5646,7 +5709,7 @@
sha256 = "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/draft-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/draft-mode";
sha256 = "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh";
name = "draft-mode";
};
@@ -5667,7 +5730,7 @@
sha256 = "131ww26pb97q2gyjhfrsf7nw2pi5b1kba0cgl97qc017sfhg92v6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/drag-stuff";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drag-stuff";
sha256 = "1q67q20gfhixzkmddhzp6fd8z2qfpsmyyvymmaffjcscnjaz21w4";
name = "drag-stuff";
};
@@ -5688,7 +5751,7 @@
sha256 = "1hbm3zdmd28fjl8fky0kq4gs2bxsrn2zxk9rd1wa2wky43ycnd35";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/drupal-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drupal-mode";
sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn";
name = "drupal-mode";
};
@@ -5709,7 +5772,7 @@
sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/drupal-spell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drupal-spell";
sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3";
name = "drupal-spell";
};
@@ -5730,7 +5793,7 @@
sha256 = "17yldk76mxakhb90bma7r4z9jgx02wankgk17r2di196mc04bj7b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ducpel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ducpel";
sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc";
name = "ducpel";
};
@@ -5751,7 +5814,7 @@
sha256 = "1czw5z6w8pcc7ra5d82v06padyiy7c3ds00chw5xgyvq6s73gzn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dumb-jump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dumb-jump";
sha256 = "1pgbs2k1g8w7gr65w50fazrmcky6w37c9rvyxqfmh06yx90nj4kc";
name = "dumb-jump";
};
@@ -5772,7 +5835,7 @@
sha256 = "033yqc19xxirbva65lz8hnwxj7pn7fx7dlnf70kq71iqclqa4v25";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dummy-h-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dummy-h-mode";
sha256 = "10lzfzq7md6s28w2zzlhswn3d6765g4vqzyjn2q5ms8pd2i4b4in";
name = "dummy-h-mode";
};
@@ -5792,7 +5855,7 @@
sha256 = "19aid1rqpqj0fvln98db5imfk1griqld55xsr9plm6kwrr174syq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dyalog-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dyalog-mode";
sha256 = "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq";
name = "dyalog-mode";
};
@@ -5813,7 +5876,7 @@
sha256 = "1ppwlill1z4vqd566h9zi6zx5jb7hggmnmqrga84j5n7fwqvgz7f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dynamic-fonts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dynamic-fonts";
sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q";
name = "dynamic-fonts";
};
@@ -5834,7 +5897,7 @@
sha256 = "05z7gshrn7wp0qkb9ns6rgmcp375yllmkwhdsm4amg0dk3j2slbr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/dynamic-ruler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dynamic-ruler";
sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc";
name = "dynamic-ruler";
};
@@ -5855,7 +5918,7 @@
sha256 = "0g0cz5a0vf31w27ljq5sn52mq15ynadl6cfbb97ja5zj1zxsxgjl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm";
sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la";
name = "e2wm";
};
@@ -5876,7 +5939,7 @@
sha256 = "1yf081rac0chvkjha9z9xi1p983gmhjph0hai6ppsz5hzf2vikpp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm-R";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-R";
sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh";
name = "e2wm-R";
};
@@ -5897,7 +5960,7 @@
sha256 = "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-direx";
sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg";
name = "e2wm-direx";
};
@@ -5918,7 +5981,7 @@
sha256 = "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm-pkgex4pl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-pkgex4pl";
sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil";
name = "e2wm-pkgex4pl";
};
@@ -5939,7 +6002,7 @@
sha256 = "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm-sww";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-sww";
sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8";
name = "e2wm-sww";
};
@@ -5960,7 +6023,7 @@
sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/e2wm-term";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-term";
sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g";
name = "e2wm-term";
};
@@ -5981,7 +6044,7 @@
sha256 = "0r56nqrj6iaz57ys6hqdq5qkyliv7dj6dv274l228r7x0axrwd9m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/easy-kill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-kill";
sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i";
name = "easy-kill";
};
@@ -6002,7 +6065,7 @@
sha256 = "18fdlxz9k961k8wafdw0gq0y514bvrfvx6qc1lmm4pk3gdcfbbi0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/easy-kill-extras";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-kill-extras";
sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy";
name = "easy-kill-extras";
};
@@ -6023,7 +6086,7 @@
sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/easy-repeat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-repeat";
sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06";
name = "easy-repeat";
};
@@ -6044,7 +6107,7 @@
sha256 = "0ysym38xaqyx1wc7xd3fvjm62dmiq4727dnjvyxv7hs4czff1gcb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ebal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebal";
sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg";
name = "ebal";
};
@@ -6065,7 +6128,7 @@
sha256 = "16hiwz8a1hyyiflzn53v97704v783pg18yxapn7pqk90fbcf7czw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ebf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebf";
sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb";
name = "ebf";
};
@@ -6086,7 +6149,7 @@
sha256 = "1kcmbr4a2jxd62s4nc8xshrksb36xwb17j6c0hjzvb75r544xy6s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ebib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebib";
sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid";
name = "ebib";
};
@@ -6107,7 +6170,7 @@
sha256 = "1s9r1qj7cjsjvvphdpyjff6y598xpbrm9qjv5ncq15w6ac7yxzvc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ecb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ecb";
sha256 = "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89";
name = "ecb";
};
@@ -6128,7 +6191,7 @@
sha256 = "1r5hlcspznvfm111l1z0r4isd582qj64sa8cqk6hyi3y1hyp1xxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ecukes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ecukes";
sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0";
name = "ecukes";
};
@@ -6149,7 +6212,7 @@
sha256 = "0xy3q68i47a3s81jwr0rdvc1722bp78ng56xm53pri05g1z0db9s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edbi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edbi";
sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr";
name = "edbi";
};
@@ -6170,7 +6233,7 @@
sha256 = "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edit-indirect";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-indirect";
sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439";
name = "edit-indirect";
};
@@ -6191,7 +6254,7 @@
sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edit-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-list";
sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv";
name = "edit-list";
};
@@ -6212,7 +6275,7 @@
sha256 = "12dp1xj09jrp0kxp9xb6cak9dn6zkyis1wfn4fnhzmxxnrd8c5rn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edit-server";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-server";
sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0";
name = "edit-server";
};
@@ -6233,7 +6296,7 @@
sha256 = "1zb8f6gfflwzh1zkhcd1nhan9wxmdm0gpp96fm5gjn639zs88539";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/editorconfig";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/editorconfig";
sha256 = "0zv96m07ml8i3k7zm7sdci4hn611n3ypna7zppfkwbdyr7d5k2gc";
name = "editorconfig";
};
@@ -6254,7 +6317,7 @@
sha256 = "06v34l9dkykrrdfpnm3zi5wjm0fdvy76pbkfnk92wqkjp8fqimhd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edn";
sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg";
name = "edn";
};
@@ -6275,7 +6338,7 @@
sha256 = "1a1apa48n24yisd2zw5k4lfkngx3016x6y11qi80hg75vrnmg7f1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/edts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edts";
sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr";
name = "edts";
};
@@ -6296,7 +6359,7 @@
sha256 = "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/egg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/egg";
sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i";
name = "egg";
};
@@ -6317,7 +6380,7 @@
sha256 = "07vdvjy4x21gyw2r4rxrj929hj1jp4a8igwgb2m5a5x50capwzhy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/egison-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/egison-mode";
sha256 = "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi";
name = "egison-mode";
};
@@ -6336,7 +6399,7 @@
sha256 = "0w9j5q5pzw55nwsw5wic7dl7psvg75vk1cxhrz2isgra6gissh9z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eide";
sha256 = "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz";
name = "eide";
};
@@ -6357,7 +6420,7 @@
sha256 = "0w2j0bbqnba1wr12f0zk87zwnxf6xhchx224fwgwqd3kg0x5z0r3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ein";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ein";
sha256 = "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp";
name = "ein";
};
@@ -6378,7 +6441,7 @@
sha256 = "0m7qsk378c30fva2n2ag99rsdklx5nsqc395msg1ab11sbpxvis0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eink-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eink-theme";
sha256 = "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn";
name = "eink-theme";
};
@@ -6399,7 +6462,7 @@
sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-autoyas";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-autoyas";
sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c";
name = "el-autoyas";
};
@@ -6420,7 +6483,7 @@
sha256 = "1awyh9ffd6a4cia239s89asb88ddqlnrv757d76vcb701pq412bz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-get";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-get";
sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz";
name = "el-get";
};
@@ -6441,7 +6504,7 @@
sha256 = "1mzla7ijmq1mgzr6bf16mjdycbf8ylsf4zdk4j6fh5kw5n4k6c5n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-init";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-init";
sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5";
name = "el-init";
};
@@ -6462,7 +6525,7 @@
sha256 = "1488wv0f9ihzzf9fl8cki044k61b0kva604hdwpb2qk9gnjr4g1l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-init-viewer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-init-viewer";
sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m";
name = "el-init-viewer";
};
@@ -6483,7 +6546,7 @@
sha256 = "13mv1rhgkwiww2wh5w926jz7idppp492wir1vdl245c5x50dh4f7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-mock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-mock";
sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l";
name = "el-mock";
};
@@ -6504,7 +6567,7 @@
sha256 = "0390pfgfgj7hwfmkwikwhip0hmwkgx784l529cqvalc31jchi94i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-spice";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-spice";
sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg";
name = "el-spice";
};
@@ -6525,7 +6588,7 @@
sha256 = "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/el-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-x";
sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g";
name = "el-x";
};
@@ -6546,7 +6609,7 @@
sha256 = "0hlj6jn9gmi00sqghxswkxpgk65c4gy2k7010vpkr2257rd4f3gq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elang";
sha256 = "0frhn3hm8351qzljicpzars28af1fghgv45717ml79rwb4vi6yiy";
name = "elang";
};
@@ -6567,7 +6630,7 @@
sha256 = "1fh9dx669czkwy4msylcg64azz3az27akx55ipnazb5ghmsi7ivk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eldoc-eval";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eldoc-eval";
sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c";
name = "eldoc-eval";
};
@@ -6588,7 +6651,7 @@
sha256 = "1ji6rdbqwk8j0nl6yk3rdqrpgxir99lj9pf6i9rx55l63qyrdfc4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/electric-operator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/electric-operator";
sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2";
name = "electric-operator";
};
@@ -6609,7 +6672,7 @@
sha256 = "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elfeed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elfeed";
sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9";
name = "elfeed";
};
@@ -6630,7 +6693,7 @@
sha256 = "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elfeed-web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elfeed-web";
sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n";
name = "elfeed-web";
};
@@ -6672,7 +6735,7 @@
sha256 = "1k7kprdknqm18dc0nwl7gachm0rivcpa8ng7p7ximalja3nsg2j1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elisp-slime-nav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elisp-slime-nav";
sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c";
name = "elisp-slime-nav";
};
@@ -6693,7 +6756,7 @@
sha256 = "06bi68x49v6f7flpz279mm4jpg31ll3s274givm3pvr8slcxs6xg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elixir-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elixir-mode";
sha256 = "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf";
name = "elixir-mode";
};
@@ -6714,7 +6777,7 @@
sha256 = "0dx5h3sfccc2bp1jxnqqki95x5hp1skw8n5n4lnh703yjga5gkrz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elixir-yasnippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elixir-yasnippets";
sha256 = "0vmkcd88wfafv31lyw0983p4qjj387qf258q7py1ij47fcmfp579";
name = "elixir-yasnippets";
};
@@ -6735,7 +6798,7 @@
sha256 = "086d0lr5kflr4qrpr4xs3sl0vmsc5i5b9vk6ldh7flhrrr8kg784";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elm-mode";
sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1";
name = "elm-mode";
};
@@ -6756,7 +6819,7 @@
sha256 = "0l2iincskpks9yvj3y9zh1b48xli1q39wybr5n96rys5gv0drc9h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elmacro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elmacro";
sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz";
name = "elmacro";
};
@@ -6777,7 +6840,7 @@
sha256 = "080nnw6ddsczbm7gk50x4dkahi77fsybfiki5iyp39fjpa7lfzq3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elmine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elmine";
sha256 = "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz";
name = "elmine";
};
@@ -6798,7 +6861,7 @@
sha256 = "1q4krfrc2dy0vr7q148msfpkcwj55mlsrn4n5xjnya4xj0134ib7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elpa-audit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elpa-audit";
sha256 = "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52";
name = "elpa-audit";
};
@@ -6819,7 +6882,7 @@
sha256 = "0h2xhys3cc9z61ax0ymg5fbsjg6192hwdvfhgmyq7vwibi402r1f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elpa-mirror";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elpa-mirror";
sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8";
name = "elpa-mirror";
};
@@ -6840,7 +6903,7 @@
sha256 = "1x4asq5zqv8wbp034gzcrza9y2nbbwx1nrwi4jnwak0x0yn3c2dj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elpy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elpy";
sha256 = "0n802bh7jj9zgz84xjrxvy33jl6s3hj5dqxafyfr87fank97hb6d";
name = "elpy";
};
@@ -6867,7 +6930,7 @@
sha256 = "14hwl5jzmm43qa4jbpsyswbz4hk1l2iwqh3ank6502bz58877k6c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elscreen-mew";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-mew";
sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4";
name = "elscreen-mew";
};
@@ -6888,7 +6951,7 @@
sha256 = "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elscreen-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-persist";
sha256 = "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k";
name = "elscreen-persist";
};
@@ -6909,7 +6972,7 @@
sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elwm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elwm";
sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9";
name = "elwm";
};
@@ -6930,7 +6993,7 @@
sha256 = "0n5y3xq5dmqpsd9hhg9ac1jkj5qi9y7lgvg5nir3ghd8ldmrg09s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/elx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elx";
sha256 = "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x";
name = "elx";
};
@@ -6951,7 +7014,7 @@
sha256 = "0b9hr3xg53nap6sik9d2cwqi8vfwzv8yqjcin4hab6rg2fkr5mra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacs-eclim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacs-eclim";
sha256 = "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv";
name = "emacs-eclim";
};
@@ -6972,7 +7035,7 @@
sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacs-setup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacs-setup";
sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh";
name = "emacs-setup";
};
@@ -6993,7 +7056,7 @@
sha256 = "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsagist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsagist";
sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64";
name = "emacsagist";
};
@@ -7014,7 +7077,7 @@
sha256 = "1r6cpb7fck5znb7q7zrxcsjn7d3xiqhq8dp1ar1rsd6k4h05by4j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsc";
sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk";
name = "emacsc";
};
@@ -7035,7 +7098,7 @@
sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql";
sha256 = "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax";
name = "emacsql";
};
@@ -7056,7 +7119,7 @@
sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsql-mysql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql-mysql";
sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy";
name = "emacsql-mysql";
};
@@ -7077,7 +7140,7 @@
sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsql-psql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql-psql";
sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3";
name = "emacsql-psql";
};
@@ -7098,7 +7161,7 @@
sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsql-sqlite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql-sqlite";
sha256 = "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i";
name = "emacsql-sqlite";
};
@@ -7119,7 +7182,7 @@
sha256 = "00q344vgihl2s0snibfwsjvxqkbvy2jlqnnid7qw5gcni673b2hl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emacsshot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsshot";
sha256 = "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j";
name = "emacsshot";
};
@@ -7140,7 +7203,7 @@
sha256 = "1a9925n0jcgxcgiz2kmh9zbb1rg9039rlrbr9fr80by9znfwmy67";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emamux";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emamux";
sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz";
name = "emamux";
};
@@ -7161,7 +7224,7 @@
sha256 = "1sagmgcarg7d7b7hv3bqgkxg39fzgxaaq7wz9cf7fpwz0pv8vfy6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/embrace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/embrace";
sha256 = "1w9zp9n91703d6jd4adl2xk574wsr7fm2a9v32b1i9bi3hr0hdjc";
name = "embrace";
};
@@ -7182,7 +7245,7 @@
sha256 = "1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emmet-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emmet-mode";
sha256 = "0wjv4hqddjvbdrmsxzav5rpwnm2n6lr86jzkrnav8f2kyzypdsnr";
name = "emmet-mode";
};
@@ -7203,7 +7266,7 @@
sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emms-mode-line-cycle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-mode-line-cycle";
sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca";
name = "emms-mode-line-cycle";
};
@@ -7224,7 +7287,7 @@
sha256 = "104iw4bl6y33diqs5ayrvdljkhb6f9g2m5p5kh8klgy7z1yjhp4p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emms-player-mpv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-player-mpv";
sha256 = "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y";
name = "emms-player-mpv";
};
@@ -7245,7 +7308,7 @@
sha256 = "15bb8fp2lwr5brfrsjwa47yvja5g2wyaac5a4sh5rn734s64x2sq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emms-player-simple-mpv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-player-simple-mpv";
sha256 = "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1";
name = "emms-player-simple-mpv";
};
@@ -7266,7 +7329,7 @@
sha256 = "1kipxa9ax8zi9qqk19mknpg7nnlzgr734kh9bnklydipwnsy00pi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emms-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-state";
sha256 = "080y02hxxqfn0a0dhq5vm0r020v2q3h1612a2zkq5fxi8ssvhp9i";
name = "emms-state";
};
@@ -7287,7 +7350,7 @@
sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emoji-cheat-sheet-plus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emoji-cheat-sheet-plus";
sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv";
name = "emoji-cheat-sheet-plus";
};
@@ -7308,7 +7371,7 @@
sha256 = "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emoji-fontset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emoji-fontset";
sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d";
name = "emoji-fontset";
};
@@ -7329,7 +7392,7 @@
sha256 = "0nrf6p4h66i17nz850kpdrnk5h5ra4l3icjjrq34sxvmsssp6zhp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emojify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emojify";
sha256 = "1sgd32qm43hwby75a9q2pz1yfzj988i35d8p9f18zvbxypy7b2yp";
name = "emojify";
};
@@ -7350,7 +7413,7 @@
sha256 = "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/emr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emr";
sha256 = "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x";
name = "emr";
};
@@ -7381,7 +7444,7 @@
sha256 = "1dsa3r39ip20ddbw0m9vq8z3r4ahrxvb37adyqi4mbdgyr6fq6sw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/engine-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/engine-mode";
sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c";
name = "engine-mode";
};
@@ -7402,7 +7465,7 @@
sha256 = "08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/enlive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/enlive";
sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz";
name = "enlive";
};
@@ -7423,7 +7486,7 @@
sha256 = "1in4wbwkxn8qfcsfjbczzk73z74w4ixlml61wk666dw0kpscgbs5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/enotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/enotify";
sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi";
name = "enotify";
};
@@ -7444,7 +7507,7 @@
sha256 = "1yn9jn6jl6rmknj50g18z5yvpa1d8mzzx3j1pfdwfn36ak4nc9ba";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eopengrok";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eopengrok";
sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av";
name = "eopengrok";
};
@@ -7465,7 +7528,7 @@
sha256 = "05r2m7zghbdrgscg0x78jnhk1g6fq8iylar4cx699zm6pzvlq98z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/epc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epc";
sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx";
name = "epc";
};
@@ -7486,7 +7549,7 @@
sha256 = "18am0nc2kjxbnkls7dl9j47cynwiiafx8w6rqa4d9dyx7khl2rmp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/epkg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epkg";
sha256 = "0vc1g29rfmgd2ks4lbz4599rbgcax7rgdva53ahhvp6say8fy22q";
name = "epkg";
};
@@ -7507,7 +7570,7 @@
sha256 = "0sjxd5y5hxhrbgfkpwx6m724r3841b53hgc61a0g5zwispw5pmrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/epl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epl";
sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn";
name = "epl";
};
@@ -7528,7 +7591,7 @@
sha256 = "1xw56sir6gkr0p9g4s6p4qc0rajnl6ifbzrky07j28y9vsa59nsz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-crypt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-crypt";
sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3";
name = "erc-crypt";
};
@@ -7548,7 +7611,7 @@
sha256 = "11a64rvhd88val6vg9l1d5j3zdjd0bbbwcqilj0wp6rbn57xy0w8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-hipchatify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-hipchatify";
sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x";
name = "erc-hipchatify";
};
@@ -7569,7 +7632,7 @@
sha256 = "1k0g3bwp3w0dd6zwdv6k2wpqs2krjayilrzsr1hli649ljcx55d7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-hl-nicks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-hl-nicks";
sha256 = "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja";
name = "erc-hl-nicks";
};
@@ -7590,7 +7653,7 @@
sha256 = "1xsxykmhz34gmyj4jb26qfai7j95kzlc7vfydrajc6is7xlrwhfk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-twitch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-twitch";
sha256 = "08vlwcxrzc2ndm52112z1r0qnz6jlmjhiwq2j3j59fbw82ys61ia";
name = "erc-twitch";
};
@@ -7611,7 +7674,7 @@
sha256 = "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erc-youtube";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-youtube";
sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx";
name = "erc-youtube";
};
@@ -7632,7 +7695,7 @@
sha256 = "19jninbf0dhdw3kn4d38bxmklg0v7sh3m9dwj6z69w99r5pcw480";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ercn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ercn";
sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp";
name = "ercn";
};
@@ -7653,7 +7716,7 @@
sha256 = "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erefactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erefactor";
sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7";
name = "erefactor";
};
@@ -7674,7 +7737,7 @@
sha256 = "19m6chwc2awbsk5z03q1yhq84m481pff2609a8bxymcvm6yaamvf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ergoemacs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ergoemacs-mode";
sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62";
name = "ergoemacs-mode";
};
@@ -7695,7 +7758,7 @@
sha256 = "0yfnca0yqhhbys0snr5d24n9pal4s3rvci2l719ac70ci65iwcjq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/erlang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erlang";
sha256 = "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc";
name = "erlang";
};
@@ -7716,7 +7779,7 @@
sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ert-async";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-async";
sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5";
name = "ert-async";
};
@@ -7736,7 +7799,7 @@
sha256 = "1hsp0jp9gyfr6rhfsjgi55x4lqjlh1w13y90rrlnbxb0499zpa33";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ert-junit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-junit";
sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g";
name = "ert-junit";
};
@@ -7757,7 +7820,7 @@
sha256 = "0rdgdslspzb4s0n4a68hnwfm8vm8baasa8nzrdinf0nryn7rrhbf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ert-runner";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-runner";
sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48";
name = "ert-runner";
};
@@ -7778,7 +7841,7 @@
sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/es-lib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/es-lib";
sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n";
name = "es-lib";
};
@@ -7799,7 +7862,7 @@
sha256 = "04lll5sscbpqcq3sv5gsfky5qcj6asqql7fw1bp6g12qqf9r02nd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/es-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/es-mode";
sha256 = "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp";
name = "es-mode";
};
@@ -7820,7 +7883,7 @@
sha256 = "0cjchwrhk7bw87bg10zgcwkga50rvs0jn5v2jf6bbsxbcqx2nfc9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/es-windows";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/es-windows";
sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx";
name = "es-windows";
};
@@ -7841,7 +7904,7 @@
sha256 = "0cairmqsaghl2ddb2v8zhcwy5ik756m7gkair8xrbigz4jklpcv9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/esa";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esa";
sha256 = "1kbsv4xsp7p9v0g22had0dr7w5zsr24bgi2xzryy76699pxq4h6c";
name = "esa";
};
@@ -7862,7 +7925,7 @@
sha256 = "0nkmwwx224r50y2xnrz3v26l3ngqshvy5hs861gy4zagwllqfmvc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eshell-autojump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-autojump";
sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5";
name = "eshell-autojump";
};
@@ -7883,7 +7946,7 @@
sha256 = "179xqh0rs8w3d03gygg9sy4qp5xqgfgl4c0ycrknip9zrnbmph4i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eshell-z";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-z";
sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d";
name = "eshell-z";
};
@@ -7904,7 +7967,7 @@
sha256 = "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/espuds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/espuds";
sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c";
name = "espuds";
};
@@ -7925,7 +7988,7 @@
sha256 = "0lvr14xlxsdad4ihywkpbwwj9lyal0w4p616ska5rk7gg5i8v74p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ess";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess";
sha256 = "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i";
name = "ess";
};
@@ -7946,7 +8009,7 @@
sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ess-R-data-view";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-R-data-view";
sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0";
name = "ess-R-data-view";
};
@@ -7967,7 +8030,7 @@
sha256 = "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ess-R-object-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-R-object-popup";
sha256 = "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj";
name = "ess-R-object-popup";
};
@@ -7988,7 +8051,7 @@
sha256 = "1avb6dng4xgw3bp7bw0j60wl6s4y26alfys9vwwj29rlzvjrlh74";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ess-smart-underscore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-smart-underscore";
sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2";
name = "ess-smart-underscore";
};
@@ -8009,7 +8072,7 @@
sha256 = "1pzbd2ka6h5ipiivfwfgq1hq80ww59xvyldmx406mdd5vn7yqk5z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/esup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esup";
sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0";
name = "esup";
};
@@ -8030,7 +8093,7 @@
sha256 = "0k4vqlbk3h2snfiriraxhnjpdxgs49vcaazl191p9s2f799msd8p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/esxml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esxml";
sha256 = "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz";
name = "esxml";
};
@@ -8051,7 +8114,7 @@
sha256 = "1xqc4lqzirpmr21w766g8vmcvvsq8b3hv9i7r27i5x1g0j4jabja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ethan-wspace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ethan-wspace";
sha256 = "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws";
name = "ethan-wspace";
};
@@ -8072,7 +8135,7 @@
sha256 = "077rj7yj6laxyhcsmrmlpg438962jv0fm2yiqx6i365fbgyx0hck";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eval-in-repl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eval-in-repl";
sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63";
name = "eval-in-repl";
};
@@ -8093,7 +8156,7 @@
sha256 = "0lwpl9akdxml9f51pgsv0g7k7mr8dvqm94l01i7vq8jl6vd6v6i5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eval-sexp-fu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eval-sexp-fu";
sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs";
name = "eval-sexp-fu";
};
@@ -8114,7 +8177,7 @@
sha256 = "1a3y69s7lb24zdivxcpsjh9l6adxyjqxbpgradnj0q1n6kdyq679";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evalator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evalator";
sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk";
name = "evalator";
};
@@ -8130,11 +8193,11 @@
version = "1.2.12";
src = fetchhg {
url = "https://bitbucket.com/lyro/evil";
- rev = "7ceb2f84a8dc";
- sha256 = "0gqgfqzasz0pi17in9fpsibg52cs3b61s5bs15wkrbx57qx9hbzh";
+ rev = "c3c1cec937c6";
+ sha256 = "18wc427gjxhs0sa53nbid3h76zbsmfb5kdwqbvcly7awzfrgw5xx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil";
sha256 = "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc";
name = "evil";
};
@@ -8155,7 +8218,7 @@
sha256 = "0lw7fg4gqwj30r0l6k2ni36sxqkf65zf0d0z3rxnpwbxlf8dlkrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-anzu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-anzu";
sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70";
name = "evil-anzu";
};
@@ -8176,7 +8239,7 @@
sha256 = "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-args";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-args";
sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w";
name = "evil-args";
};
@@ -8197,7 +8260,7 @@
sha256 = "183fdg7rmnnbps0knnj2kmhf1hxk0q91wbqx1flhciq6wq4rilni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-commentary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-commentary";
sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz";
name = "evil-commentary";
};
@@ -8218,7 +8281,7 @@
sha256 = "0cj17gk7cxia2p9xzqnlnmqqbw2afd3x61gfw9fpf65j9wik5hbz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-escape";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-escape";
sha256 = "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k";
name = "evil-escape";
};
@@ -8239,7 +8302,7 @@
sha256 = "0r9gif2sgf84z8qniz6chr32av9g2i38rlyms81m8ssghf0j86ss";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-iedit-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-iedit-state";
sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl";
name = "evil-iedit-state";
};
@@ -8260,7 +8323,7 @@
sha256 = "1k2zinchs0jjllp8zkpggckyy63dkyi5yig3p46vh4w45jdzysk5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-leader";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-leader";
sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6";
name = "evil-leader";
};
@@ -8281,7 +8344,7 @@
sha256 = "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-lisp-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-lisp-state";
sha256 = "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy";
name = "evil-lisp-state";
};
@@ -8302,7 +8365,7 @@
sha256 = "040iam8ayb4q5f2w2cn40y9rgljv2gsa5yf0vky1ayjf1zl57g3n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-magit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-magit";
sha256 = "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6";
name = "evil-magit";
};
@@ -8323,7 +8386,7 @@
sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-mark-replace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-mark-replace";
sha256 = "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0";
name = "evil-mark-replace";
};
@@ -8344,7 +8407,7 @@
sha256 = "0x6rc98g7hvvmlgq31n7qanylrld6dzvg6n8qgzp4s544l0dwfw6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-matchit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-matchit";
sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq";
name = "evil-matchit";
};
@@ -8365,7 +8428,7 @@
sha256 = "0xizqg6azhd9iwkp91sgqkxgg1qhs05cafncbjxw7qvnv68y6qy6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-multiedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-multiedit";
sha256 = "0p02q9skqw2zhx7sfadqgs7vn518s72856962dam0xw4sqasplfp";
name = "evil-multiedit";
};
@@ -8386,7 +8449,7 @@
sha256 = "16wn74690572n3xpxvnvka524fzswxxni3dy98bwpvsqj6yx2ds5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-nerd-commenter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-nerd-commenter";
sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d";
name = "evil-nerd-commenter";
};
@@ -8407,7 +8470,7 @@
sha256 = "13jg2xbh4p02x1nj77b6csb93hh56c1nv8kslcq2hjj3caipk4m8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-numbers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-numbers";
sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2";
name = "evil-numbers";
};
@@ -8428,7 +8491,7 @@
sha256 = "09l0ph9rc941kr718zq0dw27fq6l7rb0h2003ihw7q0a5yr8fpk7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-org";
sha256 = "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c";
name = "evil-org";
};
@@ -8449,7 +8512,7 @@
sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-quickscope";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-quickscope";
sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489";
name = "evil-quickscope";
};
@@ -8470,7 +8533,7 @@
sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-rsi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-rsi";
sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345";
name = "evil-rsi";
};
@@ -8491,7 +8554,7 @@
sha256 = "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-search-highlight-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-search-highlight-persist";
sha256 = "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy";
name = "evil-search-highlight-persist";
};
@@ -8512,7 +8575,7 @@
sha256 = "0j2m3rsszivyjhv8bjid5fdqaf1vwp8rf55b27y4vc2489wrw415";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-smartparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-smartparens";
sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza";
name = "evil-smartparens";
};
@@ -8533,7 +8596,7 @@
sha256 = "1ip2ibgsir6rhj7ci2f128z18n1yrwd6pg0i42j1flc3m4shs6ap";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-snipe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-snipe";
sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn";
name = "evil-snipe";
};
@@ -8554,7 +8617,7 @@
sha256 = "1rchanv0vq9rx6x69608dlpdybvkn8a9ymx8wzm7gqpz9qh6xqrk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-space";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-space";
sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23";
name = "evil-space";
};
@@ -8575,7 +8638,7 @@
sha256 = "0vsf7yzlb2j7c5c7cnk81y1979psy6a9v7klg6c2j9lkcn3cqpvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-textobj-anyblock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-textobj-anyblock";
sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa";
name = "evil-textobj-anyblock";
};
@@ -8596,7 +8659,7 @@
sha256 = "1rskvkmz30xyy8xfjf2i35f3dxh663gb3plfy3f0j6z17i086jl2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-tutor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-tutor";
sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn";
name = "evil-tutor";
};
@@ -8617,7 +8680,7 @@
sha256 = "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-visual-mark-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-visual-mark-mode";
sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48";
name = "evil-visual-mark-mode";
};
@@ -8638,7 +8701,7 @@
sha256 = "11y2jrwbsw4fcx77zkhj1cn2hl1zcdqy00bv3mpbcrs03jywssrk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evil-visualstar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-visualstar";
sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy";
name = "evil-visualstar";
};
@@ -8659,7 +8722,7 @@
sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/evm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evm";
sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03";
name = "evm";
};
@@ -8680,7 +8743,7 @@
sha256 = "0gs6bi3s2sszc6v2b26929azmn5513kvyin99n4d0ark1jdbjmv2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eww-lnum";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eww-lnum";
sha256 = "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79";
name = "eww-lnum";
};
@@ -8701,7 +8764,7 @@
sha256 = "0nhc3m88i6rl2y426ksmjbbaqwfrjnwbzqq1bvd6r0bkcwgfwfml";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/exec-path-from-shell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/exec-path-from-shell";
sha256 = "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9";
name = "exec-path-from-shell";
};
@@ -8722,7 +8785,7 @@
sha256 = "0rvkhjfkhamr3ys9iarblfwvwq7n4wishdjgnwj1lx7m80h1hzbg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/expand-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/expand-region";
sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg";
name = "expand-region";
};
@@ -8743,7 +8806,7 @@
sha256 = "106yh793scbyharsk1dvrirkj3c6666w8jqilpkaz78vwyw3zs5y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/express";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/express";
sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9";
name = "express";
};
@@ -8764,7 +8827,7 @@
sha256 = "1k2j8szavyq2wy5c0skvs03a88cr9njy7y63b7knh2m92nw4830d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/extend-dnd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/extend-dnd";
sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417";
name = "extend-dnd";
};
@@ -8785,7 +8848,7 @@
sha256 = "0jc5wv2hkc89yh5ypa324xlfqdna20msr63g30njxq4g2vd0iqa7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/eyebrowse";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eyebrowse";
sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861";
name = "eyebrowse";
};
@@ -8806,7 +8869,7 @@
sha256 = "095ka87144jms5gi9spjcmkq346a56kzzy3in6naaha0djd4d607";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/f";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/f";
sha256 = "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2";
name = "f";
};
@@ -8827,7 +8890,7 @@
sha256 = "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fabric";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fabric";
sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m";
name = "fabric";
};
@@ -8848,7 +8911,7 @@
sha256 = "01l8dlfpyy97b17djbza46rq11xlbkhd5kn2r26r2xac8klj4pka";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/factlog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/factlog";
sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7";
name = "factlog";
};
@@ -8869,7 +8932,7 @@
sha256 = "05lwcwf412m717yhwpjrswqkm8c3i7391rmiwv2k8xc1vk6dpp4g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fancy-battery";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fancy-battery";
sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii";
name = "fancy-battery";
};
@@ -8890,7 +8953,7 @@
sha256 = "10ds6nlzm1s5xsp53a52qlzrnph7in6gib67qhgnwpj33wp8gs91";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fancy-narrow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fancy-narrow";
sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv";
name = "fancy-narrow";
};
@@ -8900,6 +8963,27 @@
license = lib.licenses.free;
};
}) {};
+ fastdef = callPackage ({ fetchFromGitHub, fetchurl, ivy, lib, melpaBuild, w3m }:
+ melpaBuild {
+ pname = "fastdef";
+ version = "0.1.0";
+ src = fetchFromGitHub {
+ owner = "redguardtoo";
+ repo = "fastdef";
+ rev = "602808385974db7a8e57b2980b3adc1bc61e4aec";
+ sha256 = "0kidb2kwjyrz93yy9gnwwsb60xx3k6npni2gj8q38w50lql5ja2l";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fastdef";
+ sha256 = "1cf4slxhcp2z7h9k3l31h06nnqsyb4smwnj55ivil2lm0fa0vlzj";
+ name = "fastdef";
+ };
+ packageRequires = [ ivy w3m ];
+ meta = {
+ homepage = "https://melpa.org/#/fastdef";
+ license = lib.licenses.free;
+ };
+ }) {};
fastnav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fastnav";
@@ -8911,7 +8995,7 @@
sha256 = "0h32w63vv451797zi6206j529fd4j8l3fp7rqip3s8xn8d4728x1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fastnav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fastnav";
sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5";
name = "fastnav";
};
@@ -8932,7 +9016,7 @@
sha256 = "03w68zbgprly45i6ps7iviwvjf3acbc7f7acvjpzj2plf0g5i19z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fcitx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fcitx";
sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx";
name = "fcitx";
};
@@ -8953,7 +9037,7 @@
sha256 = "1cxjygg05v8s96c8z6plk3hl34jaiwg7s7dl7dsk20rj5f54kgw7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/feature-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/feature-mode";
sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg";
name = "feature-mode";
};
@@ -8974,7 +9058,7 @@
sha256 = "0fghhy5xqsdwal4fwlr6hxr5kpnfw71q79mxpp9db59ldnj9f5y9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fill-column-indicator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fill-column-indicator";
sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma";
name = "fill-column-indicator";
};
@@ -8995,7 +9079,7 @@
sha256 = "1r9y9zschavi28c5ysrlh56vxszjfyhh5r36fhn74i0b5iiy15rx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/finalize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/finalize";
sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq";
name = "finalize";
};
@@ -9016,7 +9100,7 @@
sha256 = "1xjb66pydm3yf0jxnm2mri98pxq3b26xvwjkaj1488qgj27i05jr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/find-by-pinyin-dired";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-by-pinyin-dired";
sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq";
name = "find-by-pinyin-dired";
};
@@ -9037,7 +9121,7 @@
sha256 = "13myami3vm5py9pp957kbfl9dd11z1a4vy0bbzqqnkgliim7pbsb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/find-file-in-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-file-in-project";
sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy";
name = "find-file-in-project";
};
@@ -9058,7 +9142,7 @@
sha256 = "0wbmmrd7brf4498pdyilz17rzv7221cj8sd4h11gac2r72f1q2md";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/find-file-in-repository";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-file-in-repository";
sha256 = "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6";
name = "find-file-in-repository";
};
@@ -9079,7 +9163,7 @@
sha256 = "0lwgbd9zwdv7qs39c3fp4hrc17d9wrwwjgba7a14zwrhb27m7j07";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fiplr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fiplr";
sha256 = "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca";
name = "fiplr";
};
@@ -9100,7 +9184,7 @@
sha256 = "1rz56n2gmw11w2yxlhn0i8xmig9m8lxihgaikg65xmy9nqa5j7bj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/firefox-controller";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/firefox-controller";
sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6";
name = "firefox-controller";
};
@@ -9121,7 +9205,7 @@
sha256 = "174x0qyrwswppc9p1q1nn4424r3zg7g49zk329k5aq18vyjz52d7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fireplace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fireplace";
sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw";
name = "fireplace";
};
@@ -9142,7 +9226,7 @@
sha256 = "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/firestarter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/firestarter";
sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp";
name = "firestarter";
};
@@ -9163,7 +9247,7 @@
sha256 = "17djaz79spms9il71m4xdfjhm58dzswb6fpncngkgx8kxvcy9y24";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fish-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fish-mode";
sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14";
name = "fish-mode";
};
@@ -9184,7 +9268,7 @@
sha256 = "16rd23ygh76fs4i7rni94k8gwa9n360h40qmhm65snp31kqnpr1p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fix-input";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fix-input";
sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p";
name = "fix-input";
};
@@ -9205,7 +9289,7 @@
sha256 = "1hj5jp4vbkcmnc8l2hqsvjc76f7c9zcsq8znwcwv2nv9xj9hlbkr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fix-word";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fix-word";
sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc";
name = "fix-word";
};
@@ -9226,7 +9310,7 @@
sha256 = "1hnxdmzqmnp3dr7mpr58pjmigykb3cxwphxzia013kfi37ipf5a0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fixmee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fixmee";
sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp";
name = "fixmee";
};
@@ -9246,15 +9330,15 @@
floobits = callPackage ({ fetchFromGitHub, fetchurl, highlight, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "floobits";
- version = "1.7.0";
+ version = "1.7.1";
src = fetchFromGitHub {
owner = "Floobits";
repo = "floobits-emacs";
- rev = "87ae6b1257f7c2ae91b100920b03363dd26d7dd9";
- sha256 = "10irvd9bi25fbx66dlc3v6zcqznng0aqcdb8656cz0qx7hrz56pw";
+ rev = "052cce8506b5cbb8f0281442af8624d5847c7157";
+ sha256 = "0acgyxl4kpfld6h6j54415ac8crk7byfs5lcysil9s5l3qrxjl3h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/floobits";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/floobits";
sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf";
name = "floobits";
};
@@ -9275,7 +9359,7 @@
sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flx";
sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9";
name = "flx";
};
@@ -9296,7 +9380,7 @@
sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flx-ido";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flx-ido";
sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc";
name = "flx-ido";
};
@@ -9317,7 +9401,7 @@
sha256 = "1igsnps6yc4lh05ka17nwfl03yn26varglm5xhgka8p6vk1z906b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck";
sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr";
name = "flycheck";
};
@@ -9338,7 +9422,7 @@
sha256 = "14idjjz6fhmq806mmncmqnr9bvcjks6spin8z6jb0gqcg1dbhm06";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-apertium";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-apertium";
sha256 = "1cc15sljqs6gvb3wiw7n1wkd714qkvfpw6l1kg4lfx9r4jalcvw7";
name = "flycheck-apertium";
};
@@ -9359,7 +9443,7 @@
sha256 = "1c3igqfd42dm42kfjm2q2xgr673vws10n9jn2jjlsk4g33brc7h4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-cask";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-cask";
sha256 = "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7";
name = "flycheck-cask";
};
@@ -9380,7 +9464,7 @@
sha256 = "1s2zq97d7ryif6rlbvriz36dh23wmwi67v4q6krl77dfzcs705b3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-checkbashisms";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-checkbashisms";
sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz";
name = "flycheck-checkbashisms";
};
@@ -9401,7 +9485,7 @@
sha256 = "1i824iyjsg4d786kx5chsb64wlqd8vn2vsrhq6rmdx2x3gzdfcsx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-clojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-clojure";
sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28";
name = "flycheck-clojure";
};
@@ -9422,7 +9506,7 @@
sha256 = "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-color-mode-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-color-mode-line";
sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq";
name = "flycheck-color-mode-line";
};
@@ -9443,7 +9527,7 @@
sha256 = "1ap5hgvaccmf2xkfvyp7rqcfjwmiy6mhr6ccgahxm2z0vm51kpyh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-dmd-dub";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-dmd-dub";
sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm";
name = "flycheck-dmd-dub";
};
@@ -9464,7 +9548,7 @@
sha256 = "0frgyj57mrggq5ib6xi71696m97ch0bw6cc208d2qbnb55sf4fgb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-gometalinter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-gometalinter";
sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2";
name = "flycheck-gometalinter";
};
@@ -9485,7 +9569,7 @@
sha256 = "0143lcn6g46g7skm4r6lqq09s8mr3268rikbzlh65qg80rpg9frj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-haskell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-haskell";
sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7";
name = "flycheck-haskell";
};
@@ -9506,7 +9590,7 @@
sha256 = "136mdg21a8sqxhijsjsvpli7r7sb40nmf80p6gmgb1ghwmhlm8k3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-hdevtools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-hdevtools";
sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93";
name = "flycheck-hdevtools";
};
@@ -9527,7 +9611,7 @@
sha256 = "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-irony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-irony";
sha256 = "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z";
name = "flycheck-irony";
};
@@ -9548,7 +9632,7 @@
sha256 = "1pdssw5k88ym5fczllfjv26sp4brlyrywnlzq5baha5pq91h9cb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-ledger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ledger";
sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl";
name = "flycheck-ledger";
};
@@ -9569,7 +9653,7 @@
sha256 = "1phfarws2aajkgcl96hqa4ydmb1yncg10q2ldzf8ff6yd6mvk51l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-ocaml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ocaml";
sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7";
name = "flycheck-ocaml";
};
@@ -9590,7 +9674,7 @@
sha256 = "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-package";
sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d";
name = "flycheck-package";
};
@@ -9611,7 +9695,7 @@
sha256 = "1da10q378k5kbcj0rrpzhm7r3ym4rfwc7v1ialcndbmflsn09m5s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-pony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-pony";
sha256 = "18w1d7y3jsmsc4wg0909p72cnvbxzsmnirmrahhwgsb963fij5qk";
name = "flycheck-pony";
};
@@ -9632,7 +9716,7 @@
sha256 = "0v23yc8znzjp44lrpfzqb4hc3psad14hsnvqcp8f1yyhgvdx35n8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-pos-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-pos-tip";
sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9";
name = "flycheck-pos-tip";
};
@@ -9653,7 +9737,7 @@
sha256 = "1xxvri9ax5cjrkxhjqhs7zqbch9cx8kvrn7sg611frl68qawkjsm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-status-emoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-status-emoji";
sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p";
name = "flycheck-status-emoji";
};
@@ -9674,7 +9758,7 @@
sha256 = "0azjr5mfb3hnb66m1b2319i035mn5i9qz24y7fj5crhnc9vp8w3s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-tip";
sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656";
name = "flycheck-tip";
};
@@ -9695,7 +9779,7 @@
sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flycheck-ycmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ycmd";
sha256 = "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv";
name = "flycheck-ycmd";
};
@@ -9716,7 +9800,7 @@
sha256 = "1svj5n7mmzhq03azlv4n33rz0nyqb00qr8ihdbc8hh2xnp63j5rc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-coffee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-coffee";
sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d";
name = "flymake-coffee";
};
@@ -9737,7 +9821,7 @@
sha256 = "054ws88fcfz3hf3cha7dvndm52v5n4jc4vzif1lif44xq0iggwqa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-css";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-css";
sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5";
name = "flymake-css";
};
@@ -9758,7 +9842,7 @@
sha256 = "1j35k52na02b59yglfb48w6m5qzydvzqfsylb8ax5ks0f287yf0c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-easy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-easy";
sha256 = "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7";
name = "flymake-easy";
};
@@ -9779,7 +9863,7 @@
sha256 = "002s01cymgx4z4l3j2pqirg7899pljdx2hmbz8k6cksdxlymzmkd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-gjshint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-gjshint";
sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44";
name = "flymake-gjshint";
};
@@ -9800,7 +9884,7 @@
sha256 = "1b3lf5jwan03k7rb97g4bb982dacdwsfdddnwc0inx9gs3qq1zni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-haml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-haml";
sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1";
name = "flymake-haml";
};
@@ -9821,7 +9905,7 @@
sha256 = "0k1qc0r0gr7f9l5if2a67cv4k73z5yxd6vxd6l1bqw500y0aajxz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-haskell-multi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-haskell-multi";
sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij";
name = "flymake-haskell-multi";
};
@@ -9842,7 +9926,7 @@
sha256 = "1ygg51r4ym4x7h4svizwllsvr72x9np6jvjqpk8ayv3w2fpb9l31";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-hlint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-hlint";
sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x";
name = "flymake-hlint";
};
@@ -9863,7 +9947,7 @@
sha256 = "00zkm3wqlss386qd6jiq0siga7c48n5ykh0vf9q5v83rmpd79yri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-jslint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-jslint";
sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm";
name = "flymake-jslint";
};
@@ -9884,7 +9968,7 @@
sha256 = "0rzlw80mi39147yqnpzcvw9wvr5svksd3kn6s3w8191f2kc6xzzv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-json";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-json";
sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d";
name = "flymake-json";
};
@@ -9905,7 +9989,7 @@
sha256 = "0ggvmsjj6p6a7cwr2bzhlcf8ab4v6a2bz5djsscd2ryy570p367z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-less";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-less";
sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0";
name = "flymake-less";
};
@@ -9926,7 +10010,7 @@
sha256 = "11r982h5fhjkmm9ld8wfdip0ghinw523nm1w4fmy830g0bbkgkrq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-perlcritic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-perlcritic";
sha256 = "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8";
name = "flymake-perlcritic";
};
@@ -9947,7 +10031,7 @@
sha256 = "0dzyid0av9icp77wv0zcsygpw46z24qibq1ra0iwnkzl3kqvkyzh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-php";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-php";
sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk";
name = "flymake-php";
};
@@ -9968,7 +10052,7 @@
sha256 = "0l8qpcbzfi32h3vy7iwydx3hg2w60x9l3v3rabzjx412m5d00gsh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-python-pyflakes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-python-pyflakes";
sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497";
name = "flymake-python-pyflakes";
};
@@ -9989,7 +10073,7 @@
sha256 = "0d2vmpgr5c2cbpxcqm5x1ckfysbpwcbaa9frcnp2yfp8scvkvqj0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-ruby";
sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr";
name = "flymake-ruby";
};
@@ -10010,7 +10094,7 @@
sha256 = "0c74qdgy9c4hv3nyjnbqdzypbg9399vq3p5ngp5lasc7iz6vi0h8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-sass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-sass";
sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d";
name = "flymake-sass";
};
@@ -10031,7 +10115,7 @@
sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flymake-shell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-shell";
sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i";
name = "flymake-shell";
};
@@ -10052,7 +10136,7 @@
sha256 = "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flyspell-lazy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flyspell-lazy";
sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y";
name = "flyspell-lazy";
};
@@ -10073,7 +10157,7 @@
sha256 = "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/flyspell-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flyspell-popup";
sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql";
name = "flyspell-popup";
};
@@ -10094,7 +10178,7 @@
sha256 = "0r2j238iyxnww60xpbxggjmz6y2waayw4m51f0l39hszbhags2cv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fm";
sha256 = "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f";
name = "fm";
};
@@ -10115,7 +10199,7 @@
sha256 = "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/focus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/focus";
sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8";
name = "focus";
};
@@ -10136,7 +10220,7 @@
sha256 = "1k8z30imlxvqm7lv12kgqdfgc5znxyvl9jxi8j2ymmwlgy11f726";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fold-dwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fold-dwim";
sha256 = "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x";
name = "fold-dwim";
};
@@ -10157,7 +10241,7 @@
sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fold-dwim-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fold-dwim-org";
sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn";
name = "fold-dwim-org";
};
@@ -10178,7 +10262,7 @@
sha256 = "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fold-this";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fold-this";
sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d";
name = "fold-this";
};
@@ -10199,7 +10283,7 @@
sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/font-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/font-utils";
sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5";
name = "font-utils";
};
@@ -10220,7 +10304,7 @@
sha256 = "0qq13jhn9i2ls6n3fbay4i2r0hfs426pkmmif43b87gjxb510irc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fontawesome";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fontawesome";
sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3";
name = "fontawesome";
};
@@ -10241,7 +10325,7 @@
sha256 = "1x4l24cbgc4apv9cfzf6phmj5pm32hfdgv37wpbh7ml8v3p8xm0w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/forecast";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/forecast";
sha256 = "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc";
name = "forecast";
};
@@ -10262,7 +10346,7 @@
sha256 = "199kybf2bvywqfnwr5w893km82829k1j7sp079y6s2601hq8ylw9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/foreman-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/foreman-mode";
sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv";
name = "foreman-mode";
};
@@ -10283,7 +10367,7 @@
sha256 = "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/form-feed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/form-feed";
sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh";
name = "form-feed";
};
@@ -10304,7 +10388,7 @@
sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/format-sql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/format-sql";
sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj";
name = "format-sql";
};
@@ -10325,7 +10409,7 @@
sha256 = "1zy45s1m1injwr4d1qvpnvfvv4nkkv9mricshxjannsjfbz09ra7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fountain-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fountain-mode";
sha256 = "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840";
name = "fountain-mode";
};
@@ -10346,7 +10430,7 @@
sha256 = "1vznkbly0lyh5kri9lcgy309ws96q3d5m1lghck9l8ain8hphhqz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/frame-restore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/frame-restore";
sha256 = "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm";
name = "frame-restore";
};
@@ -10367,7 +10451,7 @@
sha256 = "1c3yx9j3q8fkfiay4nzcabsq9i4ydqf6vxk8vv80h78gg9afrzrj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fringe-helper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fringe-helper";
sha256 = "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv";
name = "fringe-helper";
};
@@ -10388,7 +10472,7 @@
sha256 = "00api7q86mrfv8z2g7skh34mhlkxwymf4gfpxa6zcvirhlpglyxr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fsharp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fsharp-mode";
sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z";
name = "fsharp-mode";
};
@@ -10407,7 +10491,7 @@
sha256 = "146iqy3rjr5yv19wbaq5dqm3kjxyjly7i27qjvk0yj1yja2y4j5k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fuel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fuel";
sha256 = "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756";
name = "fuel";
};
@@ -10428,7 +10512,7 @@
sha256 = "0c3w3xs2jbdqgsqw0qmdbwii6p395qfznird4gg0hfr7lby2kmjq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/full-ack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/full-ack";
sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309";
name = "full-ack";
};
@@ -10449,7 +10533,7 @@
sha256 = "1narmlcd8ycwkmsrgk64l7q0ljsbq2fsikl8hjbrsc20nma032m4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fullframe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fullframe";
sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a";
name = "fullframe";
};
@@ -10470,7 +10554,7 @@
sha256 = "0m7fcw0cswypiwi5abg6vhw7a3agx9vhp10flbbbji6lblb0fya8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/function-args";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/function-args";
sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak";
name = "function-args";
};
@@ -10491,7 +10575,7 @@
sha256 = "1g7my9ha5cnwg3pjwa86wncg5gphv18xpnpmj3xc3vg7z5m45rss";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fuzzy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fuzzy";
sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h";
name = "fuzzy";
};
@@ -10512,7 +10596,7 @@
sha256 = "0c3g0yfclczdh6nxmg9lljjf288zibqy51bhh1b1cgdmxcbpg8bv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fvwm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fvwm-mode";
sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb";
name = "fvwm-mode";
};
@@ -10533,7 +10617,7 @@
sha256 = "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fwb-cmds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fwb-cmds";
sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx";
name = "fwb-cmds";
};
@@ -10554,7 +10638,7 @@
sha256 = "0vfh4azibv71mj86bgl4rfbm96pw9l95r87mwhzx42j36rxffl73";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fxrd-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fxrd-mode";
sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r";
name = "fxrd-mode";
};
@@ -10575,7 +10659,7 @@
sha256 = "0rjn4z7ssl1jy0brvsci44mhpig3zkdbcj8gcylzznhz0qfk1ljj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/fzf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fzf";
sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0";
name = "fzf";
};
@@ -10596,7 +10680,7 @@
sha256 = "16x3fz2ljrmqhjy7w96fhp3j9ja2gib042c363yfrzwa7q5rxzd2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gams-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gams-mode";
sha256 = "0hx9mv4sqskz4nn7aks64hqd4vn3m7b34abzhy9bnmyw6d5zzfci";
name = "gams-mode";
};
@@ -10617,7 +10701,7 @@
sha256 = "1q9bz294bc6bplwfrfzsczh444v9152wv7zm2l1pcpwv8n8581p6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gather";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gather";
sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk";
name = "gather";
};
@@ -10638,7 +10722,7 @@
sha256 = "1667zln7bav0bdhrc4b5z36n8rn36xvwh4y9ffgns67zfgwi64kk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/geiser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/geiser";
sha256 = "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596";
name = "geiser";
};
@@ -10659,7 +10743,7 @@
sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/genrnc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/genrnc";
sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm";
name = "genrnc";
};
@@ -10680,7 +10764,7 @@
sha256 = "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/german-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/german-holidays";
sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn";
name = "german-holidays";
};
@@ -10701,7 +10785,7 @@
sha256 = "1m9ra9qp7bgf6anfqyn56n3xa9a25ran10k9wd355qknd5skq1zz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ggo-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ggo-mode";
sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p";
name = "ggo-mode";
};
@@ -10722,7 +10806,7 @@
sha256 = "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ggtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ggtags";
sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw";
name = "ggtags";
};
@@ -10743,7 +10827,7 @@
sha256 = "0a5v91k9gm9vv15d3m8czicv8n39f0hvqhcr6lfw0w82n26xwsms";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gh";
sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0";
name = "gh";
};
@@ -10764,7 +10848,7 @@
sha256 = "1m5q2s9nxm0m18njaxzryjly8rl3m598r94nn53xpazd4i5ln8cg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ghc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ghc";
sha256 = "02nc7a9khqpd4ca2snam8dq72m53q8x7v5awx56bjq31z6vcmav5";
name = "ghc";
};
@@ -10785,7 +10869,7 @@
sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ghc-imported-from";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ghc-imported-from";
sha256 = "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5";
name = "ghc-imported-from";
};
@@ -10806,7 +10890,7 @@
sha256 = "0q3ps5f6mr9hyf6nq1wshcm1z6a5yhskqd7dbbwq5dm78552z6z8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gist";
sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3";
name = "gist";
};
@@ -10827,7 +10911,7 @@
sha256 = "06ws3x5qa92drmn6rcp502jk2yil6q9gkzdmb2gww9gb2g695wl5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git";
sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5";
name = "git";
};
@@ -10848,7 +10932,7 @@
sha256 = "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-auto-commit-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-auto-commit-mode";
sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl";
name = "git-auto-commit-mode";
};
@@ -10869,7 +10953,7 @@
sha256 = "0a3ws852ypi34ash39srkwzkfish4n3c5lma10d9xzddjrwapgj9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-command";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-command";
sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg";
name = "git-command";
};
@@ -10882,15 +10966,15 @@
git-commit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, with-editor }:
melpaBuild {
pname = "git-commit";
- version = "2.6.2";
+ version = "2.7.0";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "2e6dcf8fe8672dca67e59a72975c2d850ce9bc16";
- sha256 = "0qdahg3vqha391nnspbqa5bjvi2g3jb277c5wzbfs132m4n076j2";
+ rev = "bfc6f6d88619221506e246390e5fbb39087564ec";
+ sha256 = "1dv5qr9z5lxj2zjhwjhx451mbkb8d3y00q7ar6n34x7d5c4gmiya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-commit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-commit";
sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2";
name = "git-commit";
};
@@ -10903,15 +10987,15 @@
git-gutter = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-gutter";
- version = "0.87";
+ version = "0.88";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-git-gutter";
- rev = "c08ec4fc7fedf4e04e278c5d8984b0ecdf87fe2b";
- sha256 = "0n02nss7gp0m898g7zw4rkj2kzrdiwp6mli0753p1fqph28j0gvm";
+ rev = "c40683e9c5931dd67f89ad9ef8625de28752f00c";
+ sha256 = "1gr57n6chhbzazqxb0vwsddais14zpg9c5qpfn6igw0qzhkxn8x0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-gutter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter";
sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg";
name = "git-gutter";
};
@@ -10924,15 +11008,15 @@
git-gutter-fringe = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, fringe-helper, git-gutter, lib, melpaBuild }:
melpaBuild {
pname = "git-gutter-fringe";
- version = "0.22";
+ version = "0.23";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-git-gutter-fringe";
- rev = "3efa997ec8330d3e408a225616273d1d40327aec";
- sha256 = "1cw5x1w14lxy8mqpxdrd9brgps0nig2prjjjda4a19wfsvy3clmv";
+ rev = "dfc93d1064df154a809aab350942830408051da3";
+ sha256 = "18jpa5i99x0gqizs2qbqr8c1jlza8x9vpb6wg9zqd4np1p6q4lan";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-gutter-fringe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter-fringe";
sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z";
name = "git-gutter-fringe";
};
@@ -10953,7 +11037,7 @@
sha256 = "1c7ijbpa7xw831k55cdm2gl8r597rxnp22jcmqnfpwqkqmk48ln9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-gutter-fringe+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter-fringe+";
sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc";
name = "git-gutter-fringe-plus";
};
@@ -10974,7 +11058,7 @@
sha256 = "101hracd77mici778x3ixwrcicd6fqkcr9z76kapkr0dq5z42yjb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-gutter+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter+";
sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0";
name = "git-gutter-plus";
};
@@ -10995,7 +11079,7 @@
sha256 = "02p73q0kl9z44b9a2bhqg03mkqx6gf61n88qlwwg4420dxrf7sbc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-lens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-lens";
sha256 = "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb";
name = "git-lens";
};
@@ -11016,7 +11100,7 @@
sha256 = "0a1kxdz05ly9wbzyxcb79xlmy11q38xplf5s8w8klmyajdn43g1j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-link";
sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7";
name = "git-link";
};
@@ -11037,7 +11121,7 @@
sha256 = "139yivbxdpmv8j6qz406769b040nbmj3j8r28n9gqy54zlwblgv8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-messenger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-messenger";
sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn";
name = "git-messenger";
};
@@ -11058,7 +11142,7 @@
sha256 = "1hyq3il03cm6apfawps60r4km8r6pw0vphzba30smsqfk50z3ya3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-ps1-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-ps1-mode";
sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6";
name = "git-ps1-mode";
};
@@ -11079,7 +11163,7 @@
sha256 = "1brz9dc7ngywndlxbqbi3pbjbjydgqc9bjzf05lgx0pzr1ppc3w3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-timemachine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-timemachine";
sha256 = "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq";
name = "git-timemachine";
};
@@ -11100,7 +11184,7 @@
sha256 = "0igawn43i81icshimj5agv33ab120hd6182knlrn3i46p7lcs3lx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/git-wip-timemachine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-wip-timemachine";
sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw";
name = "git-wip-timemachine";
};
@@ -11121,7 +11205,7 @@
sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gitattributes-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitattributes-mode";
sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x";
name = "gitattributes-mode";
};
@@ -11142,7 +11226,7 @@
sha256 = "0j0w6ywhiapmx7dk20yw3zgf8803kmccnjsr664am3g85kbb644v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gitconfig";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitconfig";
sha256 = "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7";
name = "gitconfig";
};
@@ -11163,7 +11247,7 @@
sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gitconfig-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitconfig-mode";
sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1";
name = "gitconfig-mode";
};
@@ -11184,7 +11268,7 @@
sha256 = "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/github-browse-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/github-browse-file";
sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr";
name = "github-browse-file";
};
@@ -11205,7 +11289,7 @@
sha256 = "18c169nxvdl7iv18pyqx690ldg6pkc8njaxdg1cww6ykqzqnfxh7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/github-clone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/github-clone";
sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9";
name = "github-clone";
};
@@ -11226,7 +11310,7 @@
sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gitignore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitignore-mode";
sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn";
name = "gitignore-mode";
};
@@ -11239,15 +11323,15 @@
gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }:
melpaBuild {
pname = "gitlab";
- version = "0.7.0";
+ version = "0.8.0";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "emacs-gitlab";
- rev = "90be6027eb59a967e5bbceaa5f32c098472ca245";
- sha256 = "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil";
+ rev = "a1c1441ff5ffb290e695eb9ac05431e9385578f4";
+ sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gitlab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitlab";
sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq";
name = "gitlab";
};
@@ -11268,7 +11352,7 @@
sha256 = "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gmail-message-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gmail-message-mode";
sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk";
name = "gmail-message-mode";
};
@@ -11289,7 +11373,7 @@
sha256 = "0p6n52m3y56nx7chwvmnslrnwc0xmh4fmmlkbkfz9n58hlmw8x1x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gmail2bbdb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gmail2bbdb";
sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j";
name = "gmail2bbdb";
};
@@ -11310,7 +11394,7 @@
sha256 = "0x0a94bfkk72kqyr5m6arx450qsg1axmp5r0c4r9m84z8j08r4v1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gmpl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gmpl-mode";
sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz";
name = "gmpl-mode";
};
@@ -11331,7 +11415,7 @@
sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnome-calendar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnome-calendar";
sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6";
name = "gnome-calendar";
};
@@ -11352,7 +11436,7 @@
sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gntp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gntp";
sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f";
name = "gntp";
};
@@ -11373,7 +11457,7 @@
sha256 = "0bwri3cvm2vr27kyqkrddm28fs08axnd4nm9amfgp54xp20bn4yn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnuplot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnuplot";
sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds";
name = "gnuplot";
};
@@ -11394,7 +11478,7 @@
sha256 = "08j8x0iaz5s9q0b68d8h3153w0z6vak5l8qgw3dd1drz5p9xnvyw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnus-desktop-notify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-desktop-notify";
sha256 = "08k32vhdp6i8c03rp1k6b5jmvj5ijplj26mdblrgasklcqbdnlfs";
name = "gnus-desktop-notify";
};
@@ -11415,7 +11499,7 @@
sha256 = "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gnus-x-gm-raw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-x-gm-raw";
sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg";
name = "gnus-x-gm-raw";
};
@@ -11436,7 +11520,7 @@
sha256 = "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-autocomplete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-autocomplete";
sha256 = "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a";
name = "go-autocomplete";
};
@@ -11457,7 +11541,7 @@
sha256 = "05yc0nylg3457an5j7yp3x23157j0hbi21qhcpgsa01144mwnwln";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-direx";
sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7";
name = "go-direx";
};
@@ -11478,7 +11562,7 @@
sha256 = "1n5fnlfq9cy9rbn2hizqqsy0iryw5g2blaa7nd75ya03gxm10p8j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-eldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-eldoc";
sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk";
name = "go-eldoc";
};
@@ -11499,7 +11583,7 @@
sha256 = "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-errcheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-errcheck";
sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs";
name = "go-errcheck";
};
@@ -11509,22 +11593,22 @@
license = lib.licenses.free;
};
}) {};
- go-impl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ go-impl = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "go-impl";
- version = "0.0.1";
+ version = "0.1";
src = fetchFromGitHub {
- owner = "dominikh";
- repo = "go-impl.el";
- rev = "d4b7f4575360d560609e735bfaa65b691fa9df40";
- sha256 = "199aa2crddx2a5lvl0wrzylzdc23rcm3wcbbwas17ary3gl4z8jg";
+ owner = "syohex";
+ repo = "emacs-go-impl";
+ rev = "b6e963bad01c1350eec20e4d399d2c7ccbf6d59d";
+ sha256 = "00sgmwvkick6grcqlpyi4a1p3g1w91a77ig7dwhsydgbvws1yfr9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-impl";
- sha256 = "0yhcl6y26s4wxaa3jj8d13i4zr879kp1lwnhlnqskpq8l8n3nmpz";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-impl";
+ sha256 = "09frwpwc080rfpwkb63yv47dyj741lrpyrp65sq2bn4sf03xw0cx";
name = "go-impl";
};
- packageRequires = [];
+ packageRequires = [ emacs go-mode ];
meta = {
homepage = "https://melpa.org/#/go-impl";
license = lib.licenses.free;
@@ -11541,7 +11625,7 @@
sha256 = "0g0vjm125wmw5nd38r3d7gc2h4pg3a9yskcbk1mzg9vf6gbhr0hx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-mode";
sha256 = "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx";
name = "go-mode";
};
@@ -11562,7 +11646,7 @@
sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/go-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-scratch";
sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5";
name = "go-scratch";
};
@@ -11583,7 +11667,7 @@
sha256 = "00igv83hiyx7x3pf2grmjpd379brn33fm85f05k104mkkrhg99nm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/golden-ratio";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/golden-ratio";
sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81";
name = "golden-ratio";
};
@@ -11596,15 +11680,15 @@
google-this = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "google-this";
- version = "1.10";
+ version = "1.11";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "emacs-google-this";
- rev = "879ab00f6b5584cfe327eb1c04cd9ff2323b3b11";
- sha256 = "0j31062zfqmcd0zsbp19f3h7gq7dn78sg4xf2x838sr9421x6w8x";
+ rev = "22cff810e7ed3b3c9dae066588508864c25c6d99";
+ sha256 = "14dz9wjp8ym86a03pw5y1sd51zw83d6485hpq8mh8zm0j1fba0y0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/google-this";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-this";
sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c";
name = "google-this";
};
@@ -11625,7 +11709,7 @@
sha256 = "0dzr1nb1s1sh8rv5wr9xfjd5xna54vp03y3h4q59vmnynsn64m9b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/google-translate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-translate";
sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47";
name = "google-translate";
};
@@ -11646,7 +11730,7 @@
sha256 = "1d1x5ffpn9gq9byd0qavxr081sl3qf0lihdxfdqvhwd815kravxk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/goose-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goose-theme";
sha256 = "18kfz61mhf8pvp3z5cdvjklla9p840p1dazylrgjb1g5hdwqw0n9";
name = "goose-theme";
};
@@ -11667,7 +11751,7 @@
sha256 = "1idhnsl8vkq3v3nbvhkmxmvgqp97aycxvmkj7894mj9hvhib68l9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gotest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gotest";
sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9";
name = "gotest";
};
@@ -11688,7 +11772,7 @@
sha256 = "1lgljlfxs3gwxr072bvpl55r0b4z78wiww2g093sy7dgxgzgzmq6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gotham-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gotham-theme";
sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl";
name = "gotham-theme";
};
@@ -11709,7 +11793,7 @@
sha256 = "188q7jr1y872as3w32m8lf6vwl2by1ibgdk6zk7dhpcjwd0ik7x7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/goto-gem";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goto-gem";
sha256 = "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a";
name = "goto-gem";
};
@@ -11730,7 +11814,7 @@
sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/goto-last-change";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goto-last-change";
sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx";
name = "goto-last-change";
};
@@ -11751,7 +11835,7 @@
sha256 = "0d8vsm6481746j3r446q5wgppnv2kvq522sd9896xvy32avxsrw3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/govc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/govc";
sha256 = "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v";
name = "govc";
};
@@ -11772,7 +11856,7 @@
sha256 = "0k86lrb55d701nj6pvlw3kjp1dcd3lzfya0hv6q56c529y69d782";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gradle-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gradle-mode";
sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g";
name = "gradle-mode";
};
@@ -11793,7 +11877,7 @@
sha256 = "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grails";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grails";
sha256 = "177y6xv35d2dhc3pdx5qhpywlmlqgfnjpzfm9yxc8l6q2rgs8irw";
name = "grails";
};
@@ -11814,7 +11898,7 @@
sha256 = "0wy8iw12b9bs7xza8jjnjvggr59rgbsgn1kk2g0pj0nppvfdrvjm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grails-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grails-mode";
sha256 = "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4";
name = "grails-mode";
};
@@ -11835,7 +11919,7 @@
sha256 = "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grails-projectile-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grails-projectile-mode";
sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn";
name = "grails-projectile-mode";
};
@@ -11856,7 +11940,7 @@
sha256 = "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grandshell-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grandshell-theme";
sha256 = "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa";
name = "grandshell-theme";
};
@@ -11877,7 +11961,7 @@
sha256 = "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/graphene";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/graphene";
sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k";
name = "graphene";
};
@@ -11910,7 +11994,7 @@
sha256 = "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/graphene-meta-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/graphene-meta-theme";
sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q";
name = "graphene-meta-theme";
};
@@ -11931,7 +12015,7 @@
sha256 = "1zk664ilyz14p11csmqgzs73gx08hy32h3pnyymzqkavmgb6h3s0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/graphviz-dot-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/graphviz-dot-mode";
sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2";
name = "graphviz-dot-mode";
};
@@ -11952,7 +12036,7 @@
sha256 = "0xcj1kqzgxifhrhpl9j2nfpnkd6213ix5z7f97269v3inpzaiyf5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grapnel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grapnel";
sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r";
name = "grapnel";
};
@@ -11972,7 +12056,7 @@
sha256 = "0mnwmsn078hz317xfz6c05r7narx3k8956v1ajz5myxx8xrcr24z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grass-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grass-mode";
sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v";
name = "grass-mode";
};
@@ -11991,7 +12075,7 @@
sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grin";
sha256 = "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk";
name = "grin";
};
@@ -12012,7 +12096,7 @@
sha256 = "1bq73kcx744xnlm2yvccrzlbyx91c492sg7blx2a9z643v3gg1zs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grizzl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grizzl";
sha256 = "0354xskqzxc38l14zxqs31hadwh27v9lyx67y3hnd94d8abr0qcb";
name = "grizzl";
};
@@ -12033,7 +12117,7 @@
sha256 = "0wy8iw12b9bs7xza8jjnjvggr59rgbsgn1kk2g0pj0nppvfdrvjm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/groovy-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/groovy-mode";
sha256 = "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal";
name = "groovy-mode";
};
@@ -12054,7 +12138,7 @@
sha256 = "14h0rcd3nkw3pmx8jwip20p6rzl9qdkip5g52gfjjbqfvaffsrkd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gruber-darker-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gruber-darker-theme";
sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi";
name = "gruber-darker-theme";
};
@@ -12075,7 +12159,7 @@
sha256 = "0zpmhjwj64s72iv3dgsy07pfh20f25ngsy3pszmlrfkxk0926d8k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/grunt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grunt";
sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz";
name = "grunt";
};
@@ -12096,7 +12180,7 @@
sha256 = "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/gscholar-bibtex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gscholar-bibtex";
sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az";
name = "gscholar-bibtex";
};
@@ -12117,7 +12201,7 @@
sha256 = "1bmcvn8a7g9ahpv2fww673hx9pa7nnrj9kpljq65azf61vq2an2g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/guide-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/guide-key";
sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf";
name = "guide-key";
};
@@ -12138,7 +12222,7 @@
sha256 = "040mcfhj2gggp8w1pgip7rxb1bnb23rxlm02wl6x1qv5i0q7g5x3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/guide-key-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/guide-key-tip";
sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06";
name = "guide-key-tip";
};
@@ -12159,7 +12243,7 @@
sha256 = "1y46qd9cgkfb0wp2cvksjncyp77hd2jnr4bm4zafqirc3qhbysx0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/guru-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/guru-mode";
sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs";
name = "guru-mode";
};
@@ -12180,7 +12264,7 @@
sha256 = "1c49lfm5saafxks591qyy2nilymxz3aqlxpsmnad5d0kfhvjr47z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hackernews";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hackernews";
sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a";
name = "hackernews";
};
@@ -12201,7 +12285,7 @@
sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ham-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ham-mode";
sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz";
name = "ham-mode";
};
@@ -12222,7 +12306,7 @@
sha256 = "0fmr7ji8x5ki9fzybpbg3xbhzws6n7ffk7d0zf9jl1x3jd8d6988";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haml-mode";
sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f";
name = "haml-mode";
};
@@ -12243,7 +12327,7 @@
sha256 = "08l6p9n2ggg4filad1k663qc2gjgfbia4knnnif4sw7h92yb31jl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hardcore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hardcore-mode";
sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd";
name = "hardcore-mode";
};
@@ -12264,7 +12348,7 @@
sha256 = "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hardhat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hardhat";
sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z";
name = "hardhat";
};
@@ -12285,7 +12369,7 @@
sha256 = "0rqxi668wra1mfzq4fqscjghis5gqnwpazgidgix13brybaxydx4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/harvest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/harvest";
sha256 = "1qfhfzjwlnqpbq4kfxvs97fa3xks8zi02fnwv0ik8wb1ppbb77qd";
name = "harvest";
};
@@ -12306,7 +12390,7 @@
sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haskell-emacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-emacs";
sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6";
name = "haskell-emacs";
};
@@ -12327,7 +12411,7 @@
sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haskell-emacs-base";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-emacs-base";
sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb";
name = "haskell-emacs-base";
};
@@ -12348,7 +12432,7 @@
sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haskell-emacs-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-emacs-text";
sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy";
name = "haskell-emacs-text";
};
@@ -12369,7 +12453,7 @@
sha256 = "1hxjqr448z7sfk3wb48s1y4q51870gb2zv5bfam30lvwxbl3znkm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haskell-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-mode";
sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp";
name = "haskell-mode";
};
@@ -12390,7 +12474,7 @@
sha256 = "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haskell-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-snippets";
sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2";
name = "haskell-snippets";
};
@@ -12410,7 +12494,7 @@
sha256 = "00bjmww8pc9jr4ssqcv7k0migbxl1c8qs2l1khf25fxvgd1nyy02";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haskell-tab-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-tab-indent";
sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7";
name = "haskell-tab-indent";
};
@@ -12431,7 +12515,7 @@
sha256 = "14m8z13nvfqqgx40vzzbn0z9crwi3hhacmk1zfbv9cmhs95dwy6l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/haxor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haxor-mode";
sha256 = "1y4m058whdqnkkf9s6hzi0h6w0fc8ajfawhpjj0wqjam4adnfkq5";
name = "haxor-mode";
};
@@ -12452,7 +12536,7 @@
sha256 = "0hiw226gv73jh7s3jg4p1c15p4km4rs7i9ab4wgpkl5lg4vrz5i6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hcl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hcl-mode";
sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin";
name = "hcl-mode";
};
@@ -12473,7 +12557,7 @@
sha256 = "1acmf3xv8afayxvdyqv5vpvv0v9msak5kqk03xxjznbl395x0asy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm";
sha256 = "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9";
name = "helm";
};
@@ -12494,7 +12578,7 @@
sha256 = "0ps86zpyywibjwcm9drmamla979ad61fyqr8d6bv71fr56k9ak21";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ack";
sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni";
name = "helm-ack";
};
@@ -12515,7 +12599,7 @@
sha256 = "0ybxjvhzpsg8k9j1315ls6xa3pqysm5xabn94xla99hc0n98mpw4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ag";
sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf";
name = "helm-ag";
};
@@ -12536,7 +12620,7 @@
sha256 = "015p5sszd54x81qm96gx6xwjkvbi4f3j9i2nhcvlkk75s95w1ijv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-aws";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-aws";
sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5";
name = "helm-aws";
};
@@ -12557,7 +12641,7 @@
sha256 = "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-backup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-backup";
sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3";
name = "helm-backup";
};
@@ -12578,7 +12662,7 @@
sha256 = "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-bm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bm";
sha256 = "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh";
name = "helm-bm";
};
@@ -12599,7 +12683,7 @@
sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-bundle-show";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bundle-show";
sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7";
name = "helm-bundle-show";
};
@@ -12620,7 +12704,7 @@
sha256 = "108584bmadgidqkdfvf333zkyb5v9f84pasz5h01fkh57ks8by9f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-c-yasnippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-c-yasnippet";
sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90";
name = "helm-c-yasnippet";
};
@@ -12641,7 +12725,7 @@
sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-circe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-circe";
sha256 = "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v";
name = "helm-circe";
};
@@ -12662,7 +12746,7 @@
sha256 = "1l61csd1gqz7kg5zjx60cfy824g42p682z7pk0rqzlrz8498wvkh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-commandlinefu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-commandlinefu";
sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd";
name = "helm-commandlinefu";
};
@@ -12683,7 +12767,7 @@
sha256 = "1acmf3xv8afayxvdyqv5vpvv0v9msak5kqk03xxjznbl395x0asy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-core";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-core";
sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda";
name = "helm-core";
};
@@ -12704,7 +12788,7 @@
sha256 = "0xnqkc4z22m41v5lgf87dd8xc4gmf932zbnbdhf9xic1gal1779c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-cscope";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-cscope";
sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4";
name = "helm-cscope";
};
@@ -12725,7 +12809,7 @@
sha256 = "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-dash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-dash";
sha256 = "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy";
name = "helm-dash";
};
@@ -12746,7 +12830,7 @@
sha256 = "1cm2vaw0j1x2w2m45k6iqbzm7nydfdx1x89673vsvb90whdgvjbp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-descbinds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-descbinds";
sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7";
name = "helm-descbinds";
};
@@ -12767,7 +12851,7 @@
sha256 = "0vmlpj6zfif5f3wzgq8lkfqprl3z5gjsqj86347krblgfzhqlz30";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-firefox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-firefox";
sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs";
name = "helm-firefox";
};
@@ -12788,7 +12872,7 @@
sha256 = "1fg786m4m6x7brbbchpdf4pwvwma7sn4597p5lzmhvh187z6g525";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-flycheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-flycheck";
sha256 = "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b";
name = "helm-flycheck";
};
@@ -12809,7 +12893,7 @@
sha256 = "00ls9v3jdpz3wka90crd193z3ipwnf1b0slmldn4vb9ivrndh6wn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ghc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ghc";
sha256 = "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d";
name = "helm-ghc";
};
@@ -12830,7 +12914,7 @@
sha256 = "0y379qap3mssz9nslb08vfzq5ihqcm156fbx0dszgz9d6xgkpdhw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ghq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ghq";
sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6";
name = "helm-ghq";
};
@@ -12851,7 +12935,7 @@
sha256 = "1hx9m18dfpl97xaskadhqdrd8syk271shxjasn3jnqa8a07m2983";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-git-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-git-grep";
sha256 = "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi";
name = "helm-git-grep";
};
@@ -12872,7 +12956,7 @@
sha256 = "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-github-stars";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-github-stars";
sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy";
name = "helm-github-stars";
};
@@ -12885,15 +12969,15 @@
helm-gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, gitlab, helm, lib, melpaBuild, s }:
melpaBuild {
pname = "helm-gitlab";
- version = "0.7.0";
+ version = "0.8.0";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "emacs-gitlab";
- rev = "90be6027eb59a967e5bbceaa5f32c098472ca245";
- sha256 = "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil";
+ rev = "a1c1441ff5ffb290e695eb9ac05431e9385578f4";
+ sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-gitlab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-gitlab";
sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd";
name = "helm-gitlab";
};
@@ -12914,7 +12998,7 @@
sha256 = "0h3iql8dxq80vpr1cv7fdaw0aniykp2rfzh07j5941jkiy4q63h0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-go-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-go-package";
sha256 = "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6";
name = "helm-go-package";
};
@@ -12935,7 +13019,7 @@
sha256 = "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-gtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-gtags";
sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl";
name = "helm-gtags";
};
@@ -12948,15 +13032,15 @@
helm-hatena-bookmark = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-hatena-bookmark";
- version = "2.2.0";
+ version = "2.2.1";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-hatena-bookmark";
- rev = "aa964321cc7fab626489df623abfa8adae6a46f9";
- sha256 = "0367dh9p9r1wl7sxrx17njggx3rs835krvddq45dhq7h1hqzlx7f";
+ rev = "8f3e9a55a66f8a48e25bbd49f8e75d5fc1f907f2";
+ sha256 = "0s7xrk4wqyqmq4rd2zlx7ysl90rpsnqn9l6vg8y1byqdg9cvrqsx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-hatena-bookmark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-hatena-bookmark";
sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id";
name = "helm-hatena-bookmark";
};
@@ -12977,7 +13061,7 @@
sha256 = "1imfzz6cfdq7fgrcgrafy2nln929mgh31vybk9frm7a9jpamqdxp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-hayoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-hayoo";
sha256 = "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32";
name = "helm-hayoo";
};
@@ -12998,7 +13082,7 @@
sha256 = "0bz2ngw816jvpw1a10j31y5hf1knz0mzz60l073h33qci11jbwid";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ispell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ispell";
sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0";
name = "helm-ispell";
};
@@ -13019,7 +13103,7 @@
sha256 = "1nd562lffc41r3y5x7y46f37ra97avllk2m95w23f9g42h47f1ar";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-lobsters";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-lobsters";
sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp";
name = "helm-lobsters";
};
@@ -13040,7 +13124,7 @@
sha256 = "0azs971d7pqd4ddxzy7bfs52cmrjbafwrcnf57afw39d772rzpdf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ls-git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ls-git";
sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj";
name = "helm-ls-git";
};
@@ -13061,7 +13145,7 @@
sha256 = "1hma79i69l8ilkr3l4b8zqk3ny62vqr1ym2blymia4ibwk4zqbda";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-ls-hg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ls-hg";
sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh";
name = "helm-ls-hg";
};
@@ -13082,7 +13166,7 @@
sha256 = "17ls0bplnja2qvg3129x2irgsgs7l4bjj0qi7b9z16i6knjkwfya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-make";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-make";
sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc";
name = "helm-make";
};
@@ -13103,7 +13187,7 @@
sha256 = "03588hanfa20pjp9w1bqy8wsf5x6az0vfq0bmcnr4xvlf6fhkyxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-migemo";
sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x";
name = "helm-migemo";
};
@@ -13124,7 +13208,7 @@
sha256 = "1srx5f0s9x7zan7ayqd6scxfhcvr3nkd4yzs96hphd87rb18apzk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-mode-manager";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-mode-manager";
sha256 = "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd";
name = "helm-mode-manager";
};
@@ -13145,7 +13229,7 @@
sha256 = "0gknncyhr2392xkvghgy5mh6gdv6qzvswidx2wy04ypb4s0vxgq2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-mt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-mt";
sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a";
name = "helm-mt";
};
@@ -13166,7 +13250,7 @@
sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-nixos-options";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-nixos-options";
sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933";
name = "helm-nixos-options";
};
@@ -13187,7 +13271,7 @@
sha256 = "1hq1nnmgkx0a8sv6g8k4v9f0102qg7jga0hcjnr8lcji51nqrcya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-open-github";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-open-github";
sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx";
name = "helm-open-github";
};
@@ -13208,7 +13292,7 @@
sha256 = "02yjnag9wr9dk93z41f0i5mqij9bz57fxkv4nddabyc18k7zfrhj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-org-rifle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-org-rifle";
sha256 = "0hx764vql2qgw9i8qrr3kkn23lw6jx3x604dm1y33ig6a15gy3a3";
name = "helm-org-rifle";
};
@@ -13229,7 +13313,7 @@
sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-orgcard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-orgcard";
sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p";
name = "helm-orgcard";
};
@@ -13250,7 +13334,7 @@
sha256 = "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-package";
sha256 = "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y";
name = "helm-package";
};
@@ -13271,7 +13355,7 @@
sha256 = "1r2ndmrw5ivawb940j8jnmqzxv46qrzd3cqh9fvxx5yicf020fjf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-pages";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-pages";
sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj";
name = "helm-pages";
};
@@ -13292,7 +13376,7 @@
sha256 = "01cj2897hqz02mfz32nxlyyp59iwm0gz1zj11s8ll7pwy9q3r90g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-perldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-perldoc";
sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb";
name = "helm-perldoc";
};
@@ -13313,7 +13397,7 @@
sha256 = "0bgpd50ningqyzwhfinfrn6gqacard5ynwllhg9clq0f683sbck2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-proc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-proc";
sha256 = "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx";
name = "helm-proc";
};
@@ -13334,7 +13418,7 @@
sha256 = "1q7hfj8ldwivhjp9ns5pvsn0ds6pyvl2zhl366c22s6q8jmbr8ik";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-project-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-project-persist";
sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld";
name = "helm-project-persist";
};
@@ -13355,7 +13439,7 @@
sha256 = "0jm6nnnjyd4kmm1knh0mq3xhnw2hvs3linwlynj8yaliqvlv6brv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-pt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-pt";
sha256 = "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi";
name = "helm-pt";
};
@@ -13376,7 +13460,7 @@
sha256 = "1jy9l4an2aqynj86pw2qxpzw446xm376n2ykiz17qlimqbxhwkgz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-purpose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-purpose";
sha256 = "0am8fy7ihk4hv07a6bnk9mwy986h6i6qxwpdmfhajzga71ixchg6";
name = "helm-purpose";
};
@@ -13397,7 +13481,7 @@
sha256 = "1ik0vllakh73kc2zbgii4sm33n9pj388gaz69j4drz2mik307zvs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-pydoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-pydoc";
sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7";
name = "helm-pydoc";
};
@@ -13410,15 +13494,15 @@
helm-qiita = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-qiita";
- version = "0.1.1";
+ version = "1.0.0";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-qiita";
- rev = "c49156fdb73cc3dc555d86aad4ed41638372faf8";
- sha256 = "1dadwl9hfi2a91d6wxp84chgd1mjr03ibwdhw3llml77shbizmqp";
+ rev = "1adb50a144439b536523ae0af24fedb7faee2495";
+ sha256 = "12mkdjqg2vh95wwlr7iyv5janpvx7r745qfmxkjdx7c8ph14j5h7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-qiita";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-qiita";
sha256 = "1iz2w1901zz3zk9zazikmnkzng5klnvqn4ph1id7liksrcdpdmpm";
name = "helm-qiita";
};
@@ -13439,7 +13523,7 @@
sha256 = "1hfn7zk3pgz3w8mn44hh6dcv377j5272azx4r12p95kkp770xls2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-recoll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-recoll";
sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b";
name = "helm-recoll";
};
@@ -13460,7 +13544,7 @@
sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-robe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-robe";
sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw";
name = "helm-robe";
};
@@ -13481,7 +13565,7 @@
sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-rubygems-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-rubygems-org";
sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs";
name = "helm-rubygems-org";
};
@@ -13502,7 +13586,7 @@
sha256 = "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-sage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-sage";
sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj";
name = "helm-sage";
};
@@ -13523,7 +13607,7 @@
sha256 = "13j3rgg5zfpxds6vsyq0aqws1f3p5y5dsq8558nqsymqvycpn047";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-spaces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-spaces";
sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791";
name = "helm-spaces";
};
@@ -13544,7 +13628,7 @@
sha256 = "1lkjrz9ma2bxr8vskdm3sgrmsyiic798q3271dw38d453bhv4bl1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-swoop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-swoop";
sha256 = "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8";
name = "helm-swoop";
};
@@ -13565,7 +13649,7 @@
sha256 = "0rzbdrs5d5a0icpxrqik2iaz8i5bacw6nm2caf75s9w9j0j6s9li";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-themes";
sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j";
name = "helm-themes";
};
@@ -13586,7 +13670,7 @@
sha256 = "14lbdvs9xdnipsn3lywbvgsqwqnbm8fxm6d1ilq0cj5z6zkxkya0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-unicode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-unicode";
sha256 = "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4";
name = "helm-unicode";
};
@@ -13607,7 +13691,7 @@
sha256 = "0s8zp3kx2kxlfyd26yr3lphwcybhbm8qa9vzmxr3kaylwy6jpz5q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-w32-launcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-w32-launcher";
sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri";
name = "helm-w32-launcher";
};
@@ -13628,7 +13712,7 @@
sha256 = "1j6ssbjbm5ym3pg0icpfp735y4dfhlky9qhl9hwp2n3wmba5g9h1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/helm-zhihu-daily";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-zhihu-daily";
sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r";
name = "helm-zhihu-daily";
};
@@ -13649,7 +13733,7 @@
sha256 = "1zr59kcnkd9bm5676shmz63n0wpnfr7yl9g4l01ng0xcili1n13i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hfst-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hfst-mode";
sha256 = "1w342n5k9ak1m5znysvrplpr9dhmi7hxbkr4d1dx51dn0azbpjh7";
name = "hfst-mode";
};
@@ -13670,7 +13754,7 @@
sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hi2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hi2";
sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2";
name = "hi2";
};
@@ -13691,7 +13775,7 @@
sha256 = "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-blocks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-blocks";
sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1";
name = "highlight-blocks";
};
@@ -13712,7 +13796,7 @@
sha256 = "08czwa165rnd5z0dwwdddn7zi5w63sdk31l47bj0598kbly01n7r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-defined";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-defined";
sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms";
name = "highlight-defined";
};
@@ -13733,7 +13817,7 @@
sha256 = "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-indentation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-indentation";
sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6";
name = "highlight-indentation";
};
@@ -13754,7 +13838,7 @@
sha256 = "083jmw9jaxj5d5f0b0gxxb0gjdi4dv1sm66559105slbkl2nsa3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-numbers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-numbers";
sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv";
name = "highlight-numbers";
};
@@ -13775,7 +13859,7 @@
sha256 = "08ld4wjrkd77cghmrf1n2hn2yzid7bdqwz6b1rzzqaiwxl138iy9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-parentheses";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-parentheses";
sha256 = "1d38wxk5bwblddr74crzwjwpgyr8zgcl5h5ilywg35jpv7n66lp5";
name = "highlight-parentheses";
};
@@ -13796,7 +13880,7 @@
sha256 = "1ahg9qzss67jpw0wp2izys6lyss4nqjy9320fpa4vdx39msdmjjb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-quoted";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-quoted";
sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl";
name = "highlight-quoted";
};
@@ -13817,7 +13901,7 @@
sha256 = "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/highlight-symbol";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-symbol";
sha256 = "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4";
name = "highlight-symbol";
};
@@ -13838,7 +13922,7 @@
sha256 = "0hb74j5137yj3rm2si16xzwmcvkiwx8ywh1qrlnrzv5gl4viyjzb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hindent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hindent";
sha256 = "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz";
name = "hindent";
};
@@ -13859,7 +13943,7 @@
sha256 = "0mzk4agkcaaw7gryi0wrxv0blqndqsjf1ivdvr2nrnqi798sdhbr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hippie-expand-slime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hippie-expand-slime";
sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m";
name = "hippie-expand-slime";
};
@@ -13880,7 +13964,7 @@
sha256 = "0nfr8ad0klqwi97fjchvwx9mfc672lhv3ll166sr8vn6jlh7rkv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hippie-namespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hippie-namespace";
sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0";
name = "hippie-namespace";
};
@@ -13901,7 +13985,7 @@
sha256 = "0dy98sg92xvnr4algm2v2bnjcdwzv0b0vqk0312b0ziinkzisas1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/history";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/history";
sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g";
name = "history";
};
@@ -13922,7 +14006,7 @@
sha256 = "1mxicha6m61qxz1mv9z76x4g9fpqk4ch9i6jf7nnpxd6x4xz3f7z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/historyf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/historyf";
sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s";
name = "historyf";
};
@@ -13943,7 +14027,7 @@
sha256 = "0889dzrwizpkyh3wms13k8zx27ipsrsxfa4j4yzk4cwk3aicckcr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hl-anything";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-anything";
sha256 = "0czpc82j5hbzprc66aall72lqnk38dxgpzx4rs8sbx95cag12dxa";
name = "hl-anything";
};
@@ -13964,7 +14048,7 @@
sha256 = "1hgigbgppdhmr7rc901r95kyydjk05dck8mwbryh7kpglns365fa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hl-sentence";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-sentence";
sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs";
name = "hl-sentence";
};
@@ -13985,7 +14069,7 @@
sha256 = "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hl-sexp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-sexp";
sha256 = "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy";
name = "hl-sexp";
};
@@ -13998,15 +14082,15 @@
hl-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hl-todo";
- version = "1.5.0";
+ version = "1.6.0";
src = fetchFromGitHub {
owner = "tarsius";
repo = "hl-todo";
- rev = "6507868d63f3569a6f196716c38e09cf2b57d4e9";
- sha256 = "1ljakm15bsl9hv1rbg6lj0mnbc4qna5fr9rwkalnlwknjpka1bx3";
+ rev = "954ab8390b627499248986a608aacfaa6ddae4e0";
+ sha256 = "0rvkkzbcf36jbnk8adn39gmv0c8m0a189q9s235nasmbry8pjqmg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hl-todo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-todo";
sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4";
name = "hl-todo";
};
@@ -14027,7 +14111,7 @@
sha256 = "1wg6vc9swwspi6s6jpig3my83i2pq8vkq2cy1q3an87rczacmfzp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hoa-pp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hoa-pp-mode";
sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla";
name = "hoa-pp-mode";
};
@@ -14048,7 +14132,7 @@
sha256 = "0yh9v5zng1j2kfjjadfkdds67jws79q52kvl2mx9s8mq28263idm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/homebrew-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/homebrew-mode";
sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj";
name = "homebrew-mode";
};
@@ -14069,7 +14153,7 @@
sha256 = "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hookify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hookify";
sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy";
name = "hookify";
};
@@ -14090,7 +14174,7 @@
sha256 = "0k09n66jar0prq9aal2h3izp1y67jibdx0gjr0g4jx1p1yxig1dg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ht";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ht";
sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd";
name = "ht";
};
@@ -14111,7 +14195,7 @@
sha256 = "0c648dl5zwjrqx9n6zr6nyzx2zcnv05d5i4hvhjpl9q3y011ncns";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/html-to-markdown";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/html-to-markdown";
sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv";
name = "html-to-markdown";
};
@@ -14132,7 +14216,7 @@
sha256 = "1h9n388fi17nbyfciqywgrq3n165kpiildbimx59qyk2ac3v7rqk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/httpcode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/httpcode";
sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh";
name = "httpcode";
};
@@ -14153,7 +14237,7 @@
sha256 = "0dd257988bdar9hl2711ch5qshx9jc11fqxcvbrd7rc1va5cshs9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/httprepl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/httprepl";
sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh";
name = "httprepl";
};
@@ -14174,7 +14258,7 @@
sha256 = "1b8992vzq5bh01pjlj181nzqjrqs4fbjpwvv8h7gjq42sf8w59sm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hyai";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hyai";
sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s";
name = "hyai";
};
@@ -14195,7 +14279,7 @@
sha256 = "0nwsmc4c3v0wbfy917ik9k7yz8yclfac695p7p9sh9y354k3maw4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hyde";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hyde";
sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3";
name = "hyde";
};
@@ -14216,7 +14300,7 @@
sha256 = "08iw95lyizcyf6cjl37fm8wvay0vsk9758pk9gq9f2xiafcchl7f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/hydra";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hydra";
sha256 = "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw";
name = "hydra";
};
@@ -14237,7 +14321,7 @@
sha256 = "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ibuffer-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-projectile";
sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk";
name = "ibuffer-projectile";
};
@@ -14258,7 +14342,7 @@
sha256 = "0bqdi5w120256g74k0j4jj81x804x1gcg4dxa74w3mb6fl5xlvs8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ibuffer-vc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-vc";
sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla";
name = "ibuffer-vc";
};
@@ -14279,7 +14363,7 @@
sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/identica-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/identica-mode";
sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q";
name = "identica-mode";
};
@@ -14300,7 +14384,7 @@
sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/idle-highlight-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idle-highlight-mode";
sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc";
name = "idle-highlight-mode";
};
@@ -14321,7 +14405,7 @@
sha256 = "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-at-point";
sha256 = "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0";
name = "ido-at-point";
};
@@ -14342,7 +14426,7 @@
sha256 = "1ffmsmi31jc0gqnbdxrd8ipsy790bn6hgq3rmayylavmdpg3qfd5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-complete-space-or-hyphen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-complete-space-or-hyphen";
sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc";
name = "ido-complete-space-or-hyphen";
};
@@ -14363,7 +14447,7 @@
sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-completing-read+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-completing-read+";
sha256 = "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh";
name = "ido-completing-read-plus";
};
@@ -14384,7 +14468,7 @@
sha256 = "0055dda1la7yah33xsi19j4hcdmqp17ily2dvkipm4y6d3ww8yqa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-describe-bindings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-describe-bindings";
sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2";
name = "ido-describe-bindings";
};
@@ -14405,7 +14489,7 @@
sha256 = "0f1p6cnl0arcc2y1h99nqcflp7byvyf6hj6fmv5xqggs66qc72lb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-grid-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-grid-mode";
sha256 = "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr";
name = "ido-grid-mode";
};
@@ -14426,7 +14510,7 @@
sha256 = "1z7az7h90v72llxvdclcywvf1qd0nhkfa45bp99xi7cy7sqsqssf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-load-library";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-load-library";
sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj";
name = "ido-load-library";
};
@@ -14447,7 +14531,7 @@
sha256 = "0j12li001yq08vzwh1b25qyq09llizrkgaay9k07g9pvfxlx6zb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-occur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-occur";
sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji";
name = "ido-occur";
};
@@ -14468,7 +14552,7 @@
sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-ubiquitous";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-ubiquitous";
sha256 = "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp";
name = "ido-ubiquitous";
};
@@ -14489,7 +14573,7 @@
sha256 = "1lv82q639xjnmvby56nwqn23ijh6f163bk675s33dkingm8csj8k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-vertical-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-vertical-mode";
sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm";
name = "ido-vertical-mode";
};
@@ -14510,7 +14594,7 @@
sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ido-yes-or-no";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-yes-or-no";
sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana";
name = "ido-yes-or-no";
};
@@ -14531,7 +14615,7 @@
sha256 = "0bq0kx0889rdy8aasxbpmb0a4awpk2b24zv6x1dmhacmc5rj11i0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/idomenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idomenu";
sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h";
name = "idomenu";
};
@@ -14552,7 +14636,7 @@
sha256 = "0iwgbaq2797k1f7ql86i2pjfa67cha4s2v0mgmrd0qcgqkxsdq92";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/idris-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idris-mode";
sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s";
name = "idris-mode";
};
@@ -14573,7 +14657,7 @@
sha256 = "06qv95bgcb6n3zcjs2i1q80v9040z7m9pb9xbhxmqzcx68vpbpdm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/iedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iedit";
sha256 = "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04";
name = "iedit";
};
@@ -14594,7 +14678,7 @@
sha256 = "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/iflipb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iflipb";
sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d";
name = "iflipb";
};
@@ -14615,7 +14699,7 @@
sha256 = "1ca2n6vv2z7c3550w0jzwmp6xp0rmrrbljr1ik2ijign62r35a3q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ignoramus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ignoramus";
sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9";
name = "ignoramus";
};
@@ -14636,7 +14720,7 @@
sha256 = "0imvxzcja91cd19zm2frqfpxm8j0bc89w9s7q0pkpvyjz44kjbq8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/image-archive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/image-archive";
sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp";
name = "image-archive";
};
@@ -14657,7 +14741,7 @@
sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/image-dired+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/image-dired+";
sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy";
name = "image-dired-plus";
};
@@ -14678,7 +14762,7 @@
sha256 = "0k69xbih0273xvmj035vcmm67l6hgjb99pb1jbva5x0pnszb1vdv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/image+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/image+";
sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg";
name = "image-plus";
};
@@ -14699,7 +14783,7 @@
sha256 = "15lflvpapm5749qq7jzdwbd0isb89i6df3np4wn9y9gjl7y92wk7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/imapfilter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imapfilter";
sha256 = "0i893kqj6yzadhza800r6ri7fihl01r57z8yrzzh3d09qaias5vz";
name = "imapfilter";
};
@@ -14720,7 +14804,7 @@
sha256 = "0qc96p5f7paxaxzv73w072cba8jb6ibdbhml7n7cm85b0rz1wf16";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/imenu-anywhere";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenu-anywhere";
sha256 = "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq";
name = "imenu-anywhere";
};
@@ -14741,7 +14825,7 @@
sha256 = "1j0p0zkk89lg5xk5qzdnj9nxxiaxhff2y9iv9lw456kvb3lsyvjk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/imenu-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenu-list";
sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s";
name = "imenu-list";
};
@@ -14762,7 +14846,7 @@
sha256 = "1y57xp0w0c6hg3gn4f1l3612a18li4gwhfa4dy18fy94gr54ycpx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/imenus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenus";
sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r";
name = "imenus";
};
@@ -14783,7 +14867,7 @@
sha256 = "19jqcbiwqknlpij9q63m1p69k4zb3v1qdx0858drprc2rl1p55cd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/imgix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imgix";
sha256 = "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q";
name = "imgix";
};
@@ -14804,7 +14888,7 @@
sha256 = "1pf7pqh8yzyvh4gzvp5npfq8kcfjcbzra0kkw7zmz769xxc8v84x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/immutant-server";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/immutant-server";
sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i";
name = "immutant-server";
};
@@ -14846,7 +14930,7 @@
sha256 = "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/import-popwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/import-popwin";
sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy";
name = "import-popwin";
};
@@ -14867,7 +14951,7 @@
sha256 = "1dmr1arqy2vs9jdjha513mvw3yfwgkn4zs728q83asjy91sfcz7k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inf-clojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inf-clojure";
sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl";
name = "inf-clojure";
};
@@ -14888,7 +14972,7 @@
sha256 = "11zsprv5ycnfqi358dd4cx70dbn6a8hccd4prf28lln7vhldbmjz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inf-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inf-ruby";
sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp";
name = "inf-ruby";
};
@@ -14909,7 +14993,7 @@
sha256 = "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inflections";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inflections";
sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70";
name = "inflections";
};
@@ -14930,7 +15014,7 @@
sha256 = "031vb7ndz68x0119v4pyizz0ykd341ywcp5s7i4z35zx1vcqj8az";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/init-loader";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/init-loader";
sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r";
name = "init-loader";
};
@@ -14951,7 +15035,7 @@
sha256 = "06w1vnfhjy8g62z6xajin5akgh30pa0kk56am61kv6mi5ia8fc96";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/init-open-recentf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/init-open-recentf";
sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r";
name = "init-open-recentf";
};
@@ -14972,7 +15056,7 @@
sha256 = "1rfw38a63bvzglqx7mb8wlnzjvlmkhkn35hn66snqqgvnmnvi54g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/initsplit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/initsplit";
sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq";
name = "initsplit";
};
@@ -14993,7 +15077,7 @@
sha256 = "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inline-crypt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inline-crypt";
sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n";
name = "inline-crypt";
};
@@ -15014,7 +15098,7 @@
sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/inlineR";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inlineR";
sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw";
name = "inlineR";
};
@@ -15035,7 +15119,7 @@
sha256 = "1mqnz40zirnyn3wa71wzzjph3a0sbgvzcywcr7xnzqpl6sp7g93f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/insert-shebang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/insert-shebang";
sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v";
name = "insert-shebang";
};
@@ -15055,7 +15139,7 @@
sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/instapaper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/instapaper";
sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn";
name = "instapaper";
};
@@ -15076,7 +15160,7 @@
sha256 = "1qs6j9cz152wfy54c5d1a558l0df6wxv3djlvfl2mx58wf0sk73h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/interleave";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/interleave";
sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy";
name = "interleave";
};
@@ -15097,7 +15181,7 @@
sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/iplayer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iplayer";
sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r";
name = "iplayer";
};
@@ -15118,7 +15202,7 @@
sha256 = "036q933yw7pimnnq43ydaqqfccgf4iwvjhjmsavp7l6y1w16rvmy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ir-black-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ir-black-theme";
sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v";
name = "ir-black-theme";
};
@@ -15139,7 +15223,7 @@
sha256 = "1y72xhs978ah53fmp10pa8riscx94y9bjvr26wk2f3zc94c6cq3d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/irony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/irony";
sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a";
name = "irony";
};
@@ -15160,7 +15244,7 @@
sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/isgd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isgd";
sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi";
name = "isgd";
};
@@ -15181,8 +15265,8 @@
sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ivy";
- sha256 = "1y1izabz2gx2f26ayrfg0094ygb1n5val0ng226p3pfxgj07wfss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy";
+ sha256 = "0xf5p91r2ljl93wbr5wbgnb4hzhs00wkaf4fmdlf31la8xwwp5ci";
name = "ivy";
};
packageRequires = [ emacs ];
@@ -15191,6 +15275,48 @@
license = lib.licenses.free;
};
}) {};
+ ivy-gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, gitlab, ivy, lib, melpaBuild, s }:
+ melpaBuild {
+ pname = "ivy-gitlab";
+ version = "0.8.0";
+ src = fetchFromGitHub {
+ owner = "nlamirault";
+ repo = "emacs-gitlab";
+ rev = "a1c1441ff5ffb290e695eb9ac05431e9385578f4";
+ sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy-gitlab";
+ sha256 = "0gbwsmb6my0327f9j96s20mybnjaw9yaiwhs3sy3vav0qww91z1y";
+ name = "ivy-gitlab";
+ };
+ packageRequires = [ dash gitlab ivy s ];
+ meta = {
+ homepage = "https://melpa.org/#/ivy-gitlab";
+ license = lib.licenses.free;
+ };
+ }) {};
+ ivy-hydra = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "ivy-hydra";
+ version = "0.8.0";
+ src = fetchFromGitHub {
+ owner = "abo-abo";
+ repo = "swiper";
+ rev = "c24a3728538dd7d11de9f141b3ad1d8e0996c330";
+ sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy-hydra";
+ sha256 = "1xv8nfi6dzhx868h44ydq4f5jmsa7rbqfa7jk8g0z0ifv477hrvx";
+ name = "ivy-hydra";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/ivy-hydra";
+ license = lib.licenses.free;
+ };
+ }) {};
ix = callPackage ({ fetchFromGitHub, fetchurl, grapnel, lib, melpaBuild }:
melpaBuild {
pname = "ix";
@@ -15202,7 +15328,7 @@
sha256 = "0rpxh1jv98dl9b5ldjkljk70z4hkl61kcmvy1lhpj3lxn8ysv87a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ix";
sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3";
name = "ix";
};
@@ -15223,7 +15349,7 @@
sha256 = "1mb0k4lmbkbpn6qzzg8n14pybhd5zla77ppqac6a9kw89fj2qj4i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/iy-go-to-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iy-go-to-char";
sha256 = "10szn9y7gl8947p3f9w6p6vzjf1a9cjif9mbj3qdqx4vbsl9mqpz";
name = "iy-go-to-char";
};
@@ -15244,7 +15370,7 @@
sha256 = "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/j-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/j-mode";
sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i";
name = "j-mode";
};
@@ -15263,7 +15389,7 @@
sha256 = "0d6dwj45rrvh3dlrhdmqkxjmd439a1x3h88czdg7np2m5q2xg2dg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jabber";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jabber";
sha256 = "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8";
name = "jabber";
};
@@ -15284,7 +15410,7 @@
sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jade-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jade-mode";
sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94";
name = "jade-mode";
};
@@ -15305,7 +15431,7 @@
sha256 = "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jammer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jammer";
sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z";
name = "jammer";
};
@@ -15326,7 +15452,7 @@
sha256 = "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/japanlaw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/japanlaw";
sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa";
name = "japanlaw";
};
@@ -15347,7 +15473,7 @@
sha256 = "1bngn6v6w60qb3zz7s3px7v3wk99a3hfvzrg9l06dz1q7xgyvsi1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/java-imports";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/java-imports";
sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98";
name = "java-imports";
};
@@ -15368,7 +15494,7 @@
sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/javadoc-lookup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/javadoc-lookup";
sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79";
name = "javadoc-lookup";
};
@@ -15389,7 +15515,7 @@
sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jedi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jedi";
sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4";
name = "jedi";
};
@@ -15410,7 +15536,7 @@
sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jedi-core";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jedi-core";
sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f";
name = "jedi-core";
};
@@ -15431,7 +15557,7 @@
sha256 = "0ws0297v6sairvsk665wrfzymfi599g5ljshfnpmi81qnnnbwjgf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jq-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jq-mode";
sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin";
name = "jq-mode";
};
@@ -15452,7 +15578,7 @@
sha256 = "1f1zad423q5adycbbh62094m622gl8ncwbr8vxad1a6zcga70cgi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/js-comint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js-comint";
sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1";
name = "js-comint";
};
@@ -15473,7 +15599,7 @@
sha256 = "0d2hqlgm09rw0azha5dxmq63b56sa8b9qj7gd7invibl6nnyjh4a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/js2-closure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-closure";
sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7";
name = "js2-closure";
};
@@ -15494,7 +15620,7 @@
sha256 = "0r2szaxr3q0gvxqd9asn03q8jf3nclxv4mqdsjn96s98n45x388l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/js2-highlight-vars";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-highlight-vars";
sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475";
name = "js2-highlight-vars";
};
@@ -15515,7 +15641,7 @@
sha256 = "0xj87grvg7pbhh4d239gaqai5gl72klhpp9yksaqn77qnm98q4fn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/js2-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-mode";
sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv";
name = "js2-mode";
};
@@ -15536,7 +15662,7 @@
sha256 = "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/js2-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-refactor";
sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r";
name = "js2-refactor";
};
@@ -15557,7 +15683,7 @@
sha256 = "17d0nf1kz7mgv5qz57q6khy4w5vrmsliqirggahk9s6nnsx1j56n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/js3-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js3-mode";
sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r";
name = "js3-mode";
};
@@ -15578,7 +15704,7 @@
sha256 = "0pjmslxwmlb9cb3j5qfsyxq1lg1ywzw1p9dvj330c2m7nla1j70x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jsfmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jsfmt";
sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd";
name = "jsfmt";
};
@@ -15599,7 +15725,7 @@
sha256 = "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/json-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-mode";
sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70";
name = "json-mode";
};
@@ -15620,7 +15746,7 @@
sha256 = "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/json-reformat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-reformat";
sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na";
name = "json-reformat";
};
@@ -15641,7 +15767,7 @@
sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/json-snatcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-snatcher";
sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4";
name = "json-snatcher";
};
@@ -15662,7 +15788,7 @@
sha256 = "1wx28rr5dk238yz07xn95v88qmv10c1gz9pcxard2kszpnmrn6dx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jsx-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jsx-mode";
sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b";
name = "jsx-mode";
};
@@ -15672,6 +15798,27 @@
license = lib.licenses.free;
};
}) {};
+ judge-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "judge-indent";
+ version = "1.1.2";
+ src = fetchFromGitHub {
+ owner = "yascentur";
+ repo = "judge-indent-el";
+ rev = "4cf8c8d3375f4d655b909a415cc4fa8d235a657a";
+ sha256 = "11wybxrl2lny6vbf7qrxyf9wxw88ppvbrlfcd65paalrna2hn46h";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/judge-indent";
+ sha256 = "1gakdhnlxfq8knnykqdw4bizb5y67m8xhi07zannd7bsfwi4k6rh";
+ name = "judge-indent";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/judge-indent";
+ license = lib.licenses.free;
+ };
+ }) {};
jump = callPackage ({ fetchFromGitHub, fetchurl, findr, inflections, lib, melpaBuild }:
melpaBuild {
pname = "jump";
@@ -15683,7 +15830,7 @@
sha256 = "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jump";
sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364";
name = "jump";
};
@@ -15704,7 +15851,7 @@
sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jump-to-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jump-to-line";
sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr";
name = "jump-to-line";
};
@@ -15725,7 +15872,7 @@
sha256 = "1785nsv61m51lpykai2wxrv6zmwbm5654v937fgw177p37054s83";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/jvm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jvm-mode";
sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w";
name = "jvm-mode";
};
@@ -15746,7 +15893,7 @@
sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kaesar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaesar";
sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l";
name = "kaesar";
};
@@ -15767,7 +15914,7 @@
sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kaesar-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaesar-file";
sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc";
name = "kaesar-file";
};
@@ -15788,7 +15935,7 @@
sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kaesar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaesar-mode";
sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry";
name = "kaesar-mode";
};
@@ -15809,7 +15956,7 @@
sha256 = "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kakapo-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kakapo-mode";
sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss";
name = "kakapo-mode";
};
@@ -15830,7 +15977,7 @@
sha256 = "0avcg307r4navvgj3hjkggk4gr7mzs4mljhxh223r8g69l9bm6m8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/karma";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/karma";
sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc";
name = "karma";
};
@@ -15851,7 +15998,7 @@
sha256 = "14ijniyvcfmj4y77yhiplsclincng2r3jbdnmmdnwzliv65f7l6q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/key-combo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-combo";
sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf";
name = "key-combo";
};
@@ -15872,7 +16019,7 @@
sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/key-seq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-seq";
sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74";
name = "key-seq";
};
@@ -15893,7 +16040,7 @@
sha256 = "0xgm80dbg45bs3k8psd3pv49z1xbvzm156xs55gmxdzbgxbzpazr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/keychain-environment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keychain-environment";
sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v";
name = "keychain-environment";
};
@@ -15914,7 +16061,7 @@
sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/keydef";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keydef";
sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992";
name = "keydef";
};
@@ -15935,7 +16082,7 @@
sha256 = "1x87mbnzkggx5llh0i0s3sj1nfw7liwnlqc9csya517w4x5mhl8i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/keyfreq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keyfreq";
sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7";
name = "keyfreq";
};
@@ -15956,7 +16103,7 @@
sha256 = "1c4qqfq7c1d31v9ap7fgq019l5vds7jzqq9c2dp4gj7j00d9vvlx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/keymap-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keymap-utils";
sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9";
name = "keymap-utils";
};
@@ -15977,7 +16124,7 @@
sha256 = "0z6sgz8nywsd00zaayafwy5hfi7kzxfifjkfr5cn1l7wlypyksfv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/keyset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keyset";
sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg";
name = "keyset";
};
@@ -15998,7 +16145,7 @@
sha256 = "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kibit-helper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kibit-helper";
sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s";
name = "kibit-helper";
};
@@ -16019,7 +16166,7 @@
sha256 = "1c5al7cyfnb0p5ya2aa5afadzbrrc079jx3r6zpkr64psskrhdv5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kill-or-bury-alive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kill-or-bury-alive";
sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8";
name = "kill-or-bury-alive";
};
@@ -16040,7 +16187,7 @@
sha256 = "0axvhikhg4fikiz4ifg0p4a5ygphbpjs0wd0gcbx29n0y54d1i93";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kill-ring-search";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kill-ring-search";
sha256 = "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan";
name = "kill-ring-search";
};
@@ -16061,7 +16208,7 @@
sha256 = "0imylcaiwpzvvb3g8kpsna1vk7v7bwdjfcsa98i41m1rv9yla86l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/killer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/killer";
sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma";
name = "killer";
};
@@ -16082,7 +16229,7 @@
sha256 = "0rzzjzkzgpiadm9awkj7wrh2hg97lhgwxg74gvdis3fc1xg2hyri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kivy-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kivy-mode";
sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1";
name = "kivy-mode";
};
@@ -16103,7 +16250,7 @@
sha256 = "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/know-your-http-well";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/know-your-http-well";
sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q";
name = "know-your-http-well";
};
@@ -16113,22 +16260,22 @@
license = lib.licenses.free;
};
}) {};
- ksp-cfg-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ ksp-cfg-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ksp-cfg-mode";
- version = "0.2";
+ version = "0.4";
src = fetchFromGitHub {
owner = "lashtear";
repo = "ksp-cfg-mode";
- rev = "6bb36fd1d0df7637a366f9aada3b22bc15782e71";
- sha256 = "1i4c6b44fxj6s3i86vzdz54igi1y99n0km736b8bmqkzwvldfv38";
+ rev = "07a957512e66030e1b9f8ac0f259051386acb5b5";
+ sha256 = "1kbmlhfxbp704mky8v69lzqd20bbnqijfnv110yigsy3kxi7hdrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ksp-cfg-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ksp-cfg-mode";
sha256 = "0azcn4qvziacbw1qy33fwdaldw7xpzr672vzjsqhr0b2vg9m2ipi";
name = "ksp-cfg-mode";
};
- packageRequires = [ emacs ];
+ packageRequires = [ cl-lib ];
meta = {
homepage = "https://melpa.org/#/ksp-cfg-mode";
license = lib.licenses.free;
@@ -16145,7 +16292,7 @@
sha256 = "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/kurecolor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kurecolor";
sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f";
name = "kurecolor";
};
@@ -16166,7 +16313,7 @@
sha256 = "1i8wbhc6i88plpq48ccka0avdj2x5rcxm81j93dmwp70ld0zws8p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/langtool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/langtool";
sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw";
name = "langtool";
};
@@ -16187,7 +16334,7 @@
sha256 = "07aavdr1dlw8hca27l8a0i8cs5ga1wqqdf1v1iyvjz61vygld77a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/latex-extra";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-extra";
sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj";
name = "latex-extra";
};
@@ -16208,7 +16355,7 @@
sha256 = "118xrgrnwsmsysmframf6bmb0gkrdrm3jbkgivzxs41cw92fhbzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/latex-math-preview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-math-preview";
sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr";
name = "latex-math-preview";
};
@@ -16229,7 +16376,7 @@
sha256 = "10i4r81pm95990d4yrabzdm49gp47mqpv15h4r4sih10p1kbn83h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/latex-unicode-math-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-unicode-math-mode";
sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr";
name = "latex-unicode-math-mode";
};
@@ -16250,7 +16397,7 @@
sha256 = "1hp65aai2bp5l7b3dhr6bz042xcikkk8vssirzibdw5qq6zqzgxm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ledger-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ledger-mode";
sha256 = "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s";
name = "ledger-mode";
};
@@ -16271,7 +16418,7 @@
sha256 = "04h6vk7w25yp4kzkwqnsmc59bm0182qqkyk5nxm3a1lv1v1590lf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lentic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lentic";
sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m";
name = "lentic";
};
@@ -16292,7 +16439,7 @@
sha256 = "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/less-css-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/less-css-mode";
sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8";
name = "less-css-mode";
};
@@ -16313,7 +16460,7 @@
sha256 = "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/letcheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/letcheck";
sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2";
name = "letcheck";
};
@@ -16334,7 +16481,7 @@
sha256 = "1n84vqxv4jqy5mnb1hbrqrhavq0y8c4mjsp0smg48bzi18350irl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lfe-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lfe-mode";
sha256 = "0smncyby53ipm8yqslz88sqjafk0x6r8d0qwk4wzk0pbgfyklhgs";
name = "lfe-mode";
};
@@ -16355,7 +16502,7 @@
sha256 = "0hi8s20vw4a5i5n5jlm5dzgsl1qpfyqbpskqszjls1xrrf3dd4zl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lice";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lice";
sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x";
name = "lice";
};
@@ -16376,7 +16523,7 @@
sha256 = "11sw43z5b0vypmhi0yysf2bxjy8fqpzl61y503jb7nhcfywmfkys";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lingr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lingr";
sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff";
name = "lingr";
};
@@ -16397,7 +16544,7 @@
sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/link";
sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8";
name = "link";
};
@@ -16418,7 +16565,7 @@
sha256 = "1v4fadxv7ym6lc09nd2xpz2k5vrikjv7annw99ii5cqrwhqa5838";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/link-hint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/link-hint";
sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89";
name = "link-hint";
};
@@ -16439,7 +16586,7 @@
sha256 = "1m4g4b96cxs05pfln7kdi6gvrdbv76f8dk806py5lq0gq7da2csc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/linum-relative";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/linum-relative";
sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj";
name = "linum-relative";
};
@@ -16460,7 +16607,7 @@
sha256 = "05iqhnhj61f30yk4ih63rimmyp134gyq18frc8qgrnwym64dsm6l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lispy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lispy";
sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g";
name = "lispy";
};
@@ -16488,7 +16635,7 @@
sha256 = "0qyj04p63fdh3iasp5cna1z5fhibmfyl9lvwyh22ajzsfbr3nhnk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lispyscript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lispyscript-mode";
sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr";
name = "lispyscript-mode";
};
@@ -16509,7 +16656,7 @@
sha256 = "197cqkiwxgamhfwbc8h492cmjll3fypkwzcphj26dfnr22v63kwq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/list-packages-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-packages-ext";
sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk";
name = "list-packages-ext";
};
@@ -16530,7 +16677,7 @@
sha256 = "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/list-unicode-display";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-unicode-display";
sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha";
name = "list-unicode-display";
};
@@ -16551,7 +16698,7 @@
sha256 = "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/list-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-utils";
sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3";
name = "list-utils";
};
@@ -16572,7 +16719,7 @@
sha256 = "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lit-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lit-mode";
sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59";
name = "lit-mode";
};
@@ -16593,7 +16740,7 @@
sha256 = "1fh9wrw5irn0g3dy8gkk63csdcxgi3w2038mxx3sk6ki3r2bmhw8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/literate-coffee-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/literate-coffee-mode";
sha256 = "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40";
name = "literate-coffee-mode";
};
@@ -16614,7 +16761,7 @@
sha256 = "1cwydbhhbs5v9y2s872zxc5lflqmfrdvnc8xz0qars52d7lg4br5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/live-code-talks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/live-code-talks";
sha256 = "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma";
name = "live-code-talks";
};
@@ -16627,15 +16774,15 @@
live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "live-py-mode";
- version = "2.11.0";
+ version = "2.12.0";
src = fetchFromGitHub {
owner = "donkirkby";
repo = "live-py-plugin";
- rev = "1d32394f1ac4f9acda836e6fbec1a8a5b6fe7303";
- sha256 = "10sf2z8idafw11z7g5brg7wwx0y0k724lh68qkrfi9r1x19c772x";
+ rev = "8f782f58aa2fa2c805b6f488ade9e1c33fed6edb";
+ sha256 = "0vmkqlgiahcc6aa0ky4jjdc5nxnn2i7qwfl6wkgy5rmq051nk4k0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/live-py-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/live-py-mode";
sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq";
name = "live-py-mode";
};
@@ -16656,7 +16803,7 @@
sha256 = "1fq4bnngbh9a18hq8mvnqkzs74k3g4c0lmwsncbhy6n21njv3kdy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/load-relative";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/load-relative";
sha256 = "0j8ybbjzhzgjx47pqqdbsqi8n6pzqcf6zqc38x7cf1kkklgc87ay";
name = "load-relative";
};
@@ -16677,7 +16824,7 @@
sha256 = "1089sbx20r30sis39vwy29fxhb2n3hh35rdv09lpzdxdq01s8wwp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/loc-changes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/loc-changes";
sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh";
name = "loc-changes";
};
@@ -16698,7 +16845,7 @@
sha256 = "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/log4e";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/log4e";
sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34";
name = "log4e";
};
@@ -16719,7 +16866,7 @@
sha256 = "0g5vq9xy9lwczs77lr91c1srhhfmasnnnmjvgc55hbl6iwmbizbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/logalimacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logalimacs";
sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6";
name = "logalimacs";
};
@@ -16740,7 +16887,7 @@
sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/logito";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logito";
sha256 = "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l";
name = "logito";
};
@@ -16761,7 +16908,7 @@
sha256 = "1yacic778ranlqblrcdhyf5igbrcin8aj30vjdm4klpmqb73hf1s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/logview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logview";
sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh";
name = "logview";
};
@@ -16782,7 +16929,7 @@
sha256 = "1rpvw0dvym559vb4nrfy74jq06nbsz2b0n60lcykagcir8mpcidk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/loop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/loop";
sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar";
name = "loop";
};
@@ -16803,7 +16950,7 @@
sha256 = "11y5jyq4xg9zlm1qi2y97nh05vhva9pai9yyr4x2pr41xz3s8fpk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/love-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/love-minor-mode";
sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m";
name = "love-minor-mode";
};
@@ -16824,7 +16971,7 @@
sha256 = "1qawjd0nbj1c142van7r01pmq74vkzcvnn27jgn79wwhplp9gm99";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/lua-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lua-mode";
sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94";
name = "lua-mode";
};
@@ -16845,7 +16992,7 @@
sha256 = "01847f8xmjfxvvi7hf73l7ypkdazwg8ciinm117zp4jkgnv0apz0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/m-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/m-buffer";
sha256 = "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc";
name = "m-buffer";
};
@@ -16866,7 +17013,7 @@
sha256 = "0dgsl1x6r8m9vvff1ia0kmz21h0dji2jl5cqlpx1m947zh45dahj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/macro-math";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/macro-math";
sha256 = "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00";
name = "macro-math";
};
@@ -16887,7 +17034,7 @@
sha256 = "0g9bnq4p3ffvva30hpll80dn3i41m51mcvw3qf787zg1nmc5a0j6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/macrostep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/macrostep";
sha256 = "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c";
name = "macrostep";
};
@@ -16908,7 +17055,7 @@
sha256 = "1rw5lvcj2v4b21akmsinkz24fbmp19s3jdqsd8jgmk3qqv0z81fc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magic-filetype";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magic-filetype";
sha256 = "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg";
name = "magic-filetype";
};
@@ -16921,15 +17068,15 @@
magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, git-commit, lib, magit-popup, melpaBuild, with-editor }:
melpaBuild {
pname = "magit";
- version = "2.6.2";
+ version = "2.7.0";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "2e6dcf8fe8672dca67e59a72975c2d850ce9bc16";
- sha256 = "0qdahg3vqha391nnspbqa5bjvi2g3jb277c5wzbfs132m4n076j2";
+ rev = "bfc6f6d88619221506e246390e5fbb39087564ec";
+ sha256 = "1dv5qr9z5lxj2zjhwjhx451mbkb8d3y00q7ar6n34x7d5c4gmiya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit";
sha256 = "0518ax2y7y2ji4jp7yghy84yxm0zgb059aqfa4v17grm4kr8p16q";
name = "magit";
};
@@ -16957,7 +17104,7 @@
sha256 = "19w8143c4spa856xyzx8fylndbj4s9nwn27f6v1ckqxvm5l0pph0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-annex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-annex";
sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys";
name = "magit-annex";
};
@@ -16978,7 +17125,7 @@
sha256 = "1vn6x53kpwv3zf2b5xjswyz6v853r8b9dg88qhwd2h480hrx6kal";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-filenotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-filenotify";
sha256 = "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7";
name = "magit-filenotify";
};
@@ -16999,7 +17146,7 @@
sha256 = "1jlww053s580d7rlvmr1dl79wxasa0hhh2jnwb1ra353d6h3a73w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-find-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-find-file";
sha256 = "1y66nsq1hbv1sb4n71gdxv7p1rz37vd9lkf7zl7avy0dchs499ik";
name = "magit-find-file";
};
@@ -17020,7 +17167,7 @@
sha256 = "0ym24gjd6c04zry08abcb09zvjbgj8nc1j12q0r51fhzzadxcxbb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-gerrit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-gerrit";
sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4";
name = "magit-gerrit";
};
@@ -17041,7 +17188,7 @@
sha256 = "19iqa2kzarpa75xy34hqvpy1y7dzx84pj540wwkj04dnpb4fwj2z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-gh-pulls";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-gh-pulls";
sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d";
name = "magit-gh-pulls";
};
@@ -17062,7 +17209,7 @@
sha256 = "0g9wqd4dbd0spal7ss9k679nak02hr1z0mgq6k4g5nkgngwn6l2q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-gitflow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-gitflow";
sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf";
name = "magit-gitflow";
};
@@ -17075,15 +17222,15 @@
magit-popup = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "magit-popup";
- version = "2.6.2";
+ version = "2.7.0";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "2e6dcf8fe8672dca67e59a72975c2d850ce9bc16";
- sha256 = "0qdahg3vqha391nnspbqa5bjvi2g3jb277c5wzbfs132m4n076j2";
+ rev = "bfc6f6d88619221506e246390e5fbb39087564ec";
+ sha256 = "1dv5qr9z5lxj2zjhwjhx451mbkb8d3y00q7ar6n34x7d5c4gmiya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-popup";
sha256 = "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj";
name = "magit-popup";
};
@@ -17096,15 +17243,15 @@
magit-rockstar = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "magit-rockstar";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchFromGitHub {
owner = "tarsius";
repo = "magit-rockstar";
- rev = "76f85a97d152777df6d27fecce4cf43d3dd5b3d9";
- sha256 = "14g9idwdvvx5b1cw9ba99pzbylaikl7w8xqgs87f3smzaqr6151w";
+ rev = "47780d27141ba50f225f0bd8109f92ba6d1db8d5";
+ sha256 = "075gxm4shbh5zfr17zpfn35w8ndgz9aqz6y3wws23wa4ff2n8kdc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-rockstar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-rockstar";
sha256 = "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n";
name = "magit-rockstar";
};
@@ -17125,7 +17272,7 @@
sha256 = "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-stgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-stgit";
sha256 = "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv";
name = "magit-stgit";
};
@@ -17146,7 +17293,7 @@
sha256 = "1g8zq0s38di96wlhljp370kyj4a0ir1z3vb94k66v2m5nj83ap68";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-svn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-svn";
sha256 = "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0";
name = "magit-svn";
};
@@ -17167,7 +17314,7 @@
sha256 = "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/magit-topgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-topgit";
sha256 = "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i";
name = "magit-topgit";
};
@@ -17188,7 +17335,7 @@
sha256 = "0fp5gbin1sgsdz39spk74vadkzig3ydwhpzx9vg7f231kk5f6wzx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/make-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/make-color";
sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k";
name = "make-color";
};
@@ -17209,7 +17356,7 @@
sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/makey";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/makey";
sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4";
name = "makey";
};
@@ -17230,7 +17377,7 @@
sha256 = "0z0ml7l1a45ych61qfc5fvkybl9hh37pgl6lzkaz6mcif1sl8gn1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/malabar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/malabar-mode";
sha256 = "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk";
name = "malabar-mode";
};
@@ -17251,7 +17398,7 @@
sha256 = "0hwxwwjzjxv2mmkxmalr2hp3x8apwcyvn2bz4d4yd4wrzcscay97";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/malinka";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/malinka";
sha256 = "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp";
name = "malinka";
};
@@ -17272,7 +17419,7 @@
sha256 = "1272fsjzsza9dxm8s64b7x2jzr3ks8wjpwvgcxha2dnsjzklcdcj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mallard-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mallard-mode";
sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd";
name = "mallard-mode";
};
@@ -17293,7 +17440,7 @@
sha256 = "1fkijm0gikbwmxa9hf7s1rcwb0ipzjygd1mlicsm78rxvdd8k877";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/map-progress";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/map-progress";
sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7";
name = "map-progress";
};
@@ -17314,7 +17461,7 @@
sha256 = "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/map-regexp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/map-regexp";
sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj";
name = "map-regexp";
};
@@ -17335,7 +17482,7 @@
sha256 = "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/marcopolo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marcopolo";
sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0";
name = "marcopolo";
};
@@ -17356,7 +17503,7 @@
sha256 = "0fcyspz7n97n84d9203mxgn8ar4rn52qa49s3vayfrbkn038j5qw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mark-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mark-tools";
sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq";
name = "mark-tools";
};
@@ -17377,7 +17524,7 @@
sha256 = "098lf4n4rpx00sm07sy8dwp683a4sb7x0p15mrfp268apir3kkxb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/markdown-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-mode";
sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14";
name = "markdown-mode";
};
@@ -17398,7 +17545,7 @@
sha256 = "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/markdown-mode+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-mode+";
sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00";
name = "markdown-mode-plus";
};
@@ -17419,7 +17566,7 @@
sha256 = "1yi5hsgf8hr7v1wyn3bw650g3ysbglwn5qfrmb6yl3s08lvi1vlf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/markdown-preview-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-preview-mode";
sha256 = "0i0mld45d8y96nkqn2r77nvbyw6wgsf8r54d3c2jrv04mnaxs7pg";
name = "markdown-preview-mode";
};
@@ -17440,7 +17587,7 @@
sha256 = "0l687bna8rrc49y1fyn1ldjcwh290qgvi3p86c63yj4xy24fmdm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/markdown-toc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-toc";
sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv";
name = "markdown-toc";
};
@@ -17461,7 +17608,7 @@
sha256 = "0nk2rm14ccwrh1aaxzm80rllsz8g38h9w52m0pf3nnwh6sa757nk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/markup-faces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markup-faces";
sha256 = "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq";
name = "markup-faces";
};
@@ -17482,7 +17629,7 @@
sha256 = "0pbli67wia8pximvgd68x6i9acdgsk51g9hjpqfm49rqg5nqalh9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/marmalade";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marmalade";
sha256 = "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s";
name = "marmalade";
};
@@ -17503,7 +17650,7 @@
sha256 = "0sriyjjhgis7fgq276j5mw6n84jdwxf8lq0iqqiaqwmc66l985mv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/marshal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marshal";
sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl";
name = "marshal";
};
@@ -17524,7 +17671,7 @@
sha256 = "127q9xp015j28gjcna988dnrkadznn0xw8sdfvi943nhhqy4yvri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/math-symbol-lists";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/math-symbol-lists";
sha256 = "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27";
name = "math-symbol-lists";
};
@@ -17544,7 +17691,7 @@
sha256 = "1nmwny1y6n3w283v4kw57y6rlrlc9l8vy8nqhshl6v7vkzw5dvfp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/matrix-client";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/matrix-client";
sha256 = "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6";
name = "matrix-client";
};
@@ -17565,7 +17712,7 @@
sha256 = "0x92b1qrhyrdh0z0xriyjc12h0wpk16x4yawj5i828ca6mz0qh5g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/maven-test-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/maven-test-mode";
sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm";
name = "maven-test-mode";
};
@@ -17586,7 +17733,7 @@
sha256 = "08gbkd8wln89j9yxp0zzd539hbwy1db31gca3vxxrpszixx8280y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/maxframe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/maxframe";
sha256 = "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj";
name = "maxframe";
};
@@ -17607,7 +17754,7 @@
sha256 = "1pbs7hb7bhbsnwrs7fc4max2k471bzkjigc2w123szmwmsvz84k6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mb-url";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mb-url";
sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h";
name = "mb-url";
};
@@ -17628,7 +17775,7 @@
sha256 = "00gwd2jf5ncgyay5w2jc2mhv18jf4ydnzpfkxaxw9zjbdxg4ym2i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mbe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mbe";
sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3";
name = "mbe";
};
@@ -17649,7 +17796,7 @@
sha256 = "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mc-extras";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mc-extras";
sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym";
name = "mc-extras";
};
@@ -17670,7 +17817,7 @@
sha256 = "1vsla0a5x4kfyj3ca4r1v8cspp12dadi0frpailclaxfmpmpl5d3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mediawiki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mediawiki";
sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6";
name = "mediawiki";
};
@@ -17691,7 +17838,7 @@
sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/melpa-upstream-visit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/melpa-upstream-visit";
sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf";
name = "melpa-upstream-visit";
};
@@ -17712,7 +17859,7 @@
sha256 = "1y4ra5z3ayw3w7dszzlkk3qz3nv2jg1vvx8cf0y5j1pqpx8vy3jf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mentor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mentor";
sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s";
name = "mentor";
};
@@ -17733,7 +17880,7 @@
sha256 = "0vk1b9gjhjq47jhjhwh6h2x2cl2w7pz4018s6c444paw46gmgkln";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/merlin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/merlin";
sha256 = "177cy9xcrjckxv8gvi1zhg2ndfr8cmsr37inyvpi5dxqy6d6alhp";
name = "merlin";
};
@@ -17754,7 +17901,7 @@
sha256 = "0n4nv1s25z70xfy3bl1wy467abz3agj4qmpx4rwdwzbarnqp9ps3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/metafmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/metafmt";
sha256 = "1ca102al7r3k2g92b4jkqv53crnmxy3z7cz31w1rprf41s69mn75";
name = "metafmt";
};
@@ -17775,7 +17922,7 @@
sha256 = "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/metaweblog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/metaweblog";
sha256 = "10kwqnfafby4ap0572mfkkdssr13y9p2gl9z3nmxqjjy04fkfi8b";
name = "metaweblog";
};
@@ -17796,7 +17943,7 @@
sha256 = "1dhws4a298zrm88cdn66sikdk06n0p60d32cxsgybakkhg5c5wgr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mew";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mew";
sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk";
name = "mew";
};
@@ -17817,7 +17964,7 @@
sha256 = "1bp4xqklf422n0zwwyj0ag3a4nndg8klazrga6rlvpy01hgg3drl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mhc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mhc";
sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql";
name = "mhc";
};
@@ -17838,7 +17985,7 @@
sha256 = "1cdjpqrsv2vhpdmv67krsds7wz19z9ajkabawr3yhxqii4myl4ik";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mic-paren";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mic-paren";
sha256 = "042dzp0nal18nxq94qlwwksh0nnypsyc0yykmc6l3kayp9pv4hw7";
name = "mic-paren";
};
@@ -17859,7 +18006,7 @@
sha256 = "1ckb5hymwj4wmsxakalsky4mkzn9vxhxr6416b2cr6r5jxj4xgsl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/migemo";
sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr";
name = "migemo";
};
@@ -17880,7 +18027,7 @@
sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/milkode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/milkode";
sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh";
name = "milkode";
};
@@ -17901,7 +18048,7 @@
sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/minibuffer-complete-cycle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minibuffer-complete-cycle";
sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2";
name = "minibuffer-complete-cycle";
};
@@ -17922,7 +18069,7 @@
sha256 = "07nbn2pwlp33kr136xsm6lzddhjs538xkz0fbays89psblmy4kwj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/minibuffer-cua";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minibuffer-cua";
sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw";
name = "minibuffer-cua";
};
@@ -17943,7 +18090,7 @@
sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/miniedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/miniedit";
sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87";
name = "miniedit";
};
@@ -17964,7 +18111,7 @@
sha256 = "0kjhn48sf2ps3k5pv06gqmqc4hlk6di9ld3ssw6vwfh8313x1fc5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/minimal-session-saver";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minimal-session-saver";
sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i";
name = "minimal-session-saver";
};
@@ -17985,7 +18132,7 @@
sha256 = "0nd0jl5r5drnh98wdpqj2i7pgs7zvcizsh4qbvh8n0iw0c3f0pwh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/minitest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minitest";
sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw";
name = "minitest";
};
@@ -18005,7 +18152,7 @@
sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mmm-mako";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmm-mako";
sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn";
name = "mmm-mako";
};
@@ -18026,7 +18173,7 @@
sha256 = "097s4xnwfy8d1wzmz65g2f8bnjjjlj67w1yzwn4d3yasb171nbv8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mmm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmm-mode";
sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw";
name = "mmm-mode";
};
@@ -18047,7 +18194,7 @@
sha256 = "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmt";
sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq";
name = "mmt";
};
@@ -18068,7 +18215,7 @@
sha256 = "0yj9kc59c227727kh1zjxwrhijzd7rdhix7qqm4na1z6s4ycpxbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mocha";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mocha";
sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx";
name = "mocha";
};
@@ -18089,7 +18236,7 @@
sha256 = "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mocker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mocker";
sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3";
name = "mocker";
};
@@ -18110,7 +18257,7 @@
sha256 = "0r24186d1q9436h3qhqz1z8q978d01an0dvpvzirf4x9ickrib3k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/modalka";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/modalka";
sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c";
name = "modalka";
};
@@ -18131,7 +18278,7 @@
sha256 = "1ykj68d4h92i4qv90zgwrf9jhy1n22l2h9k5f1zsn8hvz9mhj1av";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mode-icons";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mode-icons";
sha256 = "1dqcry27rz7afyvjg7345wysp6wmh8fpj32ysk5iw5i7v5scf6kf";
name = "mode-icons";
};
@@ -18152,7 +18299,7 @@
sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mode-line-debug";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mode-line-debug";
sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd";
name = "mode-line-debug";
};
@@ -18173,7 +18320,7 @@
sha256 = "0pfzzyfknfaj8yil5f55xfa8x5jypc5i95c4lrkb0vykgccczj78";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/monokai-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/monokai-theme";
sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a";
name = "monokai-theme";
};
@@ -18194,7 +18341,7 @@
sha256 = "1a0pv8fkv1cjdb0k5bmjd67a273bzcmxjwzgy4jpb3ng1qbb2xnm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/monroe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/monroe";
sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig";
name = "monroe";
};
@@ -18207,15 +18354,15 @@
morlock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "morlock";
- version = "0.5.0";
+ version = "1.0.0";
src = fetchFromGitHub {
owner = "tarsius";
repo = "morlock";
- rev = "804131c7cff5dafa762c666fd66458111e4ee36f";
- sha256 = "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy";
+ rev = "185e3679ebeef3dc58555301e0958e864de775e5";
+ sha256 = "0kjqdm6kzhgjmfdj4n95ivffw1wqf4r3gk62fvhfi4w29g7wd16j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/morlock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/morlock";
sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna";
name = "morlock";
};
@@ -18236,7 +18383,7 @@
sha256 = "01mdy7sps0xryz5gfpl083rv7ixkxs2rkz5yaqjlam2rypdcsyy2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/move-dup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/move-dup";
sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f";
name = "move-dup";
};
@@ -18257,7 +18404,7 @@
sha256 = "1mg7arw4wbbm84frq3sws5937fh901qn0xnjk9jcp3pvc4d0sxwd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mowedline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mowedline";
sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb";
name = "mowedline";
};
@@ -18278,7 +18425,7 @@
sha256 = "13bf5jn1kgqg59j5czlzvajq2fw1rz4h5jqfc7x8w1a067nymf2c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/moz";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/moz";
sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi";
name = "moz";
};
@@ -18299,7 +18446,7 @@
sha256 = "1w1i1clkjg9mj1g4i2y3xw3hyj8s7h9gr04qgyb9c1q8vh11z8d0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/moz-controller";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/moz-controller";
sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd";
name = "moz-controller";
};
@@ -18320,7 +18467,7 @@
sha256 = "1gdi2pz8450h11aknz3hbgjlx09w6c4l8d8sz0zv3pb1z8cqkgqv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mozc-temp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mozc-temp";
sha256 = "0x1bsa1py0kn73hzbsb4ijl0bqng8nib191vgn6xq8f5cx55044d";
name = "mozc-temp";
};
@@ -18341,7 +18488,7 @@
sha256 = "1pjhch8vah0kf73fl2fk6khhrx1kflggd3zlxrf7w4fxr0qn8la3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mpv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mpv";
sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l";
name = "mpv";
};
@@ -18362,7 +18509,7 @@
sha256 = "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/msvc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/msvc";
sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3";
name = "msvc";
};
@@ -18383,7 +18530,7 @@
sha256 = "0wrg6f7czn61f9wmrk27dzcdskznm5i1pwwjck5h768j0y9dfv6a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mu4e-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mu4e-alert";
sha256 = "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm";
name = "mu4e-alert";
};
@@ -18404,7 +18551,7 @@
sha256 = "1lyd8pcawn106zwlbq6gdq05i2zhry1qh9cdyjiw61nvgbbfi0yx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mu4e-maildirs-extension";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mu4e-maildirs-extension";
sha256 = "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi";
name = "mu4e-maildirs-extension";
};
@@ -18425,7 +18572,7 @@
sha256 = "11zabs7qpdhri6n90ck7pgwcbz46d813nyl73h5m1i8jvz1wzx7v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/multi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi";
sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig";
name = "multi";
};
@@ -18446,7 +18593,7 @@
sha256 = "1d9y3dw27pgzgv6wk575d5ign55xdqgbl3ycyq1z7sji1477lz6b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/multi-web-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-web-mode";
sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5";
name = "multi-web-mode";
};
@@ -18456,22 +18603,22 @@
license = lib.licenses.free;
};
}) {};
- multiple-cursors = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ multiple-cursors = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "multiple-cursors";
- version = "1.3.0";
+ version = "1.4.0";
src = fetchFromGitHub {
owner = "magnars";
repo = "multiple-cursors.el";
- rev = "d17c89e41847cf9292004590ba5b1c8cec0b1c50";
- sha256 = "10k4c9vl0bfidrry0msyqamijizjghg54g26yaqbr2vi0mbbz22k";
+ rev = "b3bd49c756cd959c0fb998d27eaf3d273570b05e";
+ sha256 = "1ijgvzv5r44xqvz751fd5drbvrspapw6xwv47582w255j363r6ss";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/multiple-cursors";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multiple-cursors";
sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x";
name = "multiple-cursors";
};
- packageRequires = [];
+ packageRequires = [ cl-lib ];
meta = {
homepage = "https://melpa.org/#/multiple-cursors";
license = lib.licenses.free;
@@ -18488,7 +18635,7 @@
sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mustache-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mustache-mode";
sha256 = "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs";
name = "mustache-mode";
};
@@ -18509,7 +18656,7 @@
sha256 = "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mwim";
sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k";
name = "mwim";
};
@@ -18530,7 +18677,7 @@
sha256 = "0550k0rfm0zai306642v689mcpsw9pbd5vs0il82cihwvrxjifc5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/mykie";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mykie";
sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj";
name = "mykie";
};
@@ -18551,7 +18698,7 @@
sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/name-this-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/name-this-color";
sha256 = "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb";
name = "name-this-color";
};
@@ -18572,7 +18719,7 @@
sha256 = "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/names";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/names";
sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg";
name = "names";
};
@@ -18593,7 +18740,7 @@
sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/narrow-reindent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/narrow-reindent";
sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0";
name = "narrow-reindent";
};
@@ -18614,7 +18761,7 @@
sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/narrowed-page-navigation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/narrowed-page-navigation";
sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7";
name = "narrowed-page-navigation";
};
@@ -18635,7 +18782,7 @@
sha256 = "1l7asqwi5gcvb2mn8608025lwypf2vqzrkc3a9phdfjp0qn2apdn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nasm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nasm-mode";
sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17";
name = "nasm-mode";
};
@@ -18656,7 +18803,7 @@
sha256 = "119hy8rs83f17d6zizdaxn2ck3sylxbyz7adszbznjc8zrbaw0ic";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nav-flash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nav-flash";
sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3";
name = "nav-flash";
};
@@ -18677,7 +18824,7 @@
sha256 = "15jh1lsgqfnpbmrikm8kdh5bj60yb96f2as2anppjjsgl6w96glh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/navi-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/navi-mode";
sha256 = "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi";
name = "navi-mode";
};
@@ -18698,7 +18845,7 @@
sha256 = "09cb07f98aclgq8jf5419305zydkk1hz4nvzrwqz7syrlpvx8xi5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/navorski";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/navorski";
sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7";
name = "navorski";
};
@@ -18719,7 +18866,7 @@
sha256 = "16i1k1zr6ng1dlxb1b73mxjf25f4kvf3x5vfffsi3qnfm960bg3q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ncl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ncl-mode";
sha256 = "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9";
name = "ncl-mode";
};
@@ -18740,7 +18887,7 @@
sha256 = "19xxg4ya6vndk2ljdnl284zs8qf9dkq4ghr7pmsclp9n7zh46v48";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nemerle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nemerle";
sha256 = "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6";
name = "nemerle";
};
@@ -18761,7 +18908,7 @@
sha256 = "1gmi0xxwkh33w5gxc8488m1vv6ycizqhlw1kpn81zhqdzzq3s06n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/neotree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/neotree";
sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06";
name = "neotree";
};
@@ -18782,7 +18929,7 @@
sha256 = "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nginx-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nginx-mode";
sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c";
name = "nginx-mode";
};
@@ -18803,7 +18950,7 @@
sha256 = "0dzcaa88l7yjc7fhyhkvbzs7bmhi6bb6rx41wsnnidlnpzbgdrk7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/niceify-info";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/niceify-info";
sha256 = "1s9c8yxbab9zl5jx38alwa2hpp4zj5cb9a5gfm3x09jf3iw768bl";
name = "niceify-info";
};
@@ -18824,7 +18971,7 @@
sha256 = "14jh2cg1isip8b8lls3hdj99vpqjyjqlv27r2kpq6095b78p64d9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ninja-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ninja-mode";
sha256 = "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik";
name = "ninja-mode";
};
@@ -18845,7 +18992,7 @@
sha256 = "1rvi30xyj2vj3gmzagy51smrhb1xwlsfgnyg30hblj88yn0wh5sz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nix-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nix-mode";
sha256 = "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s";
name = "nix-mode";
};
@@ -18866,7 +19013,7 @@
sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nixos-options";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nixos-options";
sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm";
name = "nixos-options";
};
@@ -18887,7 +19034,7 @@
sha256 = "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/noccur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/noccur";
sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g";
name = "noccur";
};
@@ -18908,7 +19055,7 @@
sha256 = "03vcs458rcn1hgfvmgmijadjvri7zlh2z4lxgaplzfnga13mapym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nodejs-repl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nodejs-repl";
sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907";
name = "nodejs-repl";
};
@@ -18927,7 +19074,7 @@
sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nose";
sha256 = "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk";
name = "nose";
};
@@ -18946,7 +19093,7 @@
sha256 = "0n471pjj433jivmwbifzw8x6ya09v52yvgdjfkxcp2a6mn23k6xm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/notmuch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/notmuch";
sha256 = "173d1gf5rd4nbjwg91486ibg54n3qlpwgyvkcy4d30jm4vqwqrqv";
name = "notmuch";
};
@@ -18967,7 +19114,7 @@
sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/notmuch-labeler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/notmuch-labeler";
sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0";
name = "notmuch-labeler";
};
@@ -18988,7 +19135,7 @@
sha256 = "1l07nrlfd5qj8jnqacjba7mb6prapg8d8h3881l3kb66sn02ahgy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nrepl-sync";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nrepl-sync";
sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd";
name = "nrepl-sync";
};
@@ -19009,7 +19156,7 @@
sha256 = "0c4qfbb345yna5c30czq8nhcx283z1fnpp6h16p7vjqs6y37czsl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nsis-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nsis-mode";
sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l";
name = "nsis-mode";
};
@@ -19030,7 +19177,7 @@
sha256 = "1624jj922l0bbav1v8szdr0lpyx0ng959fg3sspg1j15kgkir8kf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nvm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nvm";
sha256 = "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34";
name = "nvm";
};
@@ -19051,7 +19198,7 @@
sha256 = "199ii1658k4sp5krha77n9l5jblyvnvvvr28g2nbc74lfybckjwq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nyan-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nyan-mode";
sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv";
name = "nyan-mode";
};
@@ -19072,7 +19219,7 @@
sha256 = "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/nyan-prompt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nyan-prompt";
sha256 = "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb";
name = "nyan-prompt";
};
@@ -19093,7 +19240,7 @@
sha256 = "0r12023yy8j96bp8z2ml6ffyr2c9rcd5abkh6vqnkwsdxkzx6wrs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/o-blog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/o-blog";
sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja";
name = "o-blog";
};
@@ -19114,7 +19261,7 @@
sha256 = "0bqr6yl1hpykpykjpfb247xnpnz510zrg9yv7nkxlrig4pjgdcx1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-http";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-http";
sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss";
name = "ob-http";
};
@@ -19127,15 +19274,15 @@
ob-sagemath = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, sage-shell-mode }:
melpaBuild {
pname = "ob-sagemath";
- version = "0.2.2";
+ version = "0.2.4";
src = fetchFromGitHub {
owner = "stakemori";
repo = "ob-sagemath";
- rev = "df9467eff3a1aed8173dfb7d9e6e5ce48613cb4c";
- sha256 = "1dljszlrfwqflsclyn1k4c0faviybnkm4ql2qhdlysbf176gmqpr";
+ rev = "98560075eb0a9dc5ad1e3102ac1154543692d74d";
+ sha256 = "08p64ss3ia1gq6dsna5v3ajjwm5g9ma7yvd5y0jx91xssjqq5dja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-sagemath";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-sagemath";
sha256 = "02ispac1y4g7p7iyscf5p8lvp92ncrn6281jm9igyiny1w6hivy7";
name = "ob-sagemath";
};
@@ -19156,7 +19303,7 @@
sha256 = "1xx6hyq3gk4bavcx6i9bhipbn4mn5rv2ga9lryq09qgq2l9znclk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-sml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-sml";
sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn";
name = "ob-sml";
};
@@ -19177,7 +19324,7 @@
sha256 = "10hm20dzhkxk61ass3bd5gdn1bs2l60y3zjnpkxinzn7m6aaniia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ob-translate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-translate";
sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz";
name = "ob-translate";
};
@@ -19198,7 +19345,7 @@
sha256 = "05ay599nc6jdw2fjss4izz1ynv2wc4svff932n8j9hvrhygipb2w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ocodo-svg-modelines";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ocodo-svg-modelines";
sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay";
name = "ocodo-svg-modelines";
};
@@ -19219,7 +19366,7 @@
sha256 = "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ocp-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ocp-indent";
sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw";
name = "ocp-indent";
};
@@ -19240,7 +19387,7 @@
sha256 = "19fg6r7aiirfsbp2h1a824476sn1ln4nz8kvpdzkzvyf1hzx68gw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/octicons";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/octicons";
sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk";
name = "octicons";
};
@@ -19261,7 +19408,7 @@
sha256 = "0az4llfgva4wvpljyc5s2m7ggfnj06ssp32x8bncr5fzksha3r7b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/offlineimap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/offlineimap";
sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b";
name = "offlineimap";
};
@@ -19282,7 +19429,7 @@
sha256 = "1hx1yv0fd64832y15c2chz9d50hqs4ap5vry4x6745vify6mchlj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/olivetti";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/olivetti";
sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd";
name = "olivetti";
};
@@ -19303,7 +19450,7 @@
sha256 = "07grj81alrr6qgs3jmqkjzphkvi26w6jm5hf1f5wyx7h6q293ady";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/omni-kill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-kill";
sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k";
name = "omni-kill";
};
@@ -19324,7 +19471,7 @@
sha256 = "030f983n19n64f8irif102nncvam04xpx020vfgja9886wlj40pk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/omni-log";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-log";
sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r";
name = "omni-log";
};
@@ -19345,7 +19492,7 @@
sha256 = "1rfs6z56pnacy6m7yvm2hrb0ykfvaiyichivcmb9ssdgqp92cbxx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/omni-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-scratch";
sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9";
name = "omni-scratch";
};
@@ -19366,7 +19513,7 @@
sha256 = "0c34rci5793hd674x2srhqvnj46llrbkrw1xpzf73s4ib5zhh7xi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/omni-tags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-tags";
sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl";
name = "omni-tags";
};
@@ -19387,7 +19534,7 @@
sha256 = "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/omnisharp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omnisharp";
sha256 = "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad";
name = "omnisharp";
};
@@ -19417,7 +19564,7 @@
sha256 = "119pk7gg4fw5bdvir8077ra603b5nbqvd7ph9cqrwxa056jzvry8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/opam";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/opam";
sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa";
name = "opam";
};
@@ -19438,7 +19585,7 @@
sha256 = "0n64l1jrrk60g192nn0240qcv2p9r138mi9gb38qq5k65wffbc21";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/opencl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/opencl-mode";
sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79";
name = "opencl-mode";
};
@@ -19459,7 +19606,7 @@
sha256 = "12q09kdcgv6hl1hmgarl73j4g9gi4h7sj865655mdja0ns9n1pdb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/operate-on-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/operate-on-number";
sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk";
name = "operate-on-number";
};
@@ -19480,7 +19627,7 @@
sha256 = "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-ac";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-ac";
sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr";
name = "org-ac";
};
@@ -19501,7 +19648,7 @@
sha256 = "0gkxxzdk8bd1yi5x9217pkq9d01ccq8znxc7h8qcw0p1336rigfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-agenda-property";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-agenda-property";
sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk";
name = "org-agenda-property";
};
@@ -19522,7 +19669,7 @@
sha256 = "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-autolist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-autolist";
sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj";
name = "org-autolist";
};
@@ -19543,7 +19690,7 @@
sha256 = "0j765rb2yfwnc0ri53jb8d6lxj6knpmy495bk3sd63492kdrxf93";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-bookmark-heading";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-bookmark-heading";
sha256 = "1q92rg9d945ypcpb7kig2r0cr7nb7avsylaa7nxjib25advx80n9";
name = "org-bookmark-heading";
};
@@ -19564,7 +19711,7 @@
sha256 = "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-bullets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-bullets";
sha256 = "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75";
name = "org-bullets";
};
@@ -19585,7 +19732,7 @@
sha256 = "0cxccxz17pj67wgmyxr74n381mknqgqkyav3jkxs4ghg59g5nygl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-dp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-dp";
sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq";
name = "org-dp";
};
@@ -19606,7 +19753,7 @@
sha256 = "18x8c6jcqkfam79z4hskr8h1lvzvd5rlfgymmj1ps6p6hd3j4ihl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-elisp-help";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-elisp-help";
sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h";
name = "org-elisp-help";
};
@@ -19627,7 +19774,7 @@
sha256 = "1pxfcyf447h18220izi8qlnwdr8rlwn5kds8gr5i1v90s6hpa498";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-gcal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-gcal";
sha256 = "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q";
name = "org-gcal";
};
@@ -19648,7 +19795,7 @@
sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-gnome";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-gnome";
sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v";
name = "org-gnome";
};
@@ -19669,7 +19816,7 @@
sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-if";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-if";
sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96";
name = "org-if";
};
@@ -19690,7 +19837,7 @@
sha256 = "1rv1d49gc544cmzknd272x4v74kqbvccg0mf16b1jkn5h8f4jhkm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-journal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-journal";
sha256 = "1npzqxn1ssigq7k1nrxz3xymxaazby0ddgxq6lgw2a1zjmjm4h2b";
name = "org-journal";
};
@@ -19711,7 +19858,7 @@
sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-link-travis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-link-travis";
sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs";
name = "org-link-travis";
};
@@ -19732,7 +19879,7 @@
sha256 = "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-linkany";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-linkany";
sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c";
name = "org-linkany";
};
@@ -19752,7 +19899,7 @@
sha256 = "055ahg27z4y0r4nhgqdik10x91dpmfmrv1mbr7hc7xzk9cy4rf2w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-mac-iCal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-mac-iCal";
sha256 = "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw";
name = "org-mac-iCal";
};
@@ -19773,7 +19920,7 @@
sha256 = "0yxfhzygiki8sha1dddac4g72r51yi4jnga2scmk51f9jgwqbihp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-multiple-keymap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-multiple-keymap";
sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f";
name = "org-multiple-keymap";
};
@@ -19794,7 +19941,7 @@
sha256 = "15fy6xpz6mk4j3nkrhiqal2dp77rhxmk8a7xiw037xr1jgq9sd9a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-outlook";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-outlook";
sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9";
name = "org-outlook";
};
@@ -19815,7 +19962,7 @@
sha256 = "0zc20m63a1iz9aziid5jsvcbl86k9dg9js4k3almchh55az4a0i3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-page";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-page";
sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v";
name = "org-page";
};
@@ -19836,7 +19983,7 @@
sha256 = "14lshgyrlzjcrqdfsn17llm70ijbs86cv9mccy87vlr01rbsz6lj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-pdfview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-pdfview";
sha256 = "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab";
name = "org-pdfview";
};
@@ -19857,7 +20004,7 @@
sha256 = "1fjdza723615bhdm5x6gbd03vi7ywzpbjn8p59saimczqngfdpmw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-pomodoro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-pomodoro";
sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27";
name = "org-pomodoro";
};
@@ -19878,7 +20025,7 @@
sha256 = "16aq5p65q5a0an14q9xzsnkaa5bzkrwhm9cv5ljajjfcjsjcvmb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-projectile";
sha256 = "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm";
name = "org-projectile";
};
@@ -19899,7 +20046,7 @@
sha256 = "1cxjzj955rvp0ijbp7ifpmkxdhimz8hqjw5c9gv6zwjqb5iih9ry";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-protocol-jekyll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-protocol-jekyll";
sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs";
name = "org-protocol-jekyll";
};
@@ -19920,7 +20067,7 @@
sha256 = "1bi09hd5m994rkqcx0a045h20419b6n4vvwiiggzsi0723dd9fb9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-random-todo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-random-todo";
sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr";
name = "org-random-todo";
};
@@ -19941,7 +20088,7 @@
sha256 = "0hhgfw0sqvl9jmmslwxn6v3dii99v09yz2h0ia5np9lzyxsc207a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-readme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-readme";
sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh";
name = "org-readme";
};
@@ -19962,7 +20109,7 @@
sha256 = "1iwvff3bi80xyds6xy202kfx42hv162cpcl78r88sl8j25q3jxhk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-ref";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-ref";
sha256 = "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08";
name = "org-ref";
};
@@ -19983,7 +20130,7 @@
sha256 = "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-repo-todo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-repo-todo";
sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1";
name = "org-repo-todo";
};
@@ -20004,7 +20151,7 @@
sha256 = "0zx9gpvm5gy9k45lbhaks9s935id727lszsh40gmpdp5zxf3rjk1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-sync";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-sync";
sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad";
name = "org-sync";
};
@@ -20025,7 +20172,7 @@
sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-table-comment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-table-comment";
sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz";
name = "org-table-comment";
};
@@ -20046,7 +20193,7 @@
sha256 = "1qz1qhd7v6ynmvz7j1xscz85z6zwy9dcarwhbz020l4bk4g9zf94";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-tfl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-tfl";
sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf";
name = "org-tfl";
};
@@ -20067,7 +20214,7 @@
sha256 = "12fksqi9flf84h1lbmbcjnqxa7dairp50wvlwfhbp1hbb8l9z63a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-themis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-themis";
sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln";
name = "org-themis";
};
@@ -20088,7 +20235,7 @@
sha256 = "09iw2jffb2qrx5r07zd1j8sk5wafamjkc2khqyfwc5kx6xyp1f46";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-time-budgets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-time-budgets";
sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah";
name = "org-time-budgets";
};
@@ -20109,7 +20256,7 @@
sha256 = "0qqa62fsmra6v4061kpki8wbhfcwkgnb2gzxwvnaqlcmhivksg6v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-toodledo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-toodledo";
sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3";
name = "org-toodledo";
};
@@ -20130,7 +20277,7 @@
sha256 = "1yh4p3i0ajfnsvh057h8dpf4rqvvblmfgzj6vyn9dmcl5is1ir2q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-tracktable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-tracktable";
sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00";
name = "org-tracktable";
};
@@ -20151,7 +20298,7 @@
sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-transform-tree-table";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-transform-tree-table";
sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r";
name = "org-transform-tree-table";
};
@@ -20172,7 +20319,7 @@
sha256 = "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-tree-slide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-tree-slide";
sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn";
name = "org-tree-slide";
};
@@ -20193,7 +20340,7 @@
sha256 = "061nf6gwrzi36q3m3b1hn4bj33a6q4yic3fxdxxwvwrzi42bl74a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-trello";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-trello";
sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i";
name = "org-trello";
};
@@ -20221,7 +20368,7 @@
sha256 = "1qf4pqsg12y1qx7di0y5dp0f4slyp69h2q6y21hldzknhwxx4yy4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org-vcard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-vcard";
sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl";
name = "org-vcard";
};
@@ -20242,7 +20389,7 @@
sha256 = "0av1477jn3s4s5kymd7sbb0av437vb5mnfc6rpfgzwji7b8mfr7l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org2blog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org2blog";
sha256 = "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq";
name = "org2blog";
};
@@ -20263,7 +20410,7 @@
sha256 = "089nqbda5mg1ippqnsl5wcx9n1gpnaqhl6kz54n47kivb400bidh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/org2jekyll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org2jekyll";
sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv";
name = "org2jekyll";
};
@@ -20284,7 +20431,7 @@
sha256 = "02mxp17p7bj4xamg0m6zk832hmpqcgzc7bjbjcnvbvrawhc255hy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/orgbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgbox";
sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8";
name = "orgbox";
};
@@ -20305,7 +20452,7 @@
sha256 = "1wxxdx3c5qacsii4kysk438cjr1hnmpir78kp6xgk9xw5g9snlnj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/orgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgit";
sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w";
name = "orgit";
};
@@ -20318,15 +20465,15 @@
orglink = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "orglink";
- version = "0.2.4";
+ version = "1.0.0";
src = fetchFromGitHub {
owner = "tarsius";
repo = "orglink";
- rev = "09c564022acda5973256e71a467849637473d7e6";
- sha256 = "076q8j70vqabirri6ckl1f0y60pq4bnilds6s34mxsxz1k3z3m1s";
+ rev = "3a0f6b12a69cc9e09285d317277b0dc6e1623f8a";
+ sha256 = "07ggg2mvvmv40h3gqlcxwrxsyrpvn2pffdjrzbh7yprm5mxynbjc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/orglink";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orglink";
sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b";
name = "orglink";
};
@@ -20347,7 +20494,7 @@
sha256 = "0zfiq9d5jqzpmscngb1s2jgfiqmbi4dyw0fqa59v2g84gxjg793x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/orgtbl-show-header";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgtbl-show-header";
sha256 = "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k";
name = "orgtbl-show-header";
};
@@ -20368,7 +20515,7 @@
sha256 = "0g1xhh88a65vcq6rlh7ii16pra4pv519ajcws0h93ldbbjiy7p0m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-browse";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-browse";
sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm";
name = "osx-browse";
};
@@ -20389,7 +20536,7 @@
sha256 = "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-clipboard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-clipboard";
sha256 = "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f";
name = "osx-clipboard";
};
@@ -20410,7 +20557,7 @@
sha256 = "1vywqzw8hydi944q4ghgxbbvvmwfpa9wj5nmrnixfcw8h4mfcxvv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-dictionary";
sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82";
name = "osx-dictionary";
};
@@ -20431,7 +20578,7 @@
sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-location";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-location";
sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c";
name = "osx-location";
};
@@ -20452,7 +20599,7 @@
sha256 = "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-plist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-plist";
sha256 = "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8";
name = "osx-plist";
};
@@ -20465,15 +20612,15 @@
osx-trash = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "osx-trash";
- version = "0.1.1";
+ version = "0.2";
src = fetchFromGitHub {
owner = "lunaryorn";
repo = "osx-trash.el";
- rev = "a5ecee69f514ad9ee78fd9d6b20f3dd49512f5b4";
- sha256 = "1pn6xvq41di1jb5d3i8wgs54w0m2414cq3f1vk0xpibshkq7sr4a";
+ rev = "529619b84d21e18a38ec5255eb40f6b8ede38b2a";
+ sha256 = "1n44wdffkw14si9kb7bpkp6d9cjwjrvksfh22y9549dhs1vav6qq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/osx-trash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-trash";
sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj";
name = "osx-trash";
};
@@ -20494,7 +20641,7 @@
sha256 = "1v9kx5xr7xcr6i664h2g6j8824yjsjdn5pvgmawvxrrplbjmiqnp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/outorg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/outorg";
sha256 = "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx";
name = "outorg";
};
@@ -20515,7 +20662,7 @@
sha256 = "1v04iyx57w8scw3iqrivii7q0sh8sa7xacswdhd18mw9kvjrbj98";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/outshine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/outshine";
sha256 = "1ajddzcrnvfgx3xa5wm0bcll9dax52syg1p521mv0ffkld63jyfl";
name = "outshine";
};
@@ -20536,7 +20683,7 @@
sha256 = "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ov";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ov";
sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb";
name = "ov";
};
@@ -20557,7 +20704,7 @@
sha256 = "0jz8p6bwpfncxwi6ssmi6ngx8sjjica565i6ln0gsr5i11zfb7nx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/overseer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/overseer";
sha256 = "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg";
name = "overseer";
};
@@ -20578,7 +20725,7 @@
sha256 = "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/owdriver";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/owdriver";
sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd";
name = "owdriver";
};
@@ -20599,7 +20746,7 @@
sha256 = "047fcvpvwzaqisw4q3p6hxgjyqsi2n9nms1qx9w4znvxrnjq8jz3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-ioslide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-ioslide";
sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc";
name = "ox-ioslide";
};
@@ -20620,7 +20767,7 @@
sha256 = "0h49pfl97vl796sm7r62rpv3slj0z5krm4zrqkgz0q6zlyrjay29";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-pandoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-pandoc";
sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc";
name = "ox-pandoc";
};
@@ -20641,7 +20788,7 @@
sha256 = "08dw3h1417cr6ddd8gl8zcd11pxqpmkd67bknzhjpj7bbqznfqwa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ox-twbs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-twbs";
sha256 = "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx";
name = "ox-twbs";
};
@@ -20662,7 +20809,7 @@
sha256 = "073qpa223ja673p63mhvy4l6yyv3k7z05ifwvn7bmq4b5fq42hw6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pabbrev";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pabbrev";
sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3";
name = "pabbrev";
};
@@ -20683,7 +20830,7 @@
sha256 = "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/package+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package+";
sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn";
name = "package-plus";
};
@@ -20704,7 +20851,7 @@
sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/package-safe-delete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package-safe-delete";
sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw";
name = "package-safe-delete";
};
@@ -20725,7 +20872,7 @@
sha256 = "0fs0a274c7sxldjj0m8wfx9vx7fkq41wngsvk8drzc38qa965vs0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/package-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package-utils";
sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r";
name = "package-utils";
};
@@ -20746,7 +20893,7 @@
sha256 = "1zzm43x0y90j4cr4zpwn3fs8apl7n0jhl6qlfkcbar7bb62pi66q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/packed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/packed";
sha256 = "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z";
name = "packed";
};
@@ -20767,7 +20914,7 @@
sha256 = "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/page-break-lines";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/page-break-lines";
sha256 = "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7";
name = "page-break-lines";
};
@@ -20788,7 +20935,7 @@
sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pallet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pallet";
sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7";
name = "pallet";
};
@@ -20809,7 +20956,7 @@
sha256 = "17ibs2szjvy4ar4gidlyg6w20926fr1z59m851akghiwf4aqly7z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pandoc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pandoc-mode";
sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781";
name = "pandoc-mode";
};
@@ -20830,7 +20977,7 @@
sha256 = "0gmdzagyg0p7q1gyj2a3aqp2g4asljpib3n67nikr0v99c2mki5y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pangu-spacing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pangu-spacing";
sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8";
name = "pangu-spacing";
};
@@ -20851,7 +20998,7 @@
sha256 = "1xh614czldjvfl66vhkyaai5k4qsg1l3mz6wd5b1w6kd45qrc54i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paper-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paper-theme";
sha256 = "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50";
name = "paper-theme";
};
@@ -20872,7 +21019,7 @@
sha256 = "0mg9glbrvhk7xl2grr8fs08wksqvwcgsdgwx0s8fhf8ygcvqcqix";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paradox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paradox";
sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2";
name = "paradox";
};
@@ -20891,7 +21038,7 @@
sha256 = "13wzz5fahbz5svc4ql3ajzzpd1fv0ynwpa5widklbcp5yqncv1vm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paredit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paredit";
sha256 = "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr";
name = "paredit";
};
@@ -20912,7 +21059,7 @@
sha256 = "0jbjwjl92pf0kih3p2x20ms2kpyzzam8fir661nimpmk802ahgkj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paredit-everywhere";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paredit-everywhere";
sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36";
name = "paredit-everywhere";
};
@@ -20925,15 +21072,15 @@
paren-face = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "paren-face";
- version = "0.2.1";
+ version = "1.0.0";
src = fetchFromGitHub {
owner = "tarsius";
repo = "paren-face";
- rev = "932cd9681be30096b766717869ad0d3180d3b637";
- sha256 = "1l0rq3k78k68ky58bv1mhya3mnl7n5wgr88n95na2lcil1dk8ghh";
+ rev = "7b115519d668301633f31a9f3d03b5e36d0541d7";
+ sha256 = "0f128gqn170s6hl62n44i9asais75ns1mpvb4l8vzy1sc0v16c0k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paren-face";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paren-face";
sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf";
name = "paren-face";
};
@@ -20954,7 +21101,7 @@
sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/parent-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/parent-mode";
sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig";
name = "parent-mode";
};
@@ -20975,7 +21122,7 @@
sha256 = "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/parsebib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/parsebib";
sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd";
name = "parsebib";
};
@@ -20996,7 +21143,7 @@
sha256 = "18m0973l670cjbzpa1vfv06gymhsa2f1pjcp329s0npb735x5whj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pass";
sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr";
name = "pass";
};
@@ -21017,7 +21164,7 @@
sha256 = "1g0mvg9i8f2qccb4b0m4d74zkjx9gjfv47x57by6cdaf9yywqryi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/passthword";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/passthword";
sha256 = "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn";
name = "passthword";
};
@@ -21037,7 +21184,7 @@
sha256 = "0c5yjjvvlrcny13sg5kaadbqnc2wdcc2qrxn11gc70q9awv0n7gp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/password-store";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/password-store";
sha256 = "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss";
name = "password-store";
};
@@ -21058,7 +21205,7 @@
sha256 = "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pastehub";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pastehub";
sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v";
name = "pastehub";
};
@@ -21079,7 +21226,7 @@
sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pastelmac-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pastelmac-theme";
sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f";
name = "pastelmac-theme";
};
@@ -21100,7 +21247,7 @@
sha256 = "1brdyrp2sz1pszdfr6f4w94qxk5lrd6kphc1xa5pywfns14c9386";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pathify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pathify";
sha256 = "1z970xnzbhmfikj1rkfx24jvwc7f1xxw6hk7kmahxvphjxrvgc2f";
name = "pathify";
};
@@ -21121,7 +21268,7 @@
sha256 = "0kkgqaxyrv65rfg2ng1vmmmrc9bm98yqpsv2pcb760287dn0l27m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/paxedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paxedit";
sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic";
name = "paxedit";
};
@@ -21142,7 +21289,7 @@
sha256 = "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pcache";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcache";
sha256 = "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l";
name = "pcache";
};
@@ -21163,7 +21310,7 @@
sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pcomplete-extension";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcomplete-extension";
sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc";
name = "pcomplete-extension";
};
@@ -21184,7 +21331,7 @@
sha256 = "1dpfhrxbaqpgjzac3m9hclbzlnrxq9b8bx6za53aqvml72yzxc6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pcre2el";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcre2el";
sha256 = "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3";
name = "pcre2el";
};
@@ -21205,7 +21352,7 @@
sha256 = "03k3xhrim4s3yvbnl8g8ci5g7chlffycdw7d6a1pz3077mxf1f1z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pcsv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcsv";
sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl";
name = "pcsv";
};
@@ -21226,7 +21373,7 @@
sha256 = "19sy49r3ijh36m7hl4vspw5c4i8pnfqdn4ldm2sqchxigkw56ayl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pdf-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pdf-tools";
sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw";
name = "pdf-tools";
};
@@ -21247,7 +21394,7 @@
sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/peg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/peg";
sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm";
name = "peg";
};
@@ -21267,7 +21414,7 @@
sha256 = "0w02l91x624cgzdg33a9spgcwy12m607dsfnr1xbc1fi08np4sd1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/per-buffer-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/per-buffer-theme";
sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn";
name = "per-buffer-theme";
};
@@ -21288,7 +21435,7 @@
sha256 = "0j72rqd96dz9pp9zwc88q3358m4b891dg0szmbyvs4myp3yandz2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/persistent-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persistent-scratch";
sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1";
name = "persistent-scratch";
};
@@ -21309,7 +21456,7 @@
sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/persistent-soft";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persistent-soft";
sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc";
name = "persistent-soft";
};
@@ -21330,7 +21477,7 @@
sha256 = "090b73969namf3h7pbf8xc969dygj3frzlkf0h2x29wl1fmag5kr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/persp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persp-mode";
sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w";
name = "persp-mode";
};
@@ -21351,7 +21498,7 @@
sha256 = "12c2rrhysrcl2arc6hpzv6lxbb1r3bzlvdp23hnp9sci6yc10k3q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/perspective";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/perspective";
sha256 = "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml";
name = "perspective";
};
@@ -21372,7 +21519,7 @@
sha256 = "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ph";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ph";
sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l";
name = "ph";
};
@@ -21393,7 +21540,7 @@
sha256 = "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phi-search-mc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-search-mc";
sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8";
name = "phi-search-mc";
};
@@ -21414,7 +21561,7 @@
sha256 = "0zs11811kx6x1zgc1icd8gw420saa7z6zshpzmrddnbznya4qql6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/php-auto-yasnippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-auto-yasnippets";
sha256 = "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn";
name = "php-auto-yasnippets";
};
@@ -21435,7 +21582,7 @@
sha256 = "0pwhw59ki19f9rkgvvnjzhby67s0y9hpsrg6cwqxakjlm66w96q3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/php-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-mode";
sha256 = "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y";
name = "php-mode";
};
@@ -21456,7 +21603,7 @@
sha256 = "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phpcbf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phpcbf";
sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv";
name = "phpcbf";
};
@@ -21477,7 +21624,7 @@
sha256 = "1pr5lrw1h6nibyyzb4rj7a72nsrnfczps3ll94wlsh19nqlmlqaj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/phpunit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phpunit";
sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8";
name = "phpunit";
};
@@ -21498,7 +21645,7 @@
sha256 = "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pillar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pillar";
sha256 = "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js";
name = "pillar";
};
@@ -21519,7 +21666,7 @@
sha256 = "12jhdkgfck2a6d5jj65l9d98dm34gsyi0ya4h21dbbvz35zivz70";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pinyin-search";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pinyin-search";
sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z";
name = "pinyin-search";
};
@@ -21540,7 +21687,7 @@
sha256 = "13q95z0j1mpk2yrrq0amc2jjhajaz4884bfliy2h8adh109j4q1d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pinyinlib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pinyinlib";
sha256 = "0kv67qa3825fw64qimkph2b65pilrsx5730y4c7f7c1f8giz5vxr";
name = "pinyinlib";
};
@@ -21561,7 +21708,7 @@
sha256 = "1dsg49156mfhkd8ip4ny03sc06zchxr1qpbcx48f5sn4m9j5d3vs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pip-requirements";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pip-requirements";
sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz";
name = "pip-requirements";
};
@@ -21582,7 +21729,7 @@
sha256 = "1wg8pcwd70ixn2bxh01934zl12ry4pgx3l9dccpbjdi40gira00d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pixiv-novel-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pixiv-novel-mode";
sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px";
name = "pixiv-novel-mode";
};
@@ -21603,7 +21750,7 @@
sha256 = "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pkg-info";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pkg-info";
sha256 = "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx";
name = "pkg-info";
};
@@ -21624,7 +21771,7 @@
sha256 = "0a8qb1ldk6bjs7fpxgxrf90md7q46fhl71gmay8yafdkh6hn0kqr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pkgbuild-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pkgbuild-mode";
sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x";
name = "pkgbuild-mode";
};
@@ -21645,7 +21792,7 @@
sha256 = "1nznbkl06cdq4pyqmvkp9jynsjibn0fd6ai4mggz6ggcwzcixbf0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/platformio-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/platformio-mode";
sha256 = "1v1pp3365wj19a5wmsxyyy5n548z3lmcbm2pwl914wip3ca7546f";
name = "platformio-mode";
};
@@ -21666,7 +21813,7 @@
sha256 = "0slfaclbhjm5paw8l7rr3y9xxjyhkizp9lwyvlgpkd38n4pgj2bx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/play-routes-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/play-routes-mode";
sha256 = "17phqil2zf5rfvhs5v743dh4lix4v2azbf33z9n97ahs7j66y2gz";
name = "play-routes-mode";
};
@@ -21687,7 +21834,7 @@
sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/plenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plenv";
sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4";
name = "plenv";
};
@@ -21708,7 +21855,7 @@
sha256 = "0f00dv5jwbhs99j4jc6lvr5n0mv1y80yg7zpp6yrmhww6829l5rg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/plsense";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plsense";
sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va";
name = "plsense";
};
@@ -21729,7 +21876,7 @@
sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/plsense-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plsense-direx";
sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j";
name = "plsense-direx";
};
@@ -21750,7 +21897,7 @@
sha256 = "0qlxj19hj96l4lw81xh5r14ppf6kp63clikk060s9yw00q7gnl6a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/plur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plur";
sha256 = "0nf1dc7xf2zp316rssnz8sv374akcr54hp0rb219qvgyck9bdqiv";
name = "plur";
};
@@ -21771,7 +21918,7 @@
sha256 = "0xjvxfkrl6wl31s7rvbv9zczn6d6i9vf20waqlr3c2ff3zy55ygy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pony-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pony-snippets";
sha256 = "12ygvpfkzldq6s4mwbrxs4x9927i7pa7ywn7lf1r3gg4h29ar9gn";
name = "pony-snippets";
};
@@ -21792,7 +21939,7 @@
sha256 = "0by7klp7imy7zgc37wsiil86y6i2h1wfwfyifc2cf0jn5dsvfikw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ponylang-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ponylang-mode";
sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1";
name = "ponylang-mode";
};
@@ -21813,7 +21960,7 @@
sha256 = "18i0kivn6prh5pwdr7b4pxfxqsc8l4mks1h6cfs7iwnfn15g5k19";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pophint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pophint";
sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72";
name = "pophint";
};
@@ -21834,7 +21981,7 @@
sha256 = "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup";
sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2";
name = "popup";
};
@@ -21855,7 +22002,7 @@
sha256 = "084hb3zn1aiabbyxgaalszb2qjf9z64z960ks5fvz8nh7n6y7ny4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/popup-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup-complete";
sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1";
name = "popup-complete";
};
@@ -21876,7 +22023,7 @@
sha256 = "19mqzfpki2zlnibp2vzymhdld1m20jinxwgdhmbl6zdfx74zbz7b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/popup-imenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup-imenu";
sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn";
name = "popup-imenu";
};
@@ -21897,7 +22044,7 @@
sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/popwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popwin";
sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf";
name = "popwin";
};
@@ -21918,7 +22065,7 @@
sha256 = "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pos-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pos-tip";
sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh";
name = "pos-tip";
};
@@ -21939,7 +22086,7 @@
sha256 = "1nx3b24i26kgm52xw21x4m15qjkxw3sg5r6qyvck0fyhj0gw69gr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/powerline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/powerline";
sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx";
name = "powerline";
};
@@ -21960,7 +22107,7 @@
sha256 = "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/powershell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/powershell";
sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk";
name = "powershell";
};
@@ -21981,7 +22128,7 @@
sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ppd-sr-speedbar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ppd-sr-speedbar";
sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8";
name = "ppd-sr-speedbar";
};
@@ -22002,7 +22149,7 @@
sha256 = "013fig9i4fyx16krp2vfv953p3rwdzr38zs6i50af4pqz4vrcfvh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pretty-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pretty-mode";
sha256 = "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f";
name = "pretty-mode";
};
@@ -22023,7 +22170,7 @@
sha256 = "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/processing-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/processing-mode";
sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m";
name = "processing-mode";
};
@@ -22044,7 +22191,7 @@
sha256 = "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/processing-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/processing-snippets";
sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r";
name = "processing-snippets";
};
@@ -22065,7 +22212,7 @@
sha256 = "0r32rjfsbna0g2376gdv0c0im1lzw1cwbp9690rgqjj95ls4saa3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/prodigy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prodigy";
sha256 = "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85";
name = "prodigy";
};
@@ -22086,7 +22233,7 @@
sha256 = "1hv8ifrpwn434sm41vkgbwni21ma5kfybkwasi6zp0f2b5i9ziw7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/project-explorer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-explorer";
sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m";
name = "project-explorer";
};
@@ -22107,7 +22254,7 @@
sha256 = "1x7hwda1w59b8hvzxyk996wdz6phs6rchh3f1ydf0ab6x7m7xvjr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/project-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-persist";
sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24";
name = "project-persist";
};
@@ -22128,7 +22275,7 @@
sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/project-persist-drawer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-persist-drawer";
sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb";
name = "project-persist-drawer";
};
@@ -22148,7 +22295,7 @@
sha256 = "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/project-root";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-root";
sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb";
name = "project-root";
};
@@ -22169,7 +22316,7 @@
sha256 = "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile";
sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn";
name = "projectile";
};
@@ -22182,15 +22329,15 @@
projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }:
melpaBuild {
pname = "projectile-rails";
- version = "0.9.1";
+ version = "0.9.2";
src = fetchFromGitHub {
owner = "asok";
repo = "projectile-rails";
- rev = "f994baf135a7afd86f750c4467f4ed228b15c35d";
- sha256 = "06k50sbmh8pgvx7wqgp78zg0wx5bagpf7lj9dapqnx1rnsa59h5c";
+ rev = "1d5bbb1bac250a37b2c0b6393a82c9ba3719cf90";
+ sha256 = "0g4slcaj5waka5sz0plnn0clnl9750wzj3bi7zfcycb2g7xhncwg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projectile-rails";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-rails";
sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq";
name = "projectile-rails";
};
@@ -22211,7 +22358,7 @@
sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projectile-sift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-sift";
sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i";
name = "projectile-sift";
};
@@ -22232,7 +22379,7 @@
sha256 = "1rw55w2fpb3rw7j136kclkhppz21f7d7di4cvlv7zj5zpdl5zz88";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/projekt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projekt";
sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8";
name = "projekt";
};
@@ -22253,7 +22400,7 @@
sha256 = "1hq8426i8rpb3qzkd5akv3i08pa4jsp9lwsskn38bfgp71pwild2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/prompt-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prompt-text";
sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc";
name = "prompt-text";
};
@@ -22274,7 +22421,7 @@
sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/prop-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prop-menu";
sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i";
name = "prop-menu";
};
@@ -22295,7 +22442,7 @@
sha256 = "03df8zvx2sry3jz2x4pi3l32qyfqa7w8kj8jdbz30nzy0h7aa070";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/protobuf-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/protobuf-mode";
sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj";
name = "protobuf-mode";
};
@@ -22316,7 +22463,7 @@
sha256 = "0wgxrwl7dpy084sc76wiwpixycb171g7xwc66m5gnlrv79qyac73";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/psci";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psci";
sha256 = "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g";
name = "psci";
};
@@ -22337,7 +22484,7 @@
sha256 = "0msa8c29djhy5h3zpdvx25f4y1c50rgsk8iz6r127psrxdlfrvg8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/psession";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psession";
sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a";
name = "psession";
};
@@ -22358,7 +22505,7 @@
sha256 = "0mnxvh5yd8v8a5mfi53isknc88kv2kdjjv0qffblz0sgshkpl30x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/psysh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psysh";
sha256 = "0ygnfmfx1ifppg6j3vfz10srbcpr5ird2bhw6pvydijxkyd75vy5";
name = "psysh";
};
@@ -22379,7 +22526,7 @@
sha256 = "1p0k770h96iw8bxm8ssi0a91m050s615q036870lrlsz35mzc5kw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pt";
sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj";
name = "pt";
};
@@ -22400,7 +22547,7 @@
sha256 = "19bcf3wbmp186yxvrdsm2ax4npvi2x0id94zi13pdnw4cz7zch3v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/puml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/puml-mode";
sha256 = "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn";
name = "puml-mode";
};
@@ -22421,7 +22568,7 @@
sha256 = "1v48i37iqrrwbyy3bscicfq66vbbml4sg0f0n950bnk0qagjx8py";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/punctuality-logger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/punctuality-logger";
sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm";
name = "punctuality-logger";
};
@@ -22442,7 +22589,7 @@
sha256 = "012lv7hrwlhvins81vw3yjkhdwbpi6g1dx55i101qyrpzv5ifngm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pungi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pungi";
sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1";
name = "pungi";
};
@@ -22463,7 +22610,7 @@
sha256 = "0xr3s56p6fbm6wgw17galsl3kqvv8c7l1l1qvbhbay39yzs4ff14";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/puppet-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/puppet-mode";
sha256 = "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc";
name = "puppet-mode";
};
@@ -22484,7 +22631,7 @@
sha256 = "1wk319akv0scvyyjsd48pisi2i1gkahhsan9hfszrs6xx3anvfd9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/purescript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/purescript-mode";
sha256 = "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m";
name = "purescript-mode";
};
@@ -22505,7 +22652,7 @@
sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pushbullet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pushbullet";
sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl";
name = "pushbullet";
};
@@ -22526,7 +22673,7 @@
sha256 = "06xdq2slwhkcqlbv7x86zmv55drzif9cwjlj543cwhncphl2x9rd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/py-autopep8";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-autopep8";
sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp";
name = "py-autopep8";
};
@@ -22547,7 +22694,7 @@
sha256 = "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/py-isort";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-isort";
sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb";
name = "py-isort";
};
@@ -22568,7 +22715,7 @@
sha256 = "09z739w4fjg9xnv3mbh7v8j59mnbsfq4ygq616pj4xcw3nsh0rbg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/py-yapf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-yapf";
sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f";
name = "py-yapf";
};
@@ -22589,7 +22736,7 @@
sha256 = "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pycarddavel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pycarddavel";
sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a";
name = "pycarddavel";
};
@@ -22610,7 +22757,7 @@
sha256 = "1y3q1k195wp2kgp00a1y34i20zm80wdv2kxigh6gbn2r6qzkqrar";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pyenv-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyenv-mode";
sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59";
name = "pyenv-mode";
};
@@ -22631,7 +22778,7 @@
sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/python-environment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-environment";
sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7";
name = "python-environment";
};
@@ -22652,7 +22799,7 @@
sha256 = "00i7cc4r7275l22k3708xi4hqw2j44yivdb1madzrpf314v3kabr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/python-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-x";
sha256 = "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn";
name = "python-x";
};
@@ -22673,7 +22820,7 @@
sha256 = "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pythonic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pythonic";
sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51";
name = "pythonic";
};
@@ -22694,7 +22841,7 @@
sha256 = "0jidmc608amd0chs4598zkj0nvyll0al093121hkczsbpgbllq9z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/pyvenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyvenv";
sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v";
name = "pyvenv";
};
@@ -22715,7 +22862,7 @@
sha256 = "110z27n3h7p2yalicfhnv832ikfcf7p0hrf5qkryz1sdmz79wb3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/qiita";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/qiita";
sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl";
name = "qiita";
};
@@ -22736,7 +22883,7 @@
sha256 = "1mlka59gyylj4cabi1b552h11qx54kjqwx3bkmsdngjrd4da222a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/qml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/qml-mode";
sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n";
name = "qml-mode";
};
@@ -22757,7 +22904,7 @@
sha256 = "0lfmdlb626b3gbmlvacwn84vpqam6gk9lp29wk0hcraw69vaw1v8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/quasi-monochrome-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quasi-monochrome-theme";
sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0";
name = "quasi-monochrome-theme";
};
@@ -22778,7 +22925,7 @@
sha256 = "1iypwvdgdh30c9br7jnibgwbdca2mqjy95x2ppsc51sik2mz2db1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/quickrun";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quickrun";
sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy";
name = "quickrun";
};
@@ -22799,7 +22946,7 @@
sha256 = "02bddznlqys37fnhdpp2g9xa9m7kfgrj1vl0hc5kr42hggk9wwmg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/r-autoyas";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/r-autoyas";
sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4";
name = "r-autoyas";
};
@@ -22820,7 +22967,7 @@
sha256 = "1r1gq6b33iv5a3kf96s73xp5y7yw2lq36cczmwbb9ix5bh5jhcyk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/racer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/racer";
sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi";
name = "racer";
};
@@ -22841,7 +22988,7 @@
sha256 = "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rainbow-blocks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rainbow-blocks";
sha256 = "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8";
name = "rainbow-blocks";
};
@@ -22862,7 +23009,7 @@
sha256 = "0vs9pf8lqq5p5qz1770pxgw47ym4xj8axxmwamn66br59mykdhv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rainbow-delimiters";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rainbow-delimiters";
sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg";
name = "rainbow-delimiters";
};
@@ -22883,7 +23030,7 @@
sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rainbow-identifiers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rainbow-identifiers";
sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp";
name = "rainbow-identifiers";
};
@@ -22904,7 +23051,7 @@
sha256 = "1q65jj6bghvzhlqmpg61a7vn8izc01wp2fjiqx013zxpg9awvzmq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rake";
sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns";
name = "rake";
};
@@ -22925,7 +23072,7 @@
sha256 = "1r2k9s46njys2acacwk57mkr9szbpxz93xd4rnjf5gx551khlhjb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ranger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ranger";
sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4";
name = "ranger";
};
@@ -22946,7 +23093,7 @@
sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rase";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rase";
sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0";
name = "rase";
};
@@ -22967,7 +23114,7 @@
sha256 = "0rwgwz1x9w447y8mxy9hrx1rzi3ac9dwk2y5yg1p08z5b7dy6vcz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rats";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rats";
sha256 = "0jhwiq9yzwpyqhk3c32vqx8nryingzh58psxbzjl3812b7xdqphr";
name = "rats";
};
@@ -22988,7 +23135,7 @@
sha256 = "09c6v4lnv6vm2cckbdpx2fdi9xkz9l68qvhx35vaawxhrkgvypzp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rbenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rbenv";
sha256 = "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65";
name = "rbenv";
};
@@ -23009,7 +23156,7 @@
sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rcirc-styles";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-styles";
sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r";
name = "rcirc-styles";
};
@@ -23022,15 +23169,15 @@
rdf-prefix = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rdf-prefix";
- version = "1.4";
+ version = "1.5";
src = fetchFromGitHub {
owner = "simenheg";
repo = "rdf-prefix";
- rev = "5e4b0ab384a55974ffa3e5efdd1e437cce8e1562";
- sha256 = "0h54mpi8jd21vjifc0yy0hvpygiam1rlmypijpi4kv42x5mxkn3a";
+ rev = "ec8fa683f6b89664c62ea799edadaeb5bc0a932f";
+ sha256 = "1hn5x6kw7xh5wnpwr862584h4vrmvd36vjbshcgwng1qj486m3as";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rdf-prefix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rdf-prefix";
sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm";
name = "rdf-prefix";
};
@@ -23051,7 +23198,7 @@
sha256 = "1ka5q2q18hgh7wl5yn04489121bq4nx369rz8nb7dr5l14cas0xm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/real-auto-save";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/real-auto-save";
sha256 = "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8";
name = "real-auto-save";
};
@@ -23072,7 +23219,7 @@
sha256 = "07j1grdbqv3iv5ghmgsjw678bxjajcxi27clz4krcz3ys5b1h70v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/realgud";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/realgud";
sha256 = "0qmvd35ng1aqclwj3pskn58c0fi98kvx9666wp3smgj3n88vgy15";
name = "realgud";
};
@@ -23093,7 +23240,7 @@
sha256 = "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/recover-buffers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/recover-buffers";
sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b";
name = "recover-buffers";
};
@@ -23114,7 +23261,7 @@
sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rect+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rect+";
sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m";
name = "rect-plus";
};
@@ -23135,7 +23282,7 @@
sha256 = "048pjrd04w6w4v6r56yblbqgkjh01xib7k1i6rjc6288jh5vr1vm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rectangle-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rectangle-utils";
sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7";
name = "rectangle-utils";
};
@@ -23156,7 +23303,7 @@
sha256 = "1j9zvkfxccwzr8adxikw450xv0kc2a4j8rskbfqlmsylrpniszqm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/redpen-paragraph";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redpen-paragraph";
sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca";
name = "redpen-paragraph";
};
@@ -23177,7 +23324,7 @@
sha256 = "0q4a4iznk6xk680xnvly69j8w1dac79qxlycwrfki6msnkagyn9p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/redtick";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redtick";
sha256 = "1a9rviz0hg6vlh2jc04g6vslyf9n89xglcz9cb79vf10hhr6igrb";
name = "redtick";
};
@@ -23198,7 +23345,7 @@
sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/relative-line-numbers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/relative-line-numbers";
sha256 = "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3";
name = "relative-line-numbers";
};
@@ -23219,7 +23366,7 @@
sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/relax";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/relax";
sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk";
name = "relax";
};
@@ -23240,7 +23387,7 @@
sha256 = "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/repeatable-motion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/repeatable-motion";
sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw";
name = "repeatable-motion";
};
@@ -23261,7 +23408,7 @@
sha256 = "12wylmyz54n1f3kaw9clhvs66dg43xvcvll4pl5ii0ibfv6pls1b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/repl-toggle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/repl-toggle";
sha256 = "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb";
name = "repl-toggle";
};
@@ -23274,15 +23421,15 @@
replace-symbol = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "replace-symbol";
- version = "1.0";
+ version = "1.1";
src = fetchFromGitHub {
owner = "bmastenbrook";
repo = "replace-symbol-el";
- rev = "153197a4631a1ed0c3485d210efb41b4b727326c";
- sha256 = "1pxvwiqhv2nmsxkdwn9jx7na1vgk9dg9yxidglxpmvpid6fy4qdk";
+ rev = "baf949e528aee1881f455f9c84e67718bedcb3f6";
+ sha256 = "178y1cmpdb2r72igx8j4l7pyhs1idw56j6hg5h8r9a2p99lkgjjc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/replace-symbol";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/replace-symbol";
sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng";
name = "replace-symbol";
};
@@ -23303,7 +23450,7 @@
sha256 = "0hs80g3npgb6qfcaivdfkpsc9mss1kdmyp5j7s922qcy2k4yxmgl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/repo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/repo";
sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb";
name = "repo";
};
@@ -23324,7 +23471,7 @@
sha256 = "1xzp2hnkr9lsjx50cxlpki9mvyhjsv0vyc77480jrlnpspakj7qs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/req-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/req-package";
sha256 = "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf";
name = "req-package";
};
@@ -23345,7 +23492,7 @@
sha256 = "0rpw9is8sx2gmbc7l6mv5qdd0jrh497lyj5f0zx0lqwjl8imw401";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/request";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/request";
sha256 = "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji";
name = "request";
};
@@ -23366,7 +23513,7 @@
sha256 = "0rpw9is8sx2gmbc7l6mv5qdd0jrh497lyj5f0zx0lqwjl8imw401";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/request-deferred";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/request-deferred";
sha256 = "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n";
name = "request-deferred";
};
@@ -23387,7 +23534,7 @@
sha256 = "1b832r7779rmr6rhzj7klc0l5xzwc4rids87g2hczpb5dhqnchca";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/requirejs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/requirejs";
sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k";
name = "requirejs";
};
@@ -23408,7 +23555,7 @@
sha256 = "1ps9l6q6hgzzaywkig0gjjdlsir9avxghynzx9a3q6h0fpdkpgrj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/resize-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/resize-window";
sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l";
name = "resize-window";
};
@@ -23429,7 +23576,7 @@
sha256 = "0y4ga1lj2x2f0r535ivs09m2l0q76iz72w42wknhsw9lmdsyl5nz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/restart-emacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/restart-emacs";
sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6";
name = "restart-emacs";
};
@@ -23439,6 +23586,27 @@
license = lib.licenses.free;
};
}) {};
+ restclient-test = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, restclient }:
+ melpaBuild {
+ pname = "restclient-test";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "simenheg";
+ repo = "restclient-test.el";
+ rev = "9bc10bb9ae6e9341dec39f5cd8b78da0bd8db2c2";
+ sha256 = "1z4ackggrw428f9f7bd02by4fw34bwndv2i4v7cj80c533mfwy9f";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/restclient-test";
+ sha256 = "0g26z5p9fq7fm6bgrwaszya5xmhsgzcn1p7zqr83w74fbw6bcl39";
+ name = "restclient-test";
+ };
+ packageRequires = [ emacs restclient ];
+ meta = {
+ homepage = "https://melpa.org/#/restclient-test";
+ license = lib.licenses.free;
+ };
+ }) {};
reveal-in-osx-finder = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "reveal-in-osx-finder";
@@ -23450,7 +23618,7 @@
sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/reveal-in-osx-finder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/reveal-in-osx-finder";
sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc";
name = "reveal-in-osx-finder";
};
@@ -23471,7 +23639,7 @@
sha256 = "15xnz4fi22wsximimwmirlz11v4ksfj8nilyjfw6acd92yrhzg6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/reverse-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/reverse-theme";
sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776";
name = "reverse-theme";
};
@@ -23492,7 +23660,7 @@
sha256 = "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rich-minority";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rich-minority";
sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc";
name = "rich-minority";
};
@@ -23513,7 +23681,7 @@
sha256 = "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rigid-tabs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rigid-tabs";
sha256 = "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp";
name = "rigid-tabs";
};
@@ -23534,7 +23702,7 @@
sha256 = "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rinari";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rinari";
sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0";
name = "rinari";
};
@@ -23555,7 +23723,7 @@
sha256 = "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rnc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rnc-mode";
sha256 = "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q";
name = "rnc-mode";
};
@@ -23576,7 +23744,7 @@
sha256 = "01xd3nc7bmf4r4d37x08rw2dlsg6gns8mraahi4rwkg6a9lwl44n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/robe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/robe";
sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk";
name = "robe";
};
@@ -23597,7 +23765,7 @@
sha256 = "0dimmdz4aqcif4lp23nqxfg7kngzym2yivn6h3p7bn1821vgzq9s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/robots-txt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/robots-txt-mode";
sha256 = "1q3fqaf9nysy9bhx4h9idgshxr65hfwnx05vlwazx7jd6bq6kxfh";
name = "robots-txt-mode";
};
@@ -23618,7 +23786,7 @@
sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/roguel-ike";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/roguel-ike";
sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8";
name = "roguel-ike";
};
@@ -23639,7 +23807,7 @@
sha256 = "133ficdghshlmwq5dn42cg3h51jdg4lcwqr4cd2s2s52rz8plw9h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rope-read-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rope-read-mode";
sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw";
name = "rope-read-mode";
};
@@ -23660,7 +23828,7 @@
sha256 = "0mfkq8n28lal4lqwp6v0ilz8wrwgg61sbm0jggznwisjqqy3lzrh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rsense";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rsense";
sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5";
name = "rsense";
};
@@ -23681,7 +23849,7 @@
sha256 = "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rspec-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rspec-mode";
sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx";
name = "rspec-mode";
};
@@ -23702,7 +23870,7 @@
sha256 = "0pir76xhi58nqfmjcijn5s7dz3pjjz43g97hh7sd1m32s8saddm1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rtags";
sha256 = "08clwydx2b9cl4wv61b0p564jpvq7gzkrlcdkchpi4yz6djbp0lw";
name = "rtags";
};
@@ -23723,7 +23891,7 @@
sha256 = "10djjp1520xc05qkciaiaiiciscaln6c74h7ymba40mvzlf67y9q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rubocop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rubocop";
sha256 = "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q";
name = "rubocop";
};
@@ -23744,7 +23912,7 @@
sha256 = "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-compilation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-compilation";
sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc";
name = "ruby-compilation";
};
@@ -23765,7 +23933,7 @@
sha256 = "1cpz9vkp57nk682c5xm20g7bfj5g2aq5ahpk4nhgx7pvd3xvr1ds";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-end";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-end";
sha256 = "1cnmdlkhm8xsifbjs6ymvi92gdnxiaghb04h10qg41phj6v7m9mg";
name = "ruby-end";
};
@@ -23786,7 +23954,7 @@
sha256 = "01n9j7sag49m4bdl6065jklnxnc5kck51izg884s1is459qgy86k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-hash-syntax";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-hash-syntax";
sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5";
name = "ruby-hash-syntax";
};
@@ -23807,7 +23975,7 @@
sha256 = "008zj9rg2cmh0xd7g6kgx6snm5sspxs4jmfa8hd43wx5y9pmlb8f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-test-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-test-mode";
sha256 = "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w";
name = "ruby-test-mode";
};
@@ -23828,7 +23996,7 @@
sha256 = "1zvhq9l717rjgkm7bxz5gqkmh5i49cshwzlimb3h78kpjw3hxl2k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ruby-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-tools";
sha256 = "0zpk55rkrqyangyyljxzf0n1icgqnpdzycwack5rji556h5grvjy";
name = "ruby-tools";
};
@@ -23849,7 +24017,7 @@
sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/rvm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rvm";
sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8";
name = "rvm";
};
@@ -23870,7 +24038,7 @@
sha256 = "08vf62fcrnbmf2ppb759kzznjdz8x72fqdwbc4n8nbswrwgm2ikl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/s";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/s";
sha256 = "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64";
name = "s";
};
@@ -23891,7 +24059,7 @@
sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sackspace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sackspace";
sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z";
name = "sackspace";
};
@@ -23912,7 +24080,7 @@
sha256 = "1cndf4igichma1ghs4x9bvbd89d64ghzs20kqjzmyr3r5sp5918k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sage-shell-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sage-shell-mode";
sha256 = "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx";
name = "sage-shell-mode";
};
@@ -23933,7 +24101,7 @@
sha256 = "0lxrq3mzabkwj5bv0mgd7fnx3dsx8vxd5kjgb79rjfra0m7pfgln";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sass-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sass-mode";
sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800";
name = "sass-mode";
};
@@ -23954,7 +24122,7 @@
sha256 = "1mcag7qad1npjn096byakb8pmmi2g64nlf2vcc12irzmwia85fml";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sauron";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sauron";
sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb";
name = "sauron";
};
@@ -23975,7 +24143,7 @@
sha256 = "1gkzgcnh5ib4j5206mx8gbwj5ykay19vqlfg9070m2r09d1a55qf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/say-what-im-doing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/say-what-im-doing";
sha256 = "1hgh842f7gs2sxy7s6zq57nsqy4jjlnjcga6hwzcx0kw3albgz7x";
name = "say-what-im-doing";
};
@@ -23996,7 +24164,7 @@
sha256 = "1lvf7y1n63p8jvnp6ppwmxq2s6h9sk45319576f3s28ixsfa6cp2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sbt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sbt-mode";
sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8";
name = "sbt-mode";
};
@@ -24009,15 +24177,15 @@
scala-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scala-mode";
- version = "0.22";
+ version = "0.23";
src = fetchFromGitHub {
owner = "ensime";
repo = "emacs-scala-mode";
- rev = "37e7537e9c9a1a1bdfd4cd1058491559a6ed0c69";
- sha256 = "0x6k0lg529j02hyw390mahpvm580j3y7hyp8yw9h2qnrkiinrpka";
+ rev = "c90bbde5ff29c23b1545c7b29edba453fc33f393";
+ sha256 = "1ayqdmnp38wvhi3a8r8wivn4z8v6irbz0kwqvgsnpq6m2s3jsbz9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scala-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scala-mode";
sha256 = "12x377iw085fbkjb034dmcsbi7hma17zkkmbgrhkvfkz8pbgaic8";
name = "scala-mode";
};
@@ -24027,48 +24195,6 @@
license = lib.licenses.free;
};
}) {};
- scala-mode2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "scala-mode2";
- version = "0.22";
- src = fetchFromGitHub {
- owner = "ensime";
- repo = "emacs-scala-mode";
- rev = "ee375b9357a71d77763e219dac15850ed60530b3";
- sha256 = "1ss6gndxgxciyacbl9nw2gb0pwmgv78nxdjl89wrdig27d1jddv8";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scala-mode2";
- sha256 = "169h6x51s4xzxamyhsqnd3h960gjfgdigc2pp1220dlpcp9hlzg1";
- name = "scala-mode2";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/scala-mode2";
- license = lib.licenses.free;
- };
- }) {};
- scala-outline-popup = callPackage ({ dash, fetchFromGitHub, fetchurl, flx-ido, lib, melpaBuild, popup, scala-mode2 }:
- melpaBuild {
- pname = "scala-outline-popup";
- version = "0.4";
- src = fetchFromGitHub {
- owner = "ancane";
- repo = "scala-outline-popup";
- rev = "c79a06fb99cbf6f29d94da77a8a22cfafb15a1b6";
- sha256 = "0hhsgyil8aqdkkip5325yrdq89gnijglcbf1dsvl4wvnmq7a1rik";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scala-outline-popup";
- sha256 = "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7";
- name = "scala-outline-popup";
- };
- packageRequires = [ dash flx-ido popup scala-mode2 ];
- meta = {
- homepage = "https://melpa.org/#/scala-outline-popup";
- license = lib.licenses.free;
- };
- }) {};
scpaste = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild }:
melpaBuild {
pname = "scpaste";
@@ -24080,7 +24206,7 @@
sha256 = "13s8hp16wxd9fb8gf05dn0xr692kkgiqg7v49fgr00gas4xgpfpm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scpaste";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scpaste";
sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1";
name = "scpaste";
};
@@ -24101,7 +24227,7 @@
sha256 = "0zpjf9cp8g4rgnwgmhlpwnanf9lzqm3rm1mkihf0gk5qzxvwsdh9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/scss-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scss-mode";
sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv";
name = "scss-mode";
};
@@ -24122,7 +24248,7 @@
sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/search-web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/search-web";
sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36";
name = "search-web";
};
@@ -24143,7 +24269,7 @@
sha256 = "0nsm7z056rh32sq7abgdwyaz4dbz8v9pgbha5jvpk7y0zmnabrgs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sekka";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sekka";
sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp";
name = "sekka";
};
@@ -24164,7 +24290,7 @@
sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/select-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/select-themes";
sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84";
name = "select-themes";
};
@@ -24185,7 +24311,7 @@
sha256 = "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/selectric-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/selectric-mode";
sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4";
name = "selectric-mode";
};
@@ -24206,7 +24332,7 @@
sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/servant";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/servant";
sha256 = "0h8xsg37cvc5r8vkclf7d3gbf6gh4k5pmbiyhwpkbrxwjyl1sl21";
name = "servant";
};
@@ -24227,7 +24353,7 @@
sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/serverspec";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/serverspec";
sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id";
name = "serverspec";
};
@@ -24248,7 +24374,7 @@
sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/session";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/session";
sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx";
name = "session";
};
@@ -24269,7 +24395,7 @@
sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sexp-move";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sexp-move";
sha256 = "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd";
name = "sexp-move";
};
@@ -24290,7 +24416,7 @@
sha256 = "0yy162sz7vwj0i9w687a5x1c2fq31vc3i6gqhbywspviczdp4q1y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shackle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shackle";
sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6";
name = "shackle";
};
@@ -24311,7 +24437,7 @@
sha256 = "0vkxl3w4y4yacs1s4v0gwggvzrss8g74d3dgk8h3gphl4dlgx496";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shakespeare-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shakespeare-mode";
sha256 = "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd";
name = "shakespeare-mode";
};
@@ -24332,7 +24458,7 @@
sha256 = "11g9lsgakq8nf689k49p9l536ffi62g3bh11mh9ix1l058xamqw2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shampoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shampoo";
sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61";
name = "shampoo";
};
@@ -24353,7 +24479,7 @@
sha256 = "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shell-pop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-pop";
sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8";
name = "shell-pop";
};
@@ -24374,7 +24500,7 @@
sha256 = "0mcxp74sk9bn36gbhhimgns07iqa4dgbq2pvpqy41igqwb84w306";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shell-split-string";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-split-string";
sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m";
name = "shell-split-string";
};
@@ -24395,7 +24521,7 @@
sha256 = "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shell-switcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-switcher";
sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx";
name = "shell-switcher";
};
@@ -24416,7 +24542,7 @@
sha256 = "0wvaa5nrbblayjvzjyj6cd942ywg7xz5d8fqaffxcvwlcdihvm7q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shell-toggle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-toggle";
sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446";
name = "shell-toggle";
};
@@ -24437,7 +24563,7 @@
sha256 = "1nli26llyfkj1cz2dwn18c5pz1pnpz3866hapfibvdmwrg4z6cax";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shelldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shelldoc";
sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx";
name = "shelldoc";
};
@@ -24458,7 +24584,7 @@
sha256 = "0mn7bwvj1yv75a2531jp929j6ypckdfqdg6b5ig0kkbcrrwb7kxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shelltest-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shelltest-mode";
sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh";
name = "shelltest-mode";
};
@@ -24479,7 +24605,7 @@
sha256 = "0zlwmzsxkv4mkggylxfx2fkrwgz7dz3zbg2gkn2rxcpy2k2gla64";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shift-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shift-number";
sha256 = "1sbzkmd336d0dcdpk29pzk2b5bhlahrn083x62l6m150n2xzxn4p";
name = "shift-number";
};
@@ -24500,7 +24626,7 @@
sha256 = "1vf766ja8f4xp1f5pmwgz6a85km0nxvc5dn571lwidfrrdbr9rkk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shm";
sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c";
name = "shm";
};
@@ -24521,7 +24647,7 @@
sha256 = "09454mcjd8n1090pjc5mk1dc6bn3bgh60ddpnv9hkajkzpcjxx4h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shpec-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shpec-mode";
sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl";
name = "shpec-mode";
};
@@ -24542,7 +24668,7 @@
sha256 = "050gmxdk88zlfjwi07jsj2mvsfcv5imhzcpa6ip3cqkzpmw3pl32";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shrink-whitespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shrink-whitespace";
sha256 = "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq";
name = "shrink-whitespace";
};
@@ -24563,7 +24689,7 @@
sha256 = "103yvfgkj78i4bnv1fwk76izsa8h4wyj3vwj1vq7xggj607hkxzq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/shut-up";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shut-up";
sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26";
name = "shut-up";
};
@@ -24584,7 +24710,7 @@
sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sift";
sha256 = "0mv5zk140kjilwvzccj75ym7wlkkqryb532mbsy7i9bs3q7m916d";
name = "sift";
};
@@ -24605,7 +24731,7 @@
sha256 = "1qmkc0w28l53zzf5yd2grrk1sq222g5qnsm35ph25s1cfvc1qb2g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simple-httpd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple-httpd";
sha256 = "1g9m8dx62pql6dqz490pifcli96i5pv6sar18w4lwrfgpfisfz8c";
name = "simple-httpd";
};
@@ -24626,7 +24752,7 @@
sha256 = "0v0vmkix9f0hb2183irr6xra8mwi47g6rn843sas7jy2ycaqd91v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simpleclip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simpleclip";
sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s";
name = "simpleclip";
};
@@ -24647,7 +24773,7 @@
sha256 = "04giklbd1fsw2zysr7aqg17h6cpyn4i9jbknm4d4v6581f2pcl93";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simplenote2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simplenote2";
sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm";
name = "simplenote2";
};
@@ -24668,7 +24794,7 @@
sha256 = "1p1771qm3jndnf4rdhb1bri5cjiksvxizagi7vfb7mjmsmx18w61";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/simplezen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simplezen";
sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j";
name = "simplezen";
};
@@ -24689,7 +24815,7 @@
sha256 = "101xn4glqi7b5vhdqqahj2ib4pm30pzq8sad7zagxw9csihcri3q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/skeletor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skeletor";
sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v";
name = "skeletor";
};
@@ -24710,7 +24836,7 @@
sha256 = "0g5sapd76pjnfhxlw149zj0fpn6l3pz3l8qlcn2c237vm8vn6qv3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/skewer-less";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skewer-less";
sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl";
name = "skewer-less";
};
@@ -24731,7 +24857,7 @@
sha256 = "05jndz0c26q60s416vqgvr66axdmxb7qsr2g70fvl5iqavnayhpv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/skewer-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skewer-mode";
sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm";
name = "skewer-mode";
};
@@ -24752,7 +24878,7 @@
sha256 = "09ccdgg2wgw3xmlkpjsaqmnmf7f8rhjy4g6ypsn1sk5rgbgk8aj8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slamhound";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slamhound";
sha256 = "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x";
name = "slamhound";
};
@@ -24773,7 +24899,7 @@
sha256 = "0rk12am1dq52khwkwrmg70zarhni2avj4sy44jqckb4x7sv7djfk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slideview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slideview";
sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1";
name = "slideview";
};
@@ -24794,7 +24920,7 @@
sha256 = "1cl8amk1kc7a953l1khjms04j40mfkpnbsjz3qa123msgachrsg7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slim-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slim-mode";
sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac";
name = "slim-mode";
};
@@ -24807,15 +24933,15 @@
slime = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild }:
melpaBuild {
pname = "slime";
- version = "2.17";
+ version = "2.18";
src = fetchFromGitHub {
owner = "slime";
repo = "slime";
- rev = "899b5ca7e1ce8173cb8ce4b7609dd88d05a050c9";
- sha256 = "07gfd8k0gbzylr9y8asp35p9139w79c36pbnixp4y2fimgbfri2c";
+ rev = "2da9fef009f2380daf9404022ca69cb87573f509";
+ sha256 = "0d1fcjv11my4sa11zim99ylzfsc5q989x4izrrxs3y9ii0nq8kax";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime";
sha256 = "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign";
name = "slime";
};
@@ -24836,7 +24962,7 @@
sha256 = "0rdhd6kymbzhkc96dxy3nr21ajrkc7iy6zvq1va22r90f96jj9x4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slime-company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-company";
sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2";
name = "slime-company";
};
@@ -24857,7 +24983,7 @@
sha256 = "0swd9rbsag8k18njp741ljg6lmlz949i4bbz5w7bl0spcpc26fs9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slime-docker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-docker";
sha256 = "13zkkrpww51ndsblpyz2msiwrjnaz6yrk61jbzrwp0r7a2v0djsa";
name = "slime-docker";
};
@@ -24878,7 +25004,7 @@
sha256 = "0lp584k35asqlvbhglv124jazdgp3h7pzl0akfwbdmby9zayqk96";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slime-ritz";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-ritz";
sha256 = "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a";
name = "slime-ritz";
};
@@ -24899,7 +25025,7 @@
sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/slime-volleyball";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-volleyball";
sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7";
name = "slime-volleyball";
};
@@ -24920,7 +25046,7 @@
sha256 = "1aihr5pbdqjb5j6xsghi7qbrmp46kddv76xmyx5z98m93n70wzqf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly";
sha256 = "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l";
name = "sly";
};
@@ -24941,7 +25067,7 @@
sha256 = "11p89pz6zmnjng5177w31ilcmifvnhv9mfjy79ic7amg01h09hsr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sly-company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-company";
sha256 = "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2";
name = "sly-company";
};
@@ -24954,15 +25080,15 @@
smart-mode-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rich-minority }:
melpaBuild {
pname = "smart-mode-line";
- version = "2.9";
+ version = "2.10.1";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "smart-mode-line";
- rev = "d98b985c44b2c771cac1eea758f21e16e169a8a0";
- sha256 = "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71";
+ rev = "8fd76a66abe4d37925e3d6152c6bd1e8648a293a";
+ sha256 = "1176fxrzzk4fyp4wjyp0xyqrga74j5csr5x37mlgplh9790248dx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-mode-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-mode-line";
sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6";
name = "smart-mode-line";
};
@@ -24975,15 +25101,15 @@
smart-mode-line-powerline-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, smart-mode-line }:
melpaBuild {
pname = "smart-mode-line-powerline-theme";
- version = "2.9";
+ version = "2.10.1";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "smart-mode-line";
- rev = "d98b985c44b2c771cac1eea758f21e16e169a8a0";
- sha256 = "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71";
+ rev = "8fd76a66abe4d37925e3d6152c6bd1e8648a293a";
+ sha256 = "1176fxrzzk4fyp4wjyp0xyqrga74j5csr5x37mlgplh9790248dx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-mode-line-powerline-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-mode-line-powerline-theme";
sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4";
name = "smart-mode-line-powerline-theme";
};
@@ -25004,7 +25130,7 @@
sha256 = "1kfihh4s8578cwqyzn5kp3iib7f9vvg6rfc3klqzgads187ryd4z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smart-tabs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-tabs-mode";
sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl";
name = "smart-tabs-mode";
};
@@ -25025,7 +25151,7 @@
sha256 = "0pvgnfg8a8w7c1nmrwyhfc0j7clzb290kwkid0c8kz275mb9nm3k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smartparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartparens";
sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6";
name = "smartparens";
};
@@ -25046,7 +25172,7 @@
sha256 = "0j5lg9gryl8vbzw8d3r2fl0c9wxa0c193mcvdfidd25b98wccc3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smartrep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartrep";
sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn";
name = "smartrep";
};
@@ -25067,7 +25193,7 @@
sha256 = "1sd7dh9114mvr4xnp43xx4b7qmwkaj1a1fv7pwc28fhiy89d2md4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smartscan";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartscan";
sha256 = "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb";
name = "smartscan";
};
@@ -25088,7 +25214,7 @@
sha256 = "1pcpg3lalbrc24z3vwcaysps8dbdzmncdgqdd5ig6yk2a9wyj9ng";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smeargle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smeargle";
sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd";
name = "smeargle";
};
@@ -25109,7 +25235,7 @@
sha256 = "1hcjh577xz3inx28r8wb4g2b1424ccw8pffvgdmpf80xp1llldj5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smex";
sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda";
name = "smex";
};
@@ -25130,7 +25256,7 @@
sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smooth-scroll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smooth-scroll";
sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf";
name = "smooth-scroll";
};
@@ -25151,7 +25277,7 @@
sha256 = "1dkqix0iyjyiqf34h3p8faqcpffc0pwkxqqn80ys9jvj4f27kkrg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/smooth-scrolling";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smooth-scrolling";
sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6";
name = "smooth-scrolling";
};
@@ -25164,15 +25290,15 @@
snakemake-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }:
melpaBuild {
pname = "snakemake-mode";
- version = "0.4.0";
+ version = "0.5.0";
src = fetchFromGitHub {
owner = "kyleam";
repo = "snakemake-mode";
- rev = "27c19be6fec7b198f5e41c20c914f34183917ffb";
- sha256 = "174gbq9ydgq6vjxplnwqn4kil9yzxh9spdp6dhgr81b32ifvd5hi";
+ rev = "c64354a4f6b8e65abd8ff0a3713253de5da59e07";
+ sha256 = "0iwcfywais3jagx27h666fh6zgml8fncsz1jymjrbyr0w6xi33iz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/snakemake-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/snakemake-mode";
sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4";
name = "snakemake-mode";
};
@@ -25193,7 +25319,7 @@
sha256 = "0zcj9jf8nlsj9vms888z2vs76q54n8g8r9sh381xad3x8d6lrlb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/solarized-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/solarized-theme";
sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12";
name = "solarized-theme";
};
@@ -25214,7 +25340,7 @@
sha256 = "0b5w3vdr8llg3hqd22gnc6b6y089lq6vfk0ajkws6gfldz2gg2v1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sos";
sha256 = "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb";
name = "sos";
};
@@ -25235,7 +25361,7 @@
sha256 = "13yn2yadkpmykaly3l3xsq1bhm4sxyk8k1px555y11qi0mfdcjhh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sotclojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sotclojure";
sha256 = "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090";
name = "sotclojure";
};
@@ -25256,7 +25382,7 @@
sha256 = "0xykm4yayb8gw83arv5p205cx18j14q9407rqw3sbcj9cj5nbk34";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sotlisp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sotlisp";
sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk";
name = "sotlisp";
};
@@ -25277,7 +25403,7 @@
sha256 = "0q2ragq4hw89d3w48ykwljb19n2nhz8z6bsmb10shimaf203652g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sound-wav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sound-wav";
sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f";
name = "sound-wav";
};
@@ -25298,7 +25424,7 @@
sha256 = "1ynyxrpl9qd2l60dpn9kb04zxgq748fffb0yj8pxvm9q3abblf3m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sourcekit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sourcekit";
sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks";
name = "sourcekit";
};
@@ -25319,7 +25445,7 @@
sha256 = "1k2gfw4dydzqxbfdmcghajbb2lyg1j4wgdhp8chlql3dax1f503d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sourcemap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sourcemap";
sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5";
name = "sourcemap";
};
@@ -25340,7 +25466,7 @@
sha256 = "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sourcetalk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sourcetalk";
sha256 = "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z";
name = "sourcetalk";
};
@@ -25353,15 +25479,15 @@
spaceline = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, s }:
melpaBuild {
pname = "spaceline";
- version = "1.1.2";
+ version = "2.0.0";
src = fetchFromGitHub {
owner = "TheBB";
repo = "spaceline";
- rev = "88e22c1c9c69093efc7310ca996d2efb3cbbba1d";
- sha256 = "1ncwv6sqm1ch396qi1c8276dc910rnm0f3m8xjkskplv3cjaq0ai";
+ rev = "d27276e30f506d2d2b75858c8a461544766eec74";
+ sha256 = "0n42947xgvdf45h9nz9fmfg4dz5blkk8c883x9ynxv21r0mhvdwk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/spaceline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spaceline";
sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw";
name = "spaceline";
};
@@ -25382,7 +25508,7 @@
sha256 = "1gmmmkzxxlpz2ml6qk24vndlrbyl55r5cba76jn342zrxvb357ny";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sparkline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sparkline";
sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y";
name = "sparkline";
};
@@ -25403,7 +25529,7 @@
sha256 = "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sparql-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sparql-mode";
sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d";
name = "sparql-mode";
};
@@ -25424,7 +25550,7 @@
sha256 = "1k6c7450v0ln6l9b8z1hib2s2b4rmjbskynvwwyilgdnvginfhi3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/speech-tagger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/speech-tagger";
sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc";
name = "speech-tagger";
};
@@ -25445,7 +25571,7 @@
sha256 = "1q6v0xfdxm57lyj4zxyqv6n5ik5w9drk7yf9w8spb5r22jg0dg8c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sphinx-doc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sphinx-doc";
sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z";
name = "sphinx-doc";
};
@@ -25466,7 +25592,7 @@
sha256 = "17qsmjsbk8aq3azjxid6h9fzz77bils74scp21sqn8vdnijx8991";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/splitjoin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/splitjoin";
sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l";
name = "splitjoin";
};
@@ -25487,7 +25613,7 @@
sha256 = "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/spotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spotify";
sha256 = "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k";
name = "spotify";
};
@@ -25508,7 +25634,7 @@
sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sprintly-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sprintly-mode";
sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4";
name = "sprintly-mode";
};
@@ -25529,7 +25655,7 @@
sha256 = "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sprunge";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sprunge";
sha256 = "199vfl6i881aks8fi9d9w4w7mnc7n443h79p3s4srcpmbyfg6g3w";
name = "sprunge";
};
@@ -25550,7 +25676,7 @@
sha256 = "12zyw8b8s3jga560wv141gc4yvlbldvfcmpibns8wrpx2w8aivfj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sql-impala";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sql-impala";
sha256 = "1jr9k48d0q00d1x5lqv0n971mla2ymnqmjfn8pw0s0vxkldq4ibi";
name = "sql-impala";
};
@@ -25571,7 +25697,7 @@
sha256 = "1dcb18fq84vlfgb038i2x6vy7mhin2q6jn4jl9fh256n12cx4nrn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sqlup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sqlup-mode";
sha256 = "0ngs58iri3fwv5ny707kvb6xjq98x19pzak8c9nq4qnpw3nkr83b";
name = "sqlup-mode";
};
@@ -25592,7 +25718,7 @@
sha256 = "0wx8l8gkh8rbf2g149f35gpnmkk45s9x4r844aqw5by4zkvix4rc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/srefactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/srefactor";
sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2";
name = "srefactor";
};
@@ -25613,7 +25739,7 @@
sha256 = "08nx1iwvxqs1anng32w3c2clhnjf45527j0gxz5fy6h9svmb921q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ssh-config-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ssh-config-mode";
sha256 = "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb";
name = "ssh-config-mode";
};
@@ -25634,7 +25760,7 @@
sha256 = "0igqifws73cayvjnhhrsqpy14sr27avymfhaqzrpj76m2fsh6fj4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stash";
sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9";
name = "stash";
};
@@ -25655,7 +25781,7 @@
sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/status";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/status";
sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3";
name = "status";
};
@@ -25676,7 +25802,7 @@
sha256 = "0pik6mq8syhxk9l9ns8wgvg5312qkckm3cilb3irwdm1dvnl5hpf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stekene-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stekene-theme";
sha256 = "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1";
name = "stekene-theme";
};
@@ -25695,7 +25821,7 @@
sha256 = "05jy51g2krmj1c3rq8k7lihml1m4x6j73lkf8z1qwg35kmadzi8j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stgit";
sha256 = "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89";
name = "stgit";
};
@@ -25716,7 +25842,7 @@
sha256 = "15gdcpbba3h84s7xnpk69nav6bixdixnirdh5n1rly010q0m5s5x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/string-edit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/string-edit";
sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8";
name = "string-edit";
};
@@ -25737,7 +25863,7 @@
sha256 = "03azfs6z0jg66ppalijcxl973vdbhj4c3g84sm5dm8xv6rnxrv2s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/string-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/string-utils";
sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v";
name = "string-utils";
};
@@ -25758,7 +25884,7 @@
sha256 = "035ym1c1vzg6hjsnd258z4dkrfc11lj4c0y4gpgybhk54dq3w9dk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stripe-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stripe-buffer";
sha256 = "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a";
name = "stripe-buffer";
};
@@ -25778,7 +25904,7 @@
sha256 = "0a0lwwlly4hlmb30bk6dmi6bsdsy37g4crvv1z24gixippyv1qzm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stumpwm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stumpwm-mode";
sha256 = "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86";
name = "stumpwm-mode";
};
@@ -25799,7 +25925,7 @@
sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/stylus-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stylus-mode";
sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5";
name = "stylus-mode";
};
@@ -25820,7 +25946,7 @@
sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/subatomic-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subatomic-theme";
sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc";
name = "subatomic-theme";
};
@@ -25841,7 +25967,7 @@
sha256 = "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/subemacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subemacs";
sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm";
name = "subemacs";
};
@@ -25862,7 +25988,7 @@
sha256 = "0mx892vn4a32df30iqmf2vsz1gdl3i557fw0194g6a66n9w2q7xf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/subshell-proc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subshell-proc";
sha256 = "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2";
name = "subshell-proc";
};
@@ -25883,7 +26009,7 @@
sha256 = "1kmyivsyxr6gb2k36ssyr779rpk8qsrb27q5rjsir9fgc95qhvjb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sudden-death";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sudden-death";
sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh";
name = "sudden-death";
};
@@ -25904,7 +26030,7 @@
sha256 = "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/suomalainen-kalenteri";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/suomalainen-kalenteri";
sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh";
name = "suomalainen-kalenteri";
};
@@ -25925,7 +26051,7 @@
sha256 = "0cw3yf2npy2ah00q2whpn52kaybbccw1qvfzsww0x4zshlrwvvvq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/super-save";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/super-save";
sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p";
name = "super-save";
};
@@ -25946,7 +26072,7 @@
sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/svg-mode-line-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/svg-mode-line-themes";
sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506";
name = "svg-mode-line-themes";
};
@@ -25967,7 +26093,7 @@
sha256 = "1h56qkbx5abz1l94wrdpbzspiz24mfgkppzfalvbvx5qwl079cvs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sweetgreen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sweetgreen";
sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy";
name = "sweetgreen";
};
@@ -25988,7 +26114,7 @@
sha256 = "07xrcg33vsw19kz692hm7blzvnf7b6isllsz79fvs8q3l5c9mfjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/swift-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swift-mode";
sha256 = "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d";
name = "swift-mode";
};
@@ -26009,7 +26135,7 @@
sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/swiper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swiper";
sha256 = "0qaia5pgsjsmrfmcdj72jmj39zq82wg4i5l2mb2z6jlf1jpbk6y9";
name = "swiper";
};
@@ -26030,7 +26156,7 @@
sha256 = "1y2dbd3ikdpjvi8xz10jkrx2773h7cgr6jxm5b2bldm81lvi8x64";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/swiper-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swiper-helm";
sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph";
name = "swiper-helm";
};
@@ -26051,7 +26177,7 @@
sha256 = "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/switch-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/switch-window";
sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2";
name = "switch-window";
};
@@ -26072,7 +26198,7 @@
sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sws-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sws-mode";
sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i";
name = "sws-mode";
};
@@ -26093,7 +26219,7 @@
sha256 = "02f63k8rzb3bcch6vj6w5c5ncccqg83siqnc8hyi0lhy1bfx240p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/sx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sx";
sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517";
name = "sx";
};
@@ -26114,7 +26240,7 @@
sha256 = "01bymbsvbisnpb2wpqxhrvqx6cj57nh4xvpsbsr5rr1h4pm5jkzl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/syndicate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syndicate";
sha256 = "06nmldcw5dy2shhpk6nyix7gs57gsr5s9ksj57xgg8y2j3j0da95";
name = "syndicate";
};
@@ -26135,7 +26261,7 @@
sha256 = "0hi2jflrlpp7xkbj852vp9hcl8bfmf04jqw1hawxrw4bxdp95jh2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/synosaurus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/synosaurus";
sha256 = "06a48ajpickf4qr1bc14skfr8khnjjph7c35b7ajfy8jw2zwavpn";
name = "synosaurus";
};
@@ -26156,7 +26282,7 @@
sha256 = "1pn69f4w48jdj3wd1myj6qq2mhvygmlzbq2dws2qkjlp3kbwa6da";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/syntactic-sugar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syntactic-sugar";
sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r";
name = "syntactic-sugar";
};
@@ -26172,11 +26298,11 @@
version = "0.2";
src = fetchhg {
url = "https://bitbucket.com/jpkotta/syntax-subword";
- rev = "88e9bf1d4874";
- sha256 = "15zvh6dk02rm16zs6c9zvw1w76ycn61g3cpx6jb3456ff9zn6m9m";
+ rev = "ad0db0fcb464";
+ sha256 = "1wcgr6scvwwfmhhjbpq3riq0gmp4g08ffbl91fpgp72j8zrc1c6x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/syntax-subword";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syntax-subword";
sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm";
name = "syntax-subword";
};
@@ -26197,7 +26323,7 @@
sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/system-specific-settings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/system-specific-settings";
sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp";
name = "system-specific-settings";
};
@@ -26218,7 +26344,7 @@
sha256 = "0wqmpvqv5dbnniv7xpvmhw75h9xh3q5ndkrpzz3pk5b94drgm5s3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/systemd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/systemd";
sha256 = "1ykvm8mfi3fjvrkfcy9qn0sr9mhwm9x1svrmrd0gyqk418clk5i3";
name = "systemd";
};
@@ -26239,7 +26365,7 @@
sha256 = "09nndx83ws5v2i9x0dzk6l1a0lq29ffzh3y05n0n64nf5j0a7zvk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ta";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ta";
sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll";
name = "ta";
};
@@ -26260,7 +26386,7 @@
sha256 = "1xd67s92gyr49v73j7r7cbhsc40bkw8aqh21whgbypdgzpyc7azc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tabbar-ruler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tabbar-ruler";
sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d";
name = "tabbar-ruler";
};
@@ -26281,7 +26407,7 @@
sha256 = "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tablist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tablist";
sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p";
name = "tablist";
};
@@ -26302,7 +26428,7 @@
sha256 = "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tagedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tagedit";
sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z";
name = "tagedit";
};
@@ -26323,7 +26449,7 @@
sha256 = "0amsz28n0syqqkxlmzsndm0ayvzc9kgzk8brs9ihskv0j5b3pdcq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tawny-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tawny-mode";
sha256 = "1xaw1six1n6rw1283fdyl15xcf6m7ngvq6gqlz0xzpf232c4b0kr";
name = "tawny-mode";
};
@@ -26344,7 +26470,7 @@
sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/telepathy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/telepathy";
sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr";
name = "telepathy";
};
@@ -26365,7 +26491,7 @@
sha256 = "0smdlzrcbmip6c6c3rd0871wv5xyagavwsxhhgvki6ybyzdj9a19";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/telephone-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/telephone-line";
sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3";
name = "telephone-line";
};
@@ -26386,7 +26512,7 @@
sha256 = "17633jachcgnibmvx433ygcfmz3j6hzli5mqbqg83r27chiq5mjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ten-hundred-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ten-hundred-mode";
sha256 = "17v38h33ka70ynq72mvma2chvlnm1k2amyvk62c65iv67rwilky3";
name = "ten-hundred-mode";
};
@@ -26396,43 +26522,43 @@
license = lib.licenses.free;
};
}) {};
- term-alert = callPackage ({ alert, fetchFromGitHub, fetchurl, lib, melpaBuild, term-cmd }:
+ term-alert = callPackage ({ alert, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, term-cmd }:
melpaBuild {
pname = "term-alert";
- version = "1.0";
+ version = "1.1";
src = fetchFromGitHub {
owner = "CallumCameron";
repo = "term-alert";
- rev = "879ea638120639299aae602f06c46d9c27312ff1";
- sha256 = "1d1hrnxhi7h5d5i4198hx5lj7fbc280lpkxmk2nb8z6j7z0aki7g";
+ rev = "3e8b39ed4d960933ffdf0308f9bf0d5ce63648e9";
+ sha256 = "195jghl1c8ncl15nix275r4x61zlii90pnwgx4m9q2bnbwsz3ycm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/term-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term-alert";
sha256 = "02qvfhklysfk1fd4ibdngf4crp9k5ab11zgg90hi1sp429a53f3m";
name = "term-alert";
};
- packageRequires = [ alert term-cmd ];
+ packageRequires = [ alert emacs f term-cmd ];
meta = {
homepage = "https://melpa.org/#/term-alert";
license = lib.licenses.free;
};
}) {};
- term-cmd = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ term-cmd = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "term-cmd";
- version = "1.0";
+ version = "1.1";
src = fetchFromGitHub {
owner = "CallumCameron";
repo = "term-cmd";
- rev = "52651fcfbd0b0be0bddc66bf27f36243140698a4";
- sha256 = "1idz9c38q47lll55w1znya00hlkwa42029ys70sb14inc51cml51";
+ rev = "6c9cbc659b70241d2ed1601eea34aeeca0646dac";
+ sha256 = "08qiipjsqc9dfbha6r2yijjbrg2s4i2mkn6zn5616086550v3kpj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/term-cmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term-cmd";
sha256 = "0pbz9fy9rjfpzspwq78ggf1wcvjslwvj8fvc05w4g56ydza0gqi4";
name = "term-cmd";
};
- packageRequires = [];
+ packageRequires = [ dash emacs f ];
meta = {
homepage = "https://melpa.org/#/term-cmd";
license = lib.licenses.free;
@@ -26449,7 +26575,7 @@
sha256 = "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/term-run";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term-run";
sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs";
name = "term-run";
};
@@ -26470,7 +26596,7 @@
sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/termbright-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/termbright-theme";
sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj";
name = "termbright-theme";
};
@@ -26491,7 +26617,7 @@
sha256 = "1kaymyihskmdav56xj85j04iq7a8948b1jgjfrv9s7pc965j9795";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tern";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tern";
sha256 = "1am97ssslkyijpvgk4nldi67ws48g1kpj6gisqzajrrlw5q93wvd";
name = "tern";
};
@@ -26512,7 +26638,7 @@
sha256 = "1kaymyihskmdav56xj85j04iq7a8948b1jgjfrv9s7pc965j9795";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tern-auto-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tern-auto-complete";
sha256 = "1i99b4awph50ygcqsnppm1h48hbf8cpq1ppd4swakrwgmcy2mn26";
name = "tern-auto-complete";
};
@@ -26533,7 +26659,7 @@
sha256 = "0l63lzm96gg3ihgc4l671i342qxigwdbn4xfkbxnarb0206gnb5p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tern-django";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tern-django";
sha256 = "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0";
name = "tern-django";
};
@@ -26554,7 +26680,7 @@
sha256 = "1k0v56v7mwpb5p228c0g252szpxvpqswrmjfpk75kh32v56wp5xi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/terraform-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/terraform-mode";
sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn";
name = "terraform-mode";
};
@@ -26575,7 +26701,7 @@
sha256 = "108csr1d7w0105rb6brzgbksb9wmq1p573vxbq0miv5k894j447f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/test-case-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/test-case-mode";
sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi";
name = "test-case-mode";
};
@@ -26588,15 +26714,15 @@
test-kitchen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "test-kitchen";
- version = "0.2.1";
+ version = "0.3.0";
src = fetchFromGitHub {
owner = "jjasghar";
repo = "test-kitchen-el";
- rev = "9464c7dda14020099053218e959971117396091e";
- sha256 = "02vp4m3aw7rs4gxn91v6j3y8pr04hpydrg05ck3ivv46snkfagdn";
+ rev = "ddbcb964ac4700973eaf30ae366f086e3319e51f";
+ sha256 = "004rd6jkaklsbgka9mf2zi5qzxsl2shwl1kw0vgb963xkmk9zaz8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/test-kitchen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/test-kitchen";
sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0";
name = "test-kitchen";
};
@@ -26617,7 +26743,7 @@
sha256 = "08g7fan1y3wi4w7cdij14awadqss6prqg3k7qzf0wrnbm13dzhmk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/test-simple";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/test-simple";
sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g";
name = "test-simple";
};
@@ -26638,7 +26764,7 @@
sha256 = "1a0fzn66gv421by0x6wj3z6bvzv274a9p8c2aaax0dskncl5lgk1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/textmate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/textmate";
sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v";
name = "textmate";
};
@@ -26659,7 +26785,7 @@
sha256 = "0fjapb7naysf34g4ac5gsa90b2s2ss7qgpyd9mfv3mdqrsp2dyw7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/textmate-to-yas";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/textmate-to-yas";
sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l";
name = "textmate-to-yas";
};
@@ -26680,7 +26806,7 @@
sha256 = "09vf3qs949n4iqzd14iq2kgvypwdwdv8ii8l5jcqfppgspd8m8yd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/theme-changer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/theme-changer";
sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w";
name = "theme-changer";
};
@@ -26701,7 +26827,7 @@
sha256 = "1srylw9wwkyq92f9v6ds9zp9z8sl800wbxjbir80g1lwv4hghaii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/thrift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thrift";
sha256 = "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9";
name = "thrift";
};
@@ -26722,7 +26848,7 @@
sha256 = "1vq5yp6pyjam2csz22mcp353a4d5r7f9m6bsjizfmgr2ld7bwhx7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/timer-revert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/timer-revert";
sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy";
name = "timer-revert";
};
@@ -26743,7 +26869,7 @@
sha256 = "0p7piqbhwxp2idslqnzl5x4y9aqgba9ryxrjy3d0avky5z9kappl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/timesheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/timesheet";
sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506";
name = "timesheet";
};
@@ -26764,7 +26890,7 @@
sha256 = "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tox";
sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl";
name = "tox";
};
@@ -26784,7 +26910,7 @@
sha256 = "1pnsky541m8kzcv81w98jkv0hgajh04hxqlmgddc1y0wbvi849j0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/toxi-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toxi-theme";
sha256 = "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd";
name = "toxi-theme";
};
@@ -26805,7 +26931,7 @@
sha256 = "0lg7f71kdq3zzc85xp9p81vdarz6d6l5zy9175c67ps9smdx528i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tracking";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tracking";
sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z";
name = "tracking";
};
@@ -26826,7 +26952,7 @@
sha256 = "0nsh2rz9w33m79rrr8nrz3g1wcgfrv7dc8q9g3s82ckj5g8gxfpr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/transmission";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/transmission";
sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9";
name = "transmission";
};
@@ -26847,7 +26973,7 @@
sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/travis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/travis";
sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix";
name = "travis";
};
@@ -26868,7 +26994,7 @@
sha256 = "18na22fhwqz80qinmnpsvp6ghc9irva1scixi6s4q6plmgr4m397";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/truthy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/truthy";
sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg";
name = "truthy";
};
@@ -26889,7 +27015,7 @@
sha256 = "1ma3k9bbw427cj1n2gjajbqii482jhs2lgjggz9clpc21bn5wqfb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tss";
sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm";
name = "tss";
};
@@ -26910,7 +27036,7 @@
sha256 = "060jksd9aamqx1n4l0bb9v4icsf7cr8jkyw0mbhgyz32nmxh3v6g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ttrss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ttrss";
sha256 = "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z";
name = "ttrss";
};
@@ -26931,7 +27057,7 @@
sha256 = "0jpcjy2a77mywba2vm61knj26pgylsmv5a21cdp80q40bac4i6bb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tuareg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tuareg";
sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q";
name = "tuareg";
};
@@ -26952,7 +27078,7 @@
sha256 = "0ihjjw5wxz5ybl3600k937pszw3442cijs4gbqqip9vhd5y9m8gy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tumble";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tumble";
sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9";
name = "tumble";
};
@@ -26973,7 +27099,7 @@
sha256 = "0asd024n5v23wdsg1959sszq568wg3a1bp4jrk0cllfji1z0n78y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/tup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tup-mode";
sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l";
name = "tup-mode";
};
@@ -26994,7 +27120,7 @@
sha256 = "0glw5lns7hwp8jznnfm6dyjw454sv2n84gy07ma7s1q3yczhq5bc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/twilight-anti-bright-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twilight-anti-bright-theme";
sha256 = "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9";
name = "twilight-anti-bright-theme";
};
@@ -27015,7 +27141,7 @@
sha256 = "193v98i84xybm3n0f30jin5q10i87vbcnbdhl4zqi7jij9p5v98z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/twittering-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twittering-mode";
sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1";
name = "twittering-mode";
};
@@ -27036,7 +27162,7 @@
sha256 = "1risfbsaafh760vnl4ryys91g4k78g0fxj2zlcndpxxv34gwkhy7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/typed-clojure-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typed-clojure-mode";
sha256 = "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3";
name = "typed-clojure-mode";
};
@@ -27057,7 +27183,7 @@
sha256 = "0iqxii1i67hscsz2fdasj3ripc9xmyl49jzwxm92r3lg13am135a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/typit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typit";
sha256 = "05m7ymcq6fgbhh93ninrf3qi7csdnf2ahhf01mkm8gxxyaqq6m4n";
name = "typit";
};
@@ -27078,7 +27204,7 @@
sha256 = "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/typo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typo";
sha256 = "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx";
name = "typo";
};
@@ -27099,7 +27225,7 @@
sha256 = "0k41hwb6jgv3hngfrphlyhmfhvy4k05mvn0brm64xk7lj56y8q2c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ubuntu-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ubuntu-theme";
sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2";
name = "ubuntu-theme";
};
@@ -27120,7 +27246,7 @@
sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ucs-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ucs-utils";
sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2";
name = "ucs-utils";
};
@@ -27141,7 +27267,7 @@
sha256 = "06qcvbp5rd0kh3ibrxj5p6r578lwsrgd7yj5c6slwmkdmna2fj33";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/undercover";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/undercover";
sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf";
name = "undercover";
};
@@ -27162,7 +27288,7 @@
sha256 = "1g1ldyz42q3i2xlgvhd4s93cvkh0fm8m3l344zjcw8rvqaisyphj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/underwater-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/underwater-theme";
sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr";
name = "underwater-theme";
};
@@ -27183,7 +27309,7 @@
sha256 = "1qy0q1fp7cmvmxynqrb086dkb727lmk5h1k98y14j75b94ilpy0w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unfill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unfill";
sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv";
name = "unfill";
};
@@ -27204,7 +27330,7 @@
sha256 = "0n06dvf6r7qblz8vz38qc37xrn29wa1c0jyzis1qw9zzf6hmmzj7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unicode-enbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-enbox";
sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv";
name = "unicode-enbox";
};
@@ -27225,7 +27351,7 @@
sha256 = "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unicode-fonts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-fonts";
sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3";
name = "unicode-fonts";
};
@@ -27252,7 +27378,7 @@
sha256 = "0qy1hla7vf674ynqdzsaw2cnk92nhpcimww5q94rc0a95pzw64wd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unicode-progress-reporter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-progress-reporter";
sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7";
name = "unicode-progress-reporter";
};
@@ -27273,7 +27399,7 @@
sha256 = "0q7cbl89yg3fjxaxsqsksxhw7ibdslbb004z5y1m579n7zgcrljy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unicode-whitespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-whitespace";
sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy";
name = "unicode-whitespace";
};
@@ -27294,7 +27420,7 @@
sha256 = "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unify-opening";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unify-opening";
sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8";
name = "unify-opening";
};
@@ -27315,7 +27441,7 @@
sha256 = "1w2w0gmyr0nbq8kv3ldj30h9xma76gi1khbdia1y30kss677rr8m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/unkillable-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unkillable-scratch";
sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7";
name = "unkillable-scratch";
};
@@ -27336,7 +27462,7 @@
sha256 = "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/use-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/use-package";
sha256 = "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8";
name = "use-package";
};
@@ -27357,7 +27483,7 @@
sha256 = "17p3cwjxdvp0v3n8fiib7hgl07z2iqi1qwlff0g3zwf4rr6kxgqy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/utop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/utop";
sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7";
name = "utop";
};
@@ -27378,7 +27504,7 @@
sha256 = "0z53n9qsglp87f6q1pa3sixrjni9k46j31zg15gcwrmflmfrw8ds";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/uzumaki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/uzumaki";
sha256 = "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q";
name = "uzumaki";
};
@@ -27399,7 +27525,7 @@
sha256 = "1661fwfx2gpxjriy3ngi9raz8c2kkk3rgg51irdi591jr2zqmw6s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vagrant";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vagrant";
sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf";
name = "vagrant";
};
@@ -27420,7 +27546,7 @@
sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vbasense";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vbasense";
sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n";
name = "vbasense";
};
@@ -27441,7 +27567,7 @@
sha256 = "07dx3dyvkwcin0gb6j4jx0ldfxs4rqhygl56a8i81yy05adkaq2x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vcomp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vcomp";
sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0";
name = "vcomp";
};
@@ -27462,7 +27588,7 @@
sha256 = "034475m2d2vlrlc2l88gdx0ga3krsdh08wkjxwnbb2dfyz3p8r9v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vdirel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vdirel";
sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj";
name = "vdirel";
};
@@ -27483,7 +27609,7 @@
sha256 = "0lzq31zqnk32vfp3kicnvgfr3nkv8amjzxmk9nrz1kwgmq7gvkjk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vector-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vector-utils";
sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n";
name = "vector-utils";
};
@@ -27504,7 +27630,7 @@
sha256 = "1yk7qqg8i3970kpfk34wvi0gh16qf0b0sfnf18g3s21dd4gk5a6g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vertigo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vertigo";
sha256 = "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83";
name = "vertigo";
};
@@ -27525,7 +27651,7 @@
sha256 = "0ggblkaz214vl1j4i5gv5qj2q6ahnr0k3c3l9sd0w5vdkbw8n5jb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vhdl-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vhdl-tools";
sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw";
name = "vhdl-tools";
};
@@ -27546,7 +27672,7 @@
sha256 = "1750gx65ymibam8ahx5blfv5jc26f3mzbklk1jrmfwpsalyghdd9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vim-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vim-region";
sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx";
name = "vim-region";
};
@@ -27567,7 +27693,7 @@
sha256 = "1f94qx8rbnn21cl0grxqa9gzkbrz68vmqsihv8vvi8qf1c1dmd0i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vimgolf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vimgolf";
sha256 = "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn";
name = "vimgolf";
};
@@ -27588,7 +27714,7 @@
sha256 = "01wxjvbq3i1ji9fpff7fbk20pzmr52z6fycqfi7malgwq05is1bm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vimish-fold";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vimish-fold";
sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3";
name = "vimish-fold";
};
@@ -27598,6 +27724,27 @@
license = lib.licenses.free;
};
}) {};
+ visible-mark = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "visible-mark";
+ version = "0.1";
+ src = fetchFromGitLab {
+ owner = "iankelling";
+ repo = "visible-mark";
+ rev = "c1852e13b6b61982738b56977a452ec9026faf1b";
+ sha256 = "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visible-mark";
+ sha256 = "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80";
+ name = "visible-mark";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/visible-mark";
+ license = lib.licenses.free;
+ };
+ }) {};
visual-fill-column = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "visual-fill-column";
@@ -27609,7 +27756,7 @@
sha256 = "02msgb2dh3b5ki6v2bg39l2x93amvmaxg6v57kmyl80x27h00vx9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/visual-fill-column";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visual-fill-column";
sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5";
name = "visual-fill-column";
};
@@ -27630,7 +27777,7 @@
sha256 = "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/vlf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vlf";
sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8";
name = "vlf";
};
@@ -27651,7 +27798,7 @@
sha256 = "0q1rwqjwqcnsr57s531pwlm464q8wx5vvdm5rj2xy9b3yi6phis1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/voca-builder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/voca-builder";
sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y";
name = "voca-builder";
};
@@ -27672,7 +27819,7 @@
sha256 = "1v0chqj5jir4685jd8ahw86g9zdmi6xd05wmzhyw20rbk924fcqf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/volatile-highlights";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/volatile-highlights";
sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d";
name = "volatile-highlights";
};
@@ -27693,7 +27840,7 @@
sha256 = "0jl3n79wmbxnrbf83qjq0v5pzhvv67i9r5sp2zj8nc86hh7dvjsd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wacspace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wacspace";
sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl";
name = "wacspace";
};
@@ -27714,7 +27861,7 @@
sha256 = "1nx7cr7d4qmzwbvp59kc8139nzc965ibc9vf7afrz8z2h5qg4d4l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wandbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wandbox";
sha256 = "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz";
name = "wandbox";
};
@@ -27735,7 +27882,7 @@
sha256 = "0mnfk2ys8axjh696cq5msr5cdr91icl1i3mi0dd2y00lvh6sbm7w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wc-goal-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wc-goal-mode";
sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419";
name = "wc-goal-mode";
};
@@ -27756,7 +27903,7 @@
sha256 = "0kzs256ymhdrqzva32j215q9fl66n9571prb7mi6syx1vpk7m3lw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wc-mode";
sha256 = "191dmxfpqnj7d43cr0fhdmj5ldfs7w9zg5pb2lv9wvlfl7asdid6";
name = "wc-mode";
};
@@ -27777,7 +27924,7 @@
sha256 = "113prlamr2j6y6n0w43asffawwa4qiq63mgwm85v04h6pr8bd90l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wcheck-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wcheck-mode";
sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k";
name = "wcheck-mode";
};
@@ -27798,7 +27945,7 @@
sha256 = "0qx92jqzsimjk92pql2h8pzhq66mqijwqgjqwp7rmq5b6k0nvx1z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/weather-metno";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weather-metno";
sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6";
name = "weather-metno";
};
@@ -27819,7 +27966,7 @@
sha256 = "0zpvs9yc2gxfmm0x0majhzxc0b0vmm6p6pxh92h8iq3pmr0di8yj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/web-beautify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-beautify";
sha256 = "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f";
name = "web-beautify";
};
@@ -27840,7 +27987,7 @@
sha256 = "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/web-completion-data";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-completion-data";
sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9";
name = "web-completion-data";
};
@@ -27861,7 +28008,7 @@
sha256 = "1cs9ldj2qckyynwxzvbd5fmniis6mhprdz1wvvvpjs900bbc843s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/web-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-mode";
sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i";
name = "web-mode";
};
@@ -27881,7 +28028,7 @@
sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/weblogger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weblogger";
sha256 = "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk";
name = "weblogger";
};
@@ -27902,7 +28049,7 @@
sha256 = "0vg3w18xj6i320jsivsml3mi1fdxr8dgxmn7qy2780ajy5ndxnw1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/weechat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weechat";
sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46";
name = "weechat";
};
@@ -27923,7 +28070,7 @@
sha256 = "14vmgfz45wmpjfhfx3pfjn3bak8qvj1zk1w4xc5w1cfl6vnij6hv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/weibo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weibo";
sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd";
name = "weibo";
};
@@ -27933,6 +28080,111 @@
license = lib.licenses.free;
};
}) {};
+ wgrep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "wgrep";
+ version = "2.1.10";
+ src = fetchFromGitHub {
+ owner = "mhayashi1120";
+ repo = "Emacs-wgrep";
+ rev = "7ef26c51feaef8a5ec0929737130ab8ba326983c";
+ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep";
+ sha256 = "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4";
+ name = "wgrep";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/wgrep";
+ license = lib.licenses.free;
+ };
+ }) {};
+ wgrep-ack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }:
+ melpaBuild {
+ pname = "wgrep-ack";
+ version = "2.1.10";
+ src = fetchFromGitHub {
+ owner = "mhayashi1120";
+ repo = "Emacs-wgrep";
+ rev = "7ef26c51feaef8a5ec0929737130ab8ba326983c";
+ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-ack";
+ sha256 = "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh";
+ name = "wgrep-ack";
+ };
+ packageRequires = [ wgrep ];
+ meta = {
+ homepage = "https://melpa.org/#/wgrep-ack";
+ license = lib.licenses.free;
+ };
+ }) {};
+ wgrep-ag = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }:
+ melpaBuild {
+ pname = "wgrep-ag";
+ version = "2.1.10";
+ src = fetchFromGitHub {
+ owner = "mhayashi1120";
+ repo = "Emacs-wgrep";
+ rev = "7ef26c51feaef8a5ec0929737130ab8ba326983c";
+ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-ag";
+ sha256 = "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a";
+ name = "wgrep-ag";
+ };
+ packageRequires = [ wgrep ];
+ meta = {
+ homepage = "https://melpa.org/#/wgrep-ag";
+ license = lib.licenses.free;
+ };
+ }) {};
+ wgrep-helm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }:
+ melpaBuild {
+ pname = "wgrep-helm";
+ version = "2.1.10";
+ src = fetchFromGitHub {
+ owner = "mhayashi1120";
+ repo = "Emacs-wgrep";
+ rev = "7ef26c51feaef8a5ec0929737130ab8ba326983c";
+ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-helm";
+ sha256 = "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b";
+ name = "wgrep-helm";
+ };
+ packageRequires = [ wgrep ];
+ meta = {
+ homepage = "https://melpa.org/#/wgrep-helm";
+ license = lib.licenses.free;
+ };
+ }) {};
+ wgrep-pt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }:
+ melpaBuild {
+ pname = "wgrep-pt";
+ version = "2.1.10";
+ src = fetchFromGitHub {
+ owner = "mhayashi1120";
+ repo = "Emacs-wgrep";
+ rev = "7ef26c51feaef8a5ec0929737130ab8ba326983c";
+ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-pt";
+ sha256 = "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg";
+ name = "wgrep-pt";
+ };
+ packageRequires = [ wgrep ];
+ meta = {
+ homepage = "https://melpa.org/#/wgrep-pt";
+ license = lib.licenses.free;
+ };
+ }) {};
which-key = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "which-key";
@@ -27944,7 +28196,7 @@
sha256 = "050ql42hkv4ffannd0khlcw8p1nhn3jl17qvigdqshrn81v5x4vq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/which-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/which-key";
sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59";
name = "which-key";
};
@@ -27965,7 +28217,7 @@
sha256 = "01fwhrfi92pcrwc4yn03pflc9wj07mhzj0a0i5amar4f9bj6m5b4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/whitaker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/whitaker";
sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj";
name = "whitaker";
};
@@ -27986,7 +28238,7 @@
sha256 = "0xmwhybb8x6wwfr55ym5xg4dhy1aqx1abxy9qskn7h3zf1z4pgg2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/whitespace-cleanup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/whitespace-cleanup-mode";
sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3";
name = "whitespace-cleanup-mode";
};
@@ -28007,7 +28259,7 @@
sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/whole-line-or-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/whole-line-or-region";
sha256 = "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1";
name = "whole-line-or-region";
};
@@ -28028,7 +28280,7 @@
sha256 = "0fqv63m8z5m5ghh4j8ccdnmgcdkvi4jqpg9z7lp17g4p9pq3xfjf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/widget-mvc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/widget-mvc";
sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f";
name = "widget-mvc";
};
@@ -28049,7 +28301,7 @@
sha256 = "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wiki-nav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wiki-nav";
sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy";
name = "wiki-nav";
};
@@ -28070,7 +28322,7 @@
sha256 = "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/win-switch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/win-switch";
sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my";
name = "win-switch";
};
@@ -28091,7 +28343,7 @@
sha256 = "049bwa5g0z1b9nrsc1vc4511aqcq9fvl16xg493wj651g6q9qigb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/window-end-visible";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-end-visible";
sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq";
name = "window-end-visible";
};
@@ -28112,7 +28364,7 @@
sha256 = "0jyymmbz03zj2ydca1rv6ra0b2brjl7pyl4897zd00j5kvqjdyif";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/window-layout";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-layout";
sha256 = "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85";
name = "window-layout";
};
@@ -28133,7 +28385,7 @@
sha256 = "1rz2a1l3apavsknlfy0faaivqgpj4x9jz3hbysbg9pydpcwqgf64";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/window-numbering";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-numbering";
sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x";
name = "window-numbering";
};
@@ -28154,7 +28406,7 @@
sha256 = "1xjs51wm5ydcqdwvg3c42c5z4j92q75lmk895qkka7ayy5spxxf7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/window-purpose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-purpose";
sha256 = "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d";
name = "window-purpose";
};
@@ -28175,7 +28427,7 @@
sha256 = "1f4v0xd341qs4kfnjqhgf8j26valvg6pz4rwcz0zj0s23niy2yil";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/windsize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/windsize";
sha256 = "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9";
name = "windsize";
};
@@ -28195,7 +28447,7 @@
sha256 = "1nfyi9grkl9vhf8rs6r53g5f1p2wsk5jggw0m4i3z60yfflmkqi7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wisp-mode";
sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc";
name = "wisp-mode";
};
@@ -28216,7 +28468,7 @@
sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wispjs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wispjs-mode";
sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p";
name = "wispjs-mode";
};
@@ -28237,7 +28489,7 @@
sha256 = "0rzq2fbz523fyy2p6ddx9iws89sfgw3pwillw8yz965f3hxx3dj3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/with-editor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/with-editor";
sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb";
name = "with-editor";
};
@@ -28258,7 +28510,7 @@
sha256 = "0nmzh6dynbm8vglp4pqz81s2z68jbnasvamvi1x1iawf8g9zfyix";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wn-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wn-mode";
sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3";
name = "wn-mode";
};
@@ -28279,7 +28531,7 @@
sha256 = "018r35dz8z03wcrx9s28pjisayy21549i232mp6wy9mxkrkxbzpc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wonderland";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wonderland";
sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi";
name = "wonderland";
};
@@ -28300,7 +28552,7 @@
sha256 = "0s3mjmfjiidn3spklndw0dvcwbb9x034xyphp60aad8vjaflbchs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wordsmith-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wordsmith-mode";
sha256 = "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n";
name = "wordsmith-mode";
};
@@ -28321,7 +28573,7 @@
sha256 = "0l2n3vwk251ba06xdrs9z0bp4ligfdjd259a84ap2z3sqdfa98x4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/worf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/worf";
sha256 = "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi";
name = "worf";
};
@@ -28342,7 +28594,7 @@
sha256 = "03hjwm51sngkh7jjiwnqhflllqq6i99ib47rm2ja9ii0qyhj1qa0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wrap-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wrap-region";
sha256 = "058518smxj3j3mr6ljzh7c9x5g23d24104p58sl9nhpw0cq9k28i";
name = "wrap-region";
};
@@ -28363,7 +28615,7 @@
sha256 = "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/writegood-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/writegood-mode";
sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d";
name = "writegood-mode";
};
@@ -28384,7 +28636,7 @@
sha256 = "11a3h5v7knj8y360cxin59c1ipd9y4qsqlanrw69yb5k4816ayyr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/writeroom-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/writeroom-mode";
sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk";
name = "writeroom-mode";
};
@@ -28405,7 +28657,7 @@
sha256 = "1lv0l27lrp6xyl0c5yhlnyjwx872izq02z8x34da9jv3walxpk8f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ws-butler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ws-butler";
sha256 = "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn";
name = "ws-butler";
};
@@ -28426,7 +28678,7 @@
sha256 = "1ibvcc54y2w72d3yvcczvzywribiwmkhlb1b08g4pyb1arclw393";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wsd-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wsd-mode";
sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc";
name = "wsd-mode";
};
@@ -28447,7 +28699,7 @@
sha256 = "0mbc3ndggv2rbmfcfhw8bsx3qw6jy684hxz5dqa88lfb6vs5knzc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/wttrin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wttrin";
sha256 = "0msp8lja9nz6khz3dkasv8hnhkaayqxd7m58kma03hpkcjxnaxil";
name = "wttrin";
};
@@ -28468,7 +28720,7 @@
sha256 = "13id1vf590gc0kwkhh6mgq2gj2bra2kycxjlvql7v0s7cdvamjhq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/x86-lookup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/x86-lookup";
sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd";
name = "x86-lookup";
};
@@ -28489,7 +28741,7 @@
sha256 = "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xbm-life";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xbm-life";
sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q";
name = "xbm-life";
};
@@ -28510,7 +28762,7 @@
sha256 = "0xqw0yhm08alaaqma3ymnihzyp2wg0hxsjzmrb2vmak5q1qqnkrp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xcscope";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xcscope";
sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w";
name = "xcscope";
};
@@ -28531,7 +28783,7 @@
sha256 = "0p9p3w8i5w1pzh3y3yxz0rg5gywfq4m5anbiyrdn84vdd42jij4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xkcd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xkcd";
sha256 = "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w";
name = "xkcd";
};
@@ -28552,7 +28804,7 @@
sha256 = "0g52bmamcd54acyk6i47ar5jawad6ycvm9g656inb994wprnjin9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xml-rpc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xml-rpc";
sha256 = "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js";
name = "xml-rpc";
};
@@ -28573,7 +28825,7 @@
sha256 = "1yy759qc4njc8bqh8hmgc0mq5vk5spz5syxgflqhjijk8nrvyfgl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xquery-tool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xquery-tool";
sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0";
name = "xquery-tool";
};
@@ -28594,7 +28846,7 @@
sha256 = "1kmlya0bwgm2krwc6j4gp80579sf5azz08l8d7pydw69rckv6ji0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xref-js2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xref-js2";
sha256 = "1mfyszdi1wx2lqd9fyqm0ra227dcsjs8asc1dw2li0alwh7n4xs3";
name = "xref-js2";
};
@@ -28615,7 +28867,7 @@
sha256 = "1zdj4664gvwc4kyx7fx5232l3c5anm0xyrrnrw596q604q6xxj2x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xterm-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xterm-color";
sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj";
name = "xterm-color";
};
@@ -28636,7 +28888,7 @@
sha256 = "1wqx6hlqcmqiljydih5fx89dw06g8w728pyn4iqsap8jwgjngb09";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/xtest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xtest";
sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7";
name = "xtest";
};
@@ -28657,7 +28909,7 @@
sha256 = "1rplafm6mldsirj7xg66vsx03n263yii3il3fkws69xmv7sx1a6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yafolding";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yafolding";
sha256 = "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq";
name = "yafolding";
};
@@ -28678,7 +28930,7 @@
sha256 = "0l9b888wv72j4hhkcfzsh09iqjxp2qjbjcjcfmvfhxf7il11pv8h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yagist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yagist";
sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd";
name = "yagist";
};
@@ -28699,7 +28951,7 @@
sha256 = "1mj1gwrflpdlmc7wl1axygn1jqlrjys1dh3cpdh27zrgsjvhd6c1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yaml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yaml-mode";
sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc";
name = "yaml-mode";
};
@@ -28720,7 +28972,7 @@
sha256 = "007837w6gd7k253h7g2in6l3ihcbwv733yiffs26pnymgk21xdqz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yascroll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yascroll";
sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f";
name = "yascroll";
};
@@ -28741,7 +28993,7 @@
sha256 = "0yiglsb1s9ni4xig05ysw75l0ndjgdyhzip7c0sdxb265p3yrfby";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yasnippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yasnippet";
sha256 = "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf";
name = "yasnippet";
};
@@ -28762,7 +29014,7 @@
sha256 = "1yplaj7pry43qps8hvqxj9983ah4jvaiq94l171a7f8qi28386s8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yatemplate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yatemplate";
sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q";
name = "yatemplate";
};
@@ -28781,7 +29033,7 @@
sha256 = "08iwfpsjs36pqr2l85avxhsjx8z0sdfw8cqwwf3brn7i4x67f7z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yatex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yatex";
sha256 = "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6";
name = "yatex";
};
@@ -28802,7 +29054,7 @@
sha256 = "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yaxception";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yaxception";
sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58";
name = "yaxception";
};
@@ -28823,7 +29075,7 @@
sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/ycmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ycmd";
sha256 = "10jqr6xz2fnrd1ihips9jmbcd28zha432h4pxjpswz3ivwjqhxna";
name = "ycmd";
};
@@ -28844,7 +29096,7 @@
sha256 = "0yvz7lmid4jcikb9jmc7h2lcry3fdyy809k25nyasj2bk41xqqsd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yesql-ghosts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yesql-ghosts";
sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf";
name = "yesql-ghosts";
};
@@ -28865,7 +29117,7 @@
sha256 = "19a47780h0x1rdicr8i7356kvamkbkcwp31skdpp5cxgysvi3d9s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/yoshi-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yoshi-theme";
sha256 = "1kzdjs3rzg9rxrjgsk0wk75rwvbip6ixg1apcxv2c1a6biqqf2hv";
name = "yoshi-theme";
};
@@ -28886,7 +29138,7 @@
sha256 = "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/youdao-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/youdao-dictionary";
sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym";
name = "youdao-dictionary";
};
@@ -28907,7 +29159,7 @@
sha256 = "1n7ka608lk0xp7vg4zcw282zna0cwvcwvmhic6ym1ag7lq5cjrhc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zenburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zenburn-theme";
sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9";
name = "zenburn-theme";
};
@@ -28920,15 +29172,15 @@
zerodark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zerodark-theme";
- version = "1.2";
+ version = "1.3";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "zerodark-theme";
- rev = "8138727db1e832c3a494713d616bb7c826604e5c";
- sha256 = "0j940clm3w05f93rq46pzrjzj5kw2ia5mzkspk1c6x0z5vi888gm";
+ rev = "90aa9d2ca5632bfc6471982339f0709494b35f4a";
+ sha256 = "1kdsyki7i7x0ypq0iabdv1bnx0gd45acqcixvrxi3rf9j4chyvls";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zerodark-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zerodark-theme";
sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9";
name = "zerodark-theme";
};
@@ -28949,7 +29201,7 @@
sha256 = "1ksjd3askc3k1l0b3nia5mzkxa74bidh2x0xlrj4qs4im5445vnz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zombie-trellys-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zombie-trellys-mode";
sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv";
name = "zombie-trellys-mode";
};
@@ -28970,7 +29222,7 @@
sha256 = "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zone-nyan";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zone-nyan";
sha256 = "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b";
name = "zone-nyan";
};
@@ -28991,7 +29243,7 @@
sha256 = "1dwf3980rnwc85s73j8accwgpcdhsa6fqdrppbrqb8f7c05q8303";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zoom-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zoom-window";
sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3";
name = "zoom-window";
};
@@ -29012,7 +29264,7 @@
sha256 = "0j6x3az8vpq2ggafjxdl8x3ln7lhh58c27z72mwywp4a2ca1g496";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zop-to-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zop-to-char";
sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga";
name = "zop-to-char";
};
@@ -29033,7 +29285,7 @@
sha256 = "0qwdbzfi8mddmchdd9ab9ms1ynlc8dx08i6g2mf3za1sbcivdqsr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zotelo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zotelo";
sha256 = "0y6s5ma7633h5pf9zj7vkazidlf211va7nk47ppb1q0iyfkyln36";
name = "zotelo";
};
@@ -29054,7 +29306,7 @@
sha256 = "0qksa67aazs9vx7v14nlakr34z6l0h6mhfzi2c0vhrr0c210r6hp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zotxt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zotxt";
sha256 = "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5";
name = "zotxt";
};
@@ -29075,7 +29327,7 @@
sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zygospore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zygospore";
sha256 = "0n9qs6fymdjly0i4rmx87y8gapfn5sqivsivcffi42vcb5f17kxj";
name = "zygospore";
};
@@ -29096,7 +29348,7 @@
sha256 = "0y0hhar3krkvbpb5y9k197mb0wfpz8cl6fmxazq8msjml7hkk339";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/zzz-to-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zzz-to-char";
sha256 = "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh";
name = "zzz-to-char";
};
diff --git a/pkgs/applications/editors/idea/common.nix b/pkgs/applications/editors/idea/common.nix
index fbe6210a39b..556b333ce75 100644
--- a/pkgs/applications/editors/idea/common.nix
+++ b/pkgs/applications/editors/idea/common.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, makeDesktopItem, makeWrapper, patchelf, p7zip
, coreutils, gnugrep, which, git, python, unzip, jdk }:
-{ name, product, version, build, src, meta } @ attrs:
+{ name, product, version, build, src, wmClass, meta } @ attrs:
with stdenv.lib;
@@ -20,6 +20,9 @@ with stdenv; lib.makeOverridable mkDerivation rec {
genericName = meta.description;
categories = "Application;Development;";
icon = execName;
+ extraEntries = ''
+ StartupWMClass=${wmClass}
+ '';
};
buildInputs = [ makeWrapper patchelf p7zip unzip ];
diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix
index 3bb63114a63..e09c29b9dc4 100644
--- a/pkgs/applications/editors/idea/default.nix
+++ b/pkgs/applications/editors/idea/default.nix
@@ -10,9 +10,9 @@ let
bnumber = with stdenv.lib; build: last (splitString "-" build);
mkIdeaProduct = callPackage ./common.nix { };
- buildAndroidStudio = { name, version, build, src, license, description }:
+ buildAndroidStudio = { name, version, build, src, license, description, wmClass }:
let drv = (mkIdeaProduct rec {
- inherit name version build src;
+ inherit name version build src wmClass;
product = "Studio";
meta = with stdenv.lib; {
homepage = https://developer.android.com/sdk/installing/studio.html;
@@ -35,9 +35,9 @@ let
'';
});
- buildClion = { name, version, build, src, license, description }:
+ buildClion = { name, version, build, src, license, description, wmClass }:
(mkIdeaProduct rec {
- inherit name version build src;
+ inherit name version build src wmClass;
product = "CLion";
meta = with stdenv.lib; {
homepage = "https://www.jetbrains.com/clion/";
@@ -51,9 +51,9 @@ let
};
});
- buildIdea = { name, version, build, src, license, description }:
+ buildIdea = { name, version, build, src, license, description, wmClass }:
(mkIdeaProduct rec {
- inherit name version build src;
+ inherit name version build src wmClass;
product = "IDEA";
meta = with stdenv.lib; {
homepage = "https://www.jetbrains.com/idea/";
@@ -68,9 +68,9 @@ let
};
});
- buildRubyMine = { name, version, build, src, license, description }:
+ buildRubyMine = { name, version, build, src, license, description, wmClass }:
(mkIdeaProduct rec {
- inherit name version build src;
+ inherit name version build src wmClass;
product = "RubyMine";
meta = with stdenv.lib; {
homepage = "https://www.jetbrains.com/ruby/";
@@ -81,9 +81,9 @@ let
};
});
- buildPhpStorm = { name, version, build, src, license, description }:
+ buildPhpStorm = { name, version, build, src, license, description, wmClass }:
(mkIdeaProduct {
- inherit name version build src;
+ inherit name version build src wmClass;
product = "PhpStorm";
meta = with stdenv.lib; {
homepage = "https://www.jetbrains.com/phpstorm/";
@@ -98,9 +98,9 @@ let
};
});
- buildWebStorm = { name, version, build, src, license, description }:
+ buildWebStorm = { name, version, build, src, license, description, wmClass }:
(mkIdeaProduct {
- inherit name version build src;
+ inherit name version build src wmClass;
product = "WebStorm";
meta = with stdenv.lib; {
homepage = "https://www.jetbrains.com/webstorm/";
@@ -115,9 +115,9 @@ let
};
});
- buildPycharm = { name, version, build, src, license, description }:
+ buildPycharm = { name, version, build, src, license, description, wmClass }:
(mkIdeaProduct rec {
- inherit name version build src;
+ inherit name version build src wmClass;
product = "PyCharm";
meta = with stdenv.lib; {
homepage = "https://www.jetbrains.com/pycharm/";
@@ -157,6 +157,7 @@ in
"/android-studio-ide-${buildNumber}-linux.zip";
sha256 = "1zxxzyhny7j4vzlydrhwz3g8l8zcml84mhkcf5ckx8xr50j3m101";
};
+ wmClass = "jetbrains-studio";
};
clion = buildClion rec {
@@ -169,6 +170,7 @@ in
url = "https://download.jetbrains.com/cpp/${name}.tar.gz";
sha256 = "0ll1rcnnbd1if6x5rp3qw35lvp5zdzmvyg9n1lha89i34xiw36jp";
};
+ wmClass = "jetbrains-clion";
};
idea14-community = buildIdea rec {
@@ -181,6 +183,7 @@ in
url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz";
sha256 = "1i4mdjm9dd6zvxlpdgd3bqg45ir0cfc9hl55cdc0hg5qwbz683fz";
};
+ wmClass = "jetbrains-idea-ce";
};
idea-community = buildIdea rec {
@@ -193,6 +196,7 @@ in
url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz";
sha256 = "15c92wsfw16j48k12x4vw78886yf9yjx7hwwjamgf28lmzvc37iz";
};
+ wmClass = "jetbrains-idea-ce";
};
idea14-ultimate = buildIdea rec {
@@ -205,6 +209,7 @@ in
url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz";
sha256 = "a2259249f6e7bf14ba17b0af90a18d24d9b4670af60d24f0bb51af2f62500fc2";
};
+ wmClass = "jetbrains-idea";
};
idea15-ultimate = buildIdea rec {
@@ -217,6 +222,7 @@ in
url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz";
sha256 = "012aap2qn0jx4x34bdv9ivrsr86vvf683srb5vpj27hc4l6rw6ll";
};
+ wmClass = "jetbrains-idea";
};
idea-ultimate = buildIdea rec {
@@ -229,6 +235,7 @@ in
url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz";
sha256 = "0dxpx4nx845vgqxl5qz029d3w3kn3hi98wgzympidplxrphgalgy";
};
+ wmClass = "jetbrains-idea";
};
ruby-mine = buildRubyMine rec {
@@ -241,6 +248,7 @@ in
url = "https://download.jetbrains.com/ruby/RubyMine-${version}.tar.gz";
sha256 = "04fcxj1xlap9mxmwf051s926p2darlj5kwl4lms2gy5d8b2lhd5l";
};
+ wmClass = "jetbrains-rubymine";
};
pycharm-community = buildPycharm rec {
@@ -253,6 +261,7 @@ in
url = "https://download.jetbrains.com/python/${name}.tar.gz";
sha256 = "1ks7crrfnhzkdxban2hh2pnr986vqwmac5zybmb1ighcyamhdi4q";
};
+ wmClass = "jetbrains-pycharm-ce";
};
pycharm-professional = buildPycharm rec {
@@ -265,6 +274,7 @@ in
url = "https://download.jetbrains.com/python/${name}.tar.gz";
sha256 = "1rn0i5qbvfjbl4v571ngmyslispibcq5ab0fb7xjl38vr1y417f2";
};
+ wmClass = "jetbrains-pycharm";
};
phpstorm = buildPhpStorm rec {
@@ -277,6 +287,7 @@ in
url = "https://download.jetbrains.com/webide/PhpStorm-${version}.tar.gz";
sha256 = "0fi042zvjpg5pn2mnhj3bbrdkl1b9vmhpf2l6ca4nr0rhjjv7dsm";
};
+ wmClass = "jetbrains-phpstorm";
};
webstorm = buildWebStorm rec {
@@ -289,6 +300,7 @@ in
url = "https://download.jetbrains.com/webstorm/WebStorm-${version}.tar.gz";
sha256 = "0a5s6f99wyql5pgjl94pf4ljdbviik3b8dbr1s6b7c6jn1gk62ic";
};
+ wmClass = "jetbrains-webstorm";
};
}
diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix
index b89e70e87c2..fdc8cdcc15f 100644
--- a/pkgs/applications/editors/neovim/default.nix
+++ b/pkgs/applications/editors/neovim/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, cmake, gettext, glib, libmsgpack, libtermkey
-, libtool, libuv, lpeg, lua, luajit, luaMessagePack, luabitop, ncurses, perl
-, pkgconfig, unibilium, makeWrapper, vimUtils
+, libtool, libuv, lpeg, lua, luajit, luaMessagePack, luabitop, man, ncurses
+, perl, pkgconfig, unibilium, makeWrapper, vimUtils, xsel
, withPython ? true, pythonPackages, extraPythonPackages ? []
, withPython3 ? true, python3Packages, extraPython3Packages ? []
@@ -101,7 +101,10 @@ let
# triggers on buffer overflow bug while running tests
hardeningDisable = [ "fortify" ];
- preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
+ preConfigure = ''
+ substituteInPlace runtime/autoload/man.vim \
+ --replace /usr/bin/man ${man}/bin/man
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
export DYLD_LIBRARY_PATH=${jemalloc}/lib
substituteInPlace src/nvim/CMakeLists.txt --replace " util" ""
'';
@@ -111,6 +114,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
'' + optionalString withPython ''
ln -s ${pythonEnv}/bin/python $out/bin/nvim-python
'' + optionalString withPyGUI ''
diff --git a/pkgs/applications/editors/sublime/default.nix b/pkgs/applications/editors/sublime/default.nix
index a002d14c98c..1f4be1ac508 100644
--- a/pkgs/applications/editors/sublime/default.nix
+++ b/pkgs/applications/editors/sublime/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, stdenv, glib, xorg, cairo, gtk}:
+{ fetchurl, stdenv, glib, xorg, cairo, gtk, makeDesktopItem }:
let
libPath = stdenv.lib.makeLibraryPath [glib xorg.libX11 gtk cairo];
in
@@ -31,8 +31,27 @@ stdenv.mkDerivation rec {
--interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath ${libPath}:${stdenv.cc.cc.lib}/lib${stdenv.lib.optionalString stdenv.is64bit "64"} \
$out/sublime/sublime_text
+
+ mkdir -p $out/share/icons
+
+ for x in $(ls $out/sublime/Icon); do
+ mkdir -p $out/share/icons/hicolor/$x/apps
+ cp -v $out/sublime/Icon/$x/* $out/share/icons/hicolor/$x/apps
+ done
+
+ ln -sv "${desktopItem}/share/applications" $out/share
'';
+ desktopItem = makeDesktopItem {
+ name = "sublime2";
+ exec = "sublime2 %F";
+ comment = meta.description;
+ desktopName = "Sublime Text";
+ genericName = "Text Editor";
+ categories = "TextEditor;Development;";
+ icon = "sublime_text";
+ };
+
meta = {
description = "Sophisticated text editor for code, markup and prose";
license = stdenv.lib.licenses.unfree;
diff --git a/pkgs/applications/editors/texmaker/default.nix b/pkgs/applications/editors/texmaker/default.nix
index 83165f0a505..f4d9d4ccdd5 100644
--- a/pkgs/applications/editors/texmaker/default.nix
+++ b/pkgs/applications/editors/texmaker/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
buildInputs = [ qt4 poppler_qt4 zlib ];
nativeBuildInputs = [ pkgconfig poppler qmake4Hook ];
- NIX_CFLAGS_COMPILE="-I${poppler}/include/poppler";
+ NIX_CFLAGS_COMPILE="-I${poppler.dev}/include/poppler";
preConfigure = ''
qmakeFlags="$qmakeFlags DESKTOPDIR=$out/share/applications ICONDIR=$out/share/pixmaps"
diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix
index 9b17fbde7f5..e73cc9024c6 100644
--- a/pkgs/applications/graphics/ImageMagick/default.nix
+++ b/pkgs/applications/graphics/ImageMagick/default.nix
@@ -43,7 +43,8 @@ stdenv.mkDerivation rec {
patches = [ ./imagetragick.patch ] ++ cfg.patches;
- outputs = [ "out" "doc" ];
+ outputs = [ "dev" "out" "doc" ]; # bin/ isn't really big
+ outputMan = "out"; # it's tiny
enableParallelBuilding = true;
@@ -76,18 +77,23 @@ stdenv.mkDerivation rec {
;
postInstall = ''
-
- (cd "$out/include" && ln -s ImageMagick* ImageMagick)
+ (cd "$dev/include" && ln -s ImageMagick* ImageMagick)
+ moveToOutput "bin/*-config" "$dev"
+ moveToOutput "lib/ImageMagick-*/config-Q16" "$dev" # includes configure params
+ for file in "$dev"/bin/*-config; do
+ substituteInPlace "$file" --replace pkg-config \
+ "PKG_CONFIG_PATH='$dev/lib/pkgconfig' '${pkgconfig}/bin/pkg-config'"
+ done
'' + lib.optionalString (ghostscript != null) ''
for la in $out/lib/*.la; do
- sed 's|-lgs|-L${ghostscript}/lib -lgs|' -i $la
+ sed 's|-lgs|-L${lib.getLib ghostscript}/lib -lgs|' -i $la
done
'';
meta = with stdenv.lib; {
homepage = http://www.imagemagick.org/;
description = "A software suite to create, edit, compose, or convert bitmap images";
- platforms = platforms.linux ++ [ "x86_64-darwin" ];
+ platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ the-kenny wkennington ];
};
}
diff --git a/pkgs/applications/graphics/digikam/default.nix b/pkgs/applications/graphics/digikam/default.nix
index 453dc080995..f38e402ce92 100644
--- a/pkgs/applications/graphics/digikam/default.nix
+++ b/pkgs/applications/graphics/digikam/default.nix
@@ -71,7 +71,7 @@ let
# Help digiKam find libusb, otherwise gphoto2 support is disabled
cmakeFlags = [
"-DLIBUSB_LIBRARIES=${libusb1.out}/lib"
- "-DLIBUSB_INCLUDE_DIR=${libusb1}/include/libusb-1.0"
+ "-DLIBUSB_INCLUDE_DIR=${libusb1.dev}/include/libusb-1.0"
"-DENABLE_BALOOSUPPORT=ON"
"-DENABLE_KDEPIMLIBSSUPPORT=ON"
"-DENABLE_LCMS2=ON" ]
diff --git a/pkgs/applications/graphics/exrdisplay/default.nix b/pkgs/applications/graphics/exrdisplay/default.nix
index 7b415df42f5..4aeb7a4a567 100644
--- a/pkgs/applications/graphics/exrdisplay/default.nix
+++ b/pkgs/applications/graphics/exrdisplay/default.nix
@@ -1,27 +1,29 @@
-{ stdenv, fetchurl, pkgconfig, fltk, openexr, mesa, which, openexr_ctl }:
+{ stdenv, fetchurl, pkgconfig, fltk, openexr, mesa, openexr_ctl }:
assert fltk.glSupport;
stdenv.mkDerivation {
- name ="openexr_viewers-1.0.1";
+ name ="openexr_viewers-2.2.0";
src = fetchurl {
- url = "mirror://savannah/openexr/openexr_viewers-1.0.1.tar.gz";
- sha256 = "1w5qbcdp7sw48z1wk2v07f7p14vqqb1m2ncxyxnbkm9f4ab0ymg6";
+ url = "mirror://savannah/openexr/openexr_viewers-2.2.0.tar.gz";
+ sha256 = "1s84vnas12ybx8zz0jcmpfbk9m4ab5bg2d3cglqwk3wys7jf4gzp";
};
- configurePhase =
- ''
- # don't know why.. adding these flags it works
- #export CXXFLAGS=`fltk-config --use-gl --cxxflags --ldflags`
- ./configure --prefix=$out --with-fltk-config=${fltk}/bin/fltk-config
- '';
+ configurePhase = ''
+ ./configure --prefix=$out --with-fltk-config=${fltk}/bin/fltk-config
+ '';
- buildInputs = [ openexr fltk pkgconfig mesa which openexr_ctl ];
+ buildPahse = ''
+ make LDFLAGS="`fltk-config --ldflags` -lGL -lfltk_gl"
+ '';
+
+ buildInputs = [ openexr fltk pkgconfig mesa openexr_ctl ];
meta = {
- description = "Tool to view OpenEXR images";
- homepage = http://openexr.com;
- license = "BSD-like";
+ description = "Application for viewing OpenEXR images on a display at various exposure settings";
+ homepage = "http://openexr.com";
+ platforms = stdenv.lib.platforms.linux;
+ license = stdenv.lib.licenses.bsd3;
};
}
diff --git a/pkgs/applications/graphics/graphicsmagick/1.3.7.nix b/pkgs/applications/graphics/graphicsmagick/1.3.7.nix
deleted file mode 100644
index 8b780647dfa..00000000000
--- a/pkgs/applications/graphics/graphicsmagick/1.3.7.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{stdenv, fetchurl, bzip2, freetype, graphviz, ghostscript
-, libjpeg, libpng, libtiff, libxml2, zlib, libtool
-, libX11}:
-
-let version = "1.3.7"; in
-
-stdenv.mkDerivation {
- name = "graphicsmagick-${version}";
-
- src = fetchurl {
- url = "mirror://sourceforge/graphicsmagick/GraphicsMagick-${version}.tar.gz";
- sha256 = "0bwyqqvajz0hi34gfbjvm9f78icxk3fb442mvn8q2rapmvfpfkgf";
- };
-
- configureFlags = "--enable-shared";
-
- buildInputs =
- [ libpng bzip2 freetype ghostscript graphviz libjpeg libtiff libX11 libxml2
- zlib libtool
- ];
-
- postInstall = ''
- sed -i 's/-ltiff.*'\'/\'/ $out/bin/*
- '';
-
- meta = {
- homepage = http://www.graphicsmagick.org;
- description = "Swiss army knife of image processing";
- license = stdenv.lib.licenses.mit;
- platforms = stdenv.lib.platforms.all;
- };
-}
diff --git a/pkgs/applications/graphics/graphicsmagick/default.nix b/pkgs/applications/graphics/graphicsmagick/default.nix
index 95cfcaef01a..63b88ee4fb9 100644
--- a/pkgs/applications/graphics/graphicsmagick/default.nix
+++ b/pkgs/applications/graphics/graphicsmagick/default.nix
@@ -1,22 +1,28 @@
{stdenv, fetchurl, bzip2, freetype, graphviz, ghostscript
, libjpeg, libpng, libtiff, libxml2, zlib, libtool, xz
-, libX11, quantumdepth ? 8}:
+, libX11, libwebp, quantumdepth ? 8}:
-let version = "1.3.21"; in
+let version = "1.3.23"; in
stdenv.mkDerivation {
name = "graphicsmagick-${version}";
src = fetchurl {
url = "mirror://sourceforge/graphicsmagick/GraphicsMagick-${version}.tar.xz";
- sha256 = "07rwpxy62r9m4r2cg6yll2nr698mxyvbji8vgsivcxhpk56k0ich";
+ sha256 = "03g6l2h8cmf231y1vma0z7x85070jm1ysgs9ppqcd3jj56jka9gx";
};
- configureFlags = "--enable-shared --with-quantum-depth=" + toString quantumdepth;
+ patches = [ ./disable-popen.patch ];
+
+ configureFlags = [
+ "--enable-shared"
+ "--with-quantum-depth=${toString quantumdepth}"
+ "--with-gslib=yes"
+ ];
buildInputs =
[ bzip2 freetype ghostscript graphviz libjpeg libpng libtiff libX11 libxml2
- zlib libtool
+ zlib libtool libwebp
];
nativeBuildInputs = [ xz ];
diff --git a/pkgs/applications/graphics/graphicsmagick/disable-popen.patch b/pkgs/applications/graphics/graphicsmagick/disable-popen.patch
new file mode 100644
index 00000000000..2cdb1f7e90f
--- /dev/null
+++ b/pkgs/applications/graphics/graphicsmagick/disable-popen.patch
@@ -0,0 +1,12 @@
+http://permalink.gmane.org/gmane.comp.security.oss.general/19669
+
+--- a/magick/blob.c Sat Nov 07 14:49:16 2015 -0600
++++ b/magick/blob.c Sun May 29 14:12:57 2016 -0500
+@@ -68,6 +68,7 @@
+ */
+ #define DefaultBlobQuantum 65541
+
++#undef HAVE_POPEN
+
+ /*
+ Enum declarations.
diff --git a/pkgs/applications/graphics/imv/default.nix b/pkgs/applications/graphics/imv/default.nix
index 5be5a8b161d..dc9df2fb852 100644
--- a/pkgs/applications/graphics/imv/default.nix
+++ b/pkgs/applications/graphics/imv/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
name = "imv-${version}";
- version = "2.0.0";
+ version = "2.1.2";
src = fetchgit {
url = "https://github.com/eXeC64/imv.git";
- rev = "bc90a0adcc5b22d2bf0158333eb6dfb34c402d48";
- sha256 = "1bzx57d9mcxw9s72pdbdbwq9pns946jl6p2g881z43w68gimlpw7";
+ rev = "3e6402456b00e29f659baf26ced10f3d7205cf63";
+ sha256 = "0fhc944g7b61jrkd4wn1piq6dkpabsbxpm80pifx9dqmj16sf0pf";
};
buildInputs = [ SDL2 SDL2_ttf freeimage ];
diff --git a/pkgs/applications/graphics/pbrt/default.nix b/pkgs/applications/graphics/pbrt/default.nix
new file mode 100644
index 00000000000..5bf6907744a
--- /dev/null
+++ b/pkgs/applications/graphics/pbrt/default.nix
@@ -0,0 +1,25 @@
+{stdenv, fetchgit, flex, bison, cmake, git, zlib}:
+
+stdenv.mkDerivation rec {
+
+ version = "2016-05-19";
+ name = "pbrt-v3-${version}";
+ src = fetchgit {
+ url = "https://github.com/mmp/pbrt-v3.git";
+ rev = "638249e5cf4596e129695c8df8525d43f11573ff";
+ sha256 = "10ykqrg4zcfb4sfsg3z793c6vld6b6g8bzfyk7ya3yvvc9sdlr5g";
+ };
+
+ fetchSubmodules = true;
+
+ buildInputs = [ git flex bison cmake zlib ];
+
+ meta = {
+ homepage = "http://pbrt.org";
+ description = "The renderer described in the third edition of the book 'Physically Based Rendering: From Theory To Implementation'";
+ platforms = stdenv.lib.platforms.linux ;
+ license = stdenv.lib.licenses.bsd3;
+ maintainers = [ stdenv.lib.maintainers.juliendehos ];
+ priority = 10;
+ };
+}
diff --git a/pkgs/applications/graphics/qscreenshot/default.nix b/pkgs/applications/graphics/qscreenshot/default.nix
new file mode 100644
index 00000000000..c4f4f6472ed
--- /dev/null
+++ b/pkgs/applications/graphics/qscreenshot/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchurl, dos2unix, which, qt }:
+
+stdenv.mkDerivation rec {
+ name = "qscreenshot-1.0";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/qscreenshot/${name}-src.tar.gz";
+ sha256 = "1spj5fg2l8p5bk81xsv6hqn1kcrdiy54w19jsfb7g5i94vcb1pcx";
+ };
+
+ buildInputs = [ dos2unix which qt ];
+
+ # Remove carriage returns that cause /bin/sh to abort
+ preConfigure = ''
+ dos2unix configure
+ sed -i "s|lrelease-qt4|lrelease|" src/src.pro
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Simple creation and editing of screenshots";
+ homepage = https://sourceforge.net/projects/qscreenshot/;
+ license = licenses.gpl2;
+ platforms = platforms.all;
+ maintainers = [ maintainers.bjornfor ];
+ };
+}
diff --git a/pkgs/applications/graphics/qtpfsgui/default.nix b/pkgs/applications/graphics/qtpfsgui/default.nix
index bb307bc8e97..7e5701395fe 100644
--- a/pkgs/applications/graphics/qtpfsgui/default.nix
+++ b/pkgs/applications/graphics/qtpfsgui/default.nix
@@ -20,8 +20,8 @@ stdenv.mkDerivation rec {
qmakeFlags = [
"EXIV2PATH=${exiv2}/include/exiv2"
"OPENEXRDIR=${openexr}/include/OpenEXR"
- "FFTW3DIR=${fftwSinglePrec}/include"
- "LIBTIFFDIR=${libtiff}/include"
+ "FFTW3DIR=${fftwSinglePrec.dev}/include"
+ "LIBTIFFDIR=${libtiff.dev}/include"
];
meta = {
diff --git a/pkgs/applications/graphics/shotwell/default.nix b/pkgs/applications/graphics/shotwell/default.nix
index 0cb8a082fc6..513b1a49198 100644
--- a/pkgs/applications/graphics/shotwell/default.nix
+++ b/pkgs/applications/graphics/shotwell/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
sha256 = "0cgqaaikrb10plhf6zxbgqy32zqpiwyi9dpx3g8yr261q72r5c81";
};
- NIX_CFLAGS_COMPILE = "-I${glib}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include";
+ NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include";
configureFlags = [ "--disable-gsettings-convert-install" ];
diff --git a/pkgs/applications/graphics/shutter/default.nix b/pkgs/applications/graphics/shutter/default.nix
new file mode 100644
index 00000000000..59cea939bc9
--- /dev/null
+++ b/pkgs/applications/graphics/shutter/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, fetchurl, perl, perlPackages, makeWrapper, imagemagick, gdk_pixbuf, librsvg }:
+
+let
+ perlModules = with perlPackages;
+ [ Gnome2 Gnome2Canvas Gtk2 Glib Pango Gnome2VFS Gnome2Wnck Gtk2ImageView
+ Gtk2Unique FileWhich FileCopyRecursive XMLSimple NetDBus XMLTwig
+ XMLParser HTTPMessage ProcSimple SortNaturally LocaleGettext
+ ProcProcessTable URI ImageExifTool Gtk2AppIndicator LWPUserAgent JSON
+ PerlMagick WWWMechanize HTTPDate HTMLForm HTMLParser HTMLTagset JSONXS
+ CommonSense HTTPCookies NetOAuth PathClass GooCanvas X11Protocol Cairo
+ ];
+in
+stdenv.mkDerivation rec {
+ name = "shutter-0.93.1";
+
+ src = fetchurl {
+ url = "http://shutter-project.org/wp-content/uploads/releases/tars/${name}.tar.gz";
+ sha256 = "09cn3scwy98wqxkrjhnmxhpfnnynlbb41856yn5m3zwzqrxiyvak";
+ };
+
+ buildInputs = [ perl makeWrapper gdk_pixbuf librsvg ] ++ perlModules;
+
+ installPhase = ''
+ mkdir -p "$out"
+ cp -a . "$out"
+ (cd "$out" && mv CHANGES README COPYING "$out/share/doc/shutter")
+
+ wrapProgram $out/bin/shutter \
+ --set PERL5LIB "${stdenv.lib.makePerlPath perlModules}" \
+ --prefix PATH : "${imagemagick}/bin" \
+ --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Screenshot and annotation tool";
+ homepage = http://shutter-project.org/;
+ license = licenses.gpl3Plus;
+ platforms = platforms.all;
+ maintainers = [ maintainers.bjornfor ];
+ };
+}
diff --git a/pkgs/applications/misc/acbuild/default.nix b/pkgs/applications/misc/acbuild/default.nix
index 3c8f4f335f2..8221e4ba8d3 100644
--- a/pkgs/applications/misc/acbuild/default.nix
+++ b/pkgs/applications/misc/acbuild/default.nix
@@ -2,19 +2,19 @@
stdenv.mkDerivation rec {
name = "acbuild-${version}";
- version = "0.2.2";
+ version = "0.3.0";
src = fetchFromGitHub {
owner = "appc";
repo = "acbuild";
rev = "v${version}";
- sha256 = "0sajmjg655irwy5fywk88cmwhc1q186dg5w8589pab2jhwpavdx4";
+ sha256 = "19f2fybz4m7d5sp1v8zkl26ig4dacr27qan9h5lxyn2v7a5z34rc";
};
buildInputs = [ go ];
patchPhase = ''
- sed -i -e 's|\$(git describe --dirty)|"${version}"|' build
+ sed -i -e 's|\git describe --dirty|echo "${version}"|' build
'';
buildPhase = ''
diff --git a/pkgs/applications/misc/apvlv/default.nix b/pkgs/applications/misc/apvlv/default.nix
index aa312f4c8a9..88e08b40914 100644
--- a/pkgs/applications/misc/apvlv/default.nix
+++ b/pkgs/applications/misc/apvlv/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
preConfigure = ''
- export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${poppler}/include/poppler"
+ export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${poppler.dev}/include/poppler"
'';
buildInputs = [
diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix
index 3b8ab7f07f3..98061f459dc 100644
--- a/pkgs/applications/misc/calibre/default.nix
+++ b/pkgs/applications/misc/calibre/default.nix
@@ -5,12 +5,12 @@
}:
stdenv.mkDerivation rec {
- version = "2.56.0";
+ version = "2.57.1";
name = "calibre-${version}";
src = fetchurl {
url = "http://download.calibre-ebook.com/${version}/${name}.tar.xz";
- sha256 = "0xv5s664l72idqbi7ymapj1k3gr47r9fbx41fqplsih0ckcg3njj";
+ sha256 = "0bgkm2cf1icx73v7r6njkx31jdm3l7psnfwd9kjqc21p7ii70h11";
};
inherit python;
@@ -45,10 +45,10 @@ stdenv.mkDerivation rec {
installPhase = ''
export HOME=$TMPDIR/fakehome
- export POPPLER_INC_DIR=${poppler_utils}/include/poppler
+ export POPPLER_INC_DIR=${poppler_utils.dev}/include/poppler
export POPPLER_LIB_DIR=${poppler_utils.out}/lib
- export MAGICK_INC=${imagemagick}/include/ImageMagick
- export MAGICK_LIB=${imagemagick}/lib
+ export MAGICK_INC=${imagemagick.dev}/include/ImageMagick
+ export MAGICK_LIB=${imagemagick.out}/lib
export FC_INC_DIR=${fontconfig.dev}/include/fontconfig
export FC_LIB_DIR=${fontconfig.lib}/lib
export PODOFO_INC_DIR=${podofo}/include/podofo
diff --git a/pkgs/applications/misc/diffpdf/default.nix b/pkgs/applications/misc/diffpdf/default.nix
index 666c3a40cdc..fd3d0b35729 100644
--- a/pkgs/applications/misc/diffpdf/default.nix
+++ b/pkgs/applications/misc/diffpdf/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ qmake4Hook ];
preConfigure = ''
- substituteInPlace diffpdf.pro --replace @@NIX_POPPLER_QT4@@ ${poppler_qt4}
+ substituteInPlace diffpdf.pro --replace @@NIX_POPPLER_QT4@@ ${poppler_qt4.dev}
lrelease diffpdf.pro
'';
diff --git a/pkgs/applications/misc/dunst/default.nix b/pkgs/applications/misc/dunst/default.nix
index 3e60a40ab53..0c51cb13262 100644
--- a/pkgs/applications/misc/dunst/default.nix
+++ b/pkgs/applications/misc/dunst/default.nix
@@ -1,40 +1,37 @@
-{ stdenv, fetchurl, coreutils, unzip, which, pkgconfig, dbus
-, freetype, xdg_utils, libXext, glib, pango, cairo, libX11, libnotify
-, libxdg_basedir, libXScrnSaver, xproto, libXinerama, perl, gdk_pixbuf
-, dbus_daemon, makeWrapper
+{ stdenv, fetchFromGitHub
+, pkgconfig, which, perl
+, cairo, dbus, freetype, gdk_pixbuf, glib, libX11, libXScrnSaver
+, libXext, libXinerama, libnotify, libxdg_basedir, pango, xproto
}:
stdenv.mkDerivation rec {
- name = "dunst-1.1.0";
+ name = "dunst-${version}";
version = "1.1.0";
- src = fetchurl {
- url = "https://github.com/knopwob/dunst/archive/v${version}.tar.gz";
- sha256 = "0x95f57s0a96c4lifxdpf73v706iggwmdw8742mabbjnxq55l1qs";
+ src = fetchFromGitHub {
+ owner = "knopwob";
+ repo = "dunst";
+ rev = "v${version}";
+ sha256 = "102s0rkcdz22hnacsi3dhm7kj3lsw9gnikmh3a7wk862nkvvwjmk";
};
- buildInputs =
- [ coreutils unzip which pkgconfig dbus freetype libnotify gdk_pixbuf
- xdg_utils libXext glib pango cairo libX11 libxdg_basedir
- libXScrnSaver xproto libXinerama perl dbus_daemon makeWrapper ];
+ nativeBuildInputs = [ perl pkgconfig which ];
- buildPhase = ''
- export VERSION=${version};
- export PREFIX=$out;
- make dunst;
- '';
+ buildInputs = [
+ cairo dbus freetype gdk_pixbuf glib libX11 libXScrnSaver libXext
+ libXinerama libnotify libxdg_basedir pango xproto
+ ];
- postFixup = ''
- wrapProgram "$out/bin/dunst" \
- --prefix PATH : '${dbus_daemon.out}/bin'
- '';
+ outputs = [ "out" "man" ];
- meta = {
- description = "lightweight and customizable notification daemon";
+ makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ];
+
+ meta = with stdenv.lib; {
+ description = "Lightweight and customizable notification daemon";
homepage = http://www.knopwob.org/dunst/;
- license = stdenv.lib.licenses.bsd3;
+ license = licenses.bsd3;
# NOTE: 'unix' or even 'all' COULD work too, I'm not sure
- platforms = stdenv.lib.platforms.linux;
- maintainers = [ stdenv.lib.maintainers.domenkozar ];
+ platforms = platforms.linux;
+ maintainers = [ maintainers.domenkozar ];
};
}
diff --git a/pkgs/applications/misc/evtest/default.nix b/pkgs/applications/misc/evtest/default.nix
index 330970b498b..10605b8b18d 100644
--- a/pkgs/applications/misc/evtest/default.nix
+++ b/pkgs/applications/misc/evtest/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchgit, autoreconfHook, automake, pkgconfig, libxml2 }:
stdenv.mkDerivation rec {
- name = "evtest-1.32";
+ name = "evtest-1.33";
buildInputs = [ autoreconfHook pkgconfig libxml2 ];
src = fetchgit {
url = "git://anongit.freedesktop.org/evtest";
- rev = "refs/tags/evtest-1.32";
- sha256 = "150lb7d2gnkcqgfw1hcnb8lcvdb52fpig9j9qxjizp6irhlw2a31";
+ rev = "refs/tags/evtest-1.33";
+ sha256 = "168gdhzj11f4nk94a6z696sm8v1njzwww69bn6wr97l17897913g";
};
meta = with stdenv.lib; {
diff --git a/pkgs/applications/misc/fetchmail/default.nix b/pkgs/applications/misc/fetchmail/default.nix
index 2c9aaeda98f..4cec2ca41b6 100644
--- a/pkgs/applications/misc/fetchmail/default.nix
+++ b/pkgs/applications/misc/fetchmail/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
buildInputs = [ openssl ];
- configureFlags = "--with-ssl=${openssl}";
+ configureFlags = "--with-ssl=${openssl.dev}";
meta = {
homepage = "http://www.fetchmail.info/";
diff --git a/pkgs/applications/misc/garmin-plugin/default.nix b/pkgs/applications/misc/garmin-plugin/default.nix
index 613c56efcfd..e2c9bf49459 100644
--- a/pkgs/applications/misc/garmin-plugin/default.nix
+++ b/pkgs/applications/misc/garmin-plugin/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation {
sourceRoot = "GarminPlugin-0.3.26/src";
buildInputs = [ garmintools libusb libgcrypt pkgconfig tinyxml zlib ];
configureFlags = [
- "--with-libgcrypt-prefix=${libgcrypt}"
+ "--with-libgcrypt-prefix=${libgcrypt.dev}"
"--with-garmintools-incdir=${garmintools}/include"
"--with-garmintools-libdir=${garmintools}/lib"
];
diff --git a/pkgs/applications/misc/gkrellm/default.nix b/pkgs/applications/misc/gkrellm/default.nix
index cf7fdafd742..91ba6852462 100644
--- a/pkgs/applications/misc/gkrellm/default.nix
+++ b/pkgs/applications/misc/gkrellm/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
echo "patching makefiles..."
for i in Makefile src/Makefile server/Makefile
do
- sed -i "$i" -e "s|/usr/X11R6|${libX11}|g ; s|-lICE|-lX11 -lICE|g"
+ sed -i "$i" -e "s|/usr/X11R6|${libX11.dev}|g ; s|-lICE|-lX11 -lICE|g"
done '';
buildPhase = ''
diff --git a/pkgs/applications/misc/khal/default.nix b/pkgs/applications/misc/khal/default.nix
index e1786cc1b08..f813e37cfbb 100644
--- a/pkgs/applications/misc/khal/default.nix
+++ b/pkgs/applications/misc/khal/default.nix
@@ -1,15 +1,19 @@
{ stdenv, fetchurl, pkgs, python3Packages }:
-python3Packages.buildPythonApplication rec {
- version = "0.7.0";
+with python3Packages;
+
+buildPythonApplication rec {
+ version = "0.8.2";
name = "khal-${version}";
src = fetchurl {
url = "mirror://pypi/k/khal/khal-${version}.tar.gz";
- sha256 = "00llxj7cv31mjsx0j6zxmyi9s1q20yvfkn025xcy8cv1ylfwic66";
+ sha256 = "0ihclh3jsxhvq7azgdxbdzwbl7my30cdcg3g5ss5bpm4ivskrzzj";
};
- propagatedBuildInputs = with python3Packages; [
+ LC_ALL = "en_US.UTF-8";
+
+ propagatedBuildInputs = [
atomicwrites
click
configobj
@@ -23,8 +27,13 @@ python3Packages.buildPythonApplication rec {
tzlocal
urwid
pkginfo
+ freezegun
];
- buildInputs = with python3Packages; [ setuptools_scm ];
+ buildInputs = [ setuptools_scm pytest pkgs.glibcLocales ];
+
+ checkPhase = ''
+ py.test
+ '';
meta = with stdenv.lib; {
homepage = http://lostpackets.de/khal/;
diff --git a/pkgs/applications/misc/librecad/default.nix b/pkgs/applications/misc/librecad/default.nix
index d5c04ba555a..3161af33ead 100644
--- a/pkgs/applications/misc/librecad/default.nix
+++ b/pkgs/applications/misc/librecad/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, qt4, qmake4Hook, muparser, which, boost, pkgconfig }:
stdenv.mkDerivation rec {
- version = "2.0.9";
+ version = "2.0.10";
name = "librecad-${version}";
src = fetchurl {
url = "https://github.com/LibreCAD/LibreCAD/tarball/${version}";
name = name + ".tar.gz";
- sha256 = "0npr2nxwmx1qil7lqhkh6yvkw7dwym0nfashxjglxspjallqjya7";
+ sha256 = "13jr0zkirnnpkbx8ysh7j6sh2psxi1dg7ncfjqzyxrcr2b270rcj";
};
patchPhase = ''
diff --git a/pkgs/applications/misc/mrxvt/default.nix b/pkgs/applications/misc/mrxvt/default.nix
index b11b234eb43..e8bf2f7a14c 100644
--- a/pkgs/applications/misc/mrxvt/default.nix
+++ b/pkgs/applications/misc/mrxvt/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
];
preConfigure = ''
- NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${freetype}/include/freetype2";
+ NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${freetype.dev}/include/freetype2";
'';
src = fetchurl {
diff --git a/pkgs/applications/misc/pinfo/default.nix b/pkgs/applications/misc/pinfo/default.nix
index 222dddc0e89..9753e6d4475 100644
--- a/pkgs/applications/misc/pinfo/default.nix
+++ b/pkgs/applications/misc/pinfo/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
buildInputs = [ autoreconfHook gettext texinfo ncurses readline ];
- configureFlags = [ "--with-curses=${ncurses.dev}" "--with-readline=${readline}" ];
+ configureFlags = [ "--with-curses=${ncurses.dev}" "--with-readline=${readline.dev}" ];
meta = with stdenv.lib; {
description = "A viewer for info files";
diff --git a/pkgs/applications/misc/pmenu/default.nix b/pkgs/applications/misc/pmenu/default.nix
new file mode 100644
index 00000000000..4798ae5a024
--- /dev/null
+++ b/pkgs/applications/misc/pmenu/default.nix
@@ -0,0 +1,40 @@
+{ stdenv, fetchFromGitLab, pythonPackages, gnome }:
+
+stdenv.mkDerivation rec {
+ name = "pmenu-${version}";
+ version = "2016-05-13";
+
+ src = fetchFromGitLab {
+ owner = "o9000";
+ repo = "pmenu";
+ rev = "90b722de345cff56f8ec0908a0e8a7d733c0c671";
+ sha256 = "15bkvadr7ab44mc8gkdqs3w14cm498mwf72w5rjm2rdh55357jjh";
+ };
+
+ nativeBuildInputs = [ pythonPackages.wrapPython ];
+
+ buildInputs = [ pythonPackages.pygtk gnome.gnome_menus ];
+
+ pythonPath = [ pythonPackages.pygtk ];
+
+ patchPhase = ''
+ substituteInPlace install.sh --replace "/usr/local" "$out"
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin $out/share/applications
+ ./install.sh
+ '';
+
+ postFixup = ''
+ wrapPythonPrograms
+ '';
+
+ meta = {
+ homepage = https://gitlab.com/o9000/pmenu;
+ description = "Start menu for Linux/BSD";
+ license = stdenv.lib.licenses.gpl2;
+ platforms = stdenv.lib.platforms.unix;
+ maintainers = [ stdenv.lib.maintainers.romildo ];
+ };
+}
diff --git a/pkgs/applications/misc/rxvt_unicode/default.nix b/pkgs/applications/misc/rxvt_unicode/default.nix
index 5d1eda5ec06..8fbe021cc8f 100644
--- a/pkgs/applications/misc/rxvt_unicode/default.nix
+++ b/pkgs/applications/misc/rxvt_unicode/default.nix
@@ -35,7 +35,7 @@ stdenv.mkDerivation (rec {
mkdir -p $terminfo/share/terminfo
configureFlags="--with-terminfo=$terminfo/share/terminfo --enable-256-color ${if perlSupport then "--enable-perl" else "--disable-perl"} ${if unicode3Support then "--enable-unicode3" else "--disable-unicode3"}";
export TERMINFO=$terminfo/share/terminfo # without this the terminfo won't be compiled by tic, see man tic
- NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${freetype}/include/freetype2"
+ NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${freetype.dev}/include/freetype2"
NIX_LDFLAGS="$NIX_LDFLAGS -lfontconfig -lXrender "
''
# make urxvt find its perl file lib/perl5/site_perl is added to PERL5LIB automatically
diff --git a/pkgs/applications/misc/rxvt_unicode/wrapper.nix b/pkgs/applications/misc/rxvt_unicode/wrapper.nix
index de37327fbea..98d7e12a8ed 100644
--- a/pkgs/applications/misc/rxvt_unicode/wrapper.nix
+++ b/pkgs/applications/misc/rxvt_unicode/wrapper.nix
@@ -1,15 +1,12 @@
{ stdenv, symlinkJoin, rxvt_unicode, makeWrapper, plugins }:
let
- rxvt = rxvt_unicode.override {
- perlSupport = true;
- };
- rxvt_name = builtins.parseDrvName rxvt.name;
+ rxvt_name = builtins.parseDrvName rxvt_unicode.name;
in symlinkJoin {
name = "${rxvt_name.name}-with-plugins-${rxvt_name.version}";
- paths = [ rxvt ] ++ plugins;
+ paths = [ rxvt_unicode ] ++ plugins;
buildInputs = [ makeWrapper ];
@@ -19,4 +16,6 @@ in symlinkJoin {
wrapProgram $out/bin/urxvtd \
--suffix-each URXVT_PERL_LIB ':' "$out/lib/urxvt/perl"
'';
+
+ passthru.plugins = plugins;
}
diff --git a/pkgs/applications/misc/xautoclick/default.nix b/pkgs/applications/misc/xautoclick/default.nix
index 49a94ac3979..611527153ee 100644
--- a/pkgs/applications/misc/xautoclick/default.nix
+++ b/pkgs/applications/misc/xautoclick/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optionals gtkSupport [ gtk ]
++ stdenv.lib.optionals qtSupport [ qt4 ];
patchPhase = ''
- substituteInPlace configure --replace /usr/X11R6 ${xorg.libX11}
+ substituteInPlace configure --replace /usr/X11R6 ${xorg.libX11.dev}
'';
preConfigure = stdenv.lib.optional qtSupport ''
mkdir .bin
diff --git a/pkgs/applications/misc/zathura/core/default.nix b/pkgs/applications/misc/zathura/core/default.nix
index 01c267cbbb4..0048cb73878 100644
--- a/pkgs/applications/misc/zathura/core/default.nix
+++ b/pkgs/applications/misc/zathura/core/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
buildInputs = [ pkgconfig file gtk girara gettext makeWrapper sqlite glib ];
- NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
makeFlags = [
"PREFIX=$(out)"
diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix
index 9fbc8959ad2..4f4fbb8d3bf 100644
--- a/pkgs/applications/networking/browsers/chromium/common.nix
+++ b/pkgs/applications/networking/browsers/chromium/common.nix
@@ -56,8 +56,9 @@ let
use_system_flac = true;
use_system_libevent = true;
use_system_libexpat = true;
- use_system_libjpeg = true;
- use_system_libpng = versionOlder upstream-info.version "51.0.0.0";
+ # XXX: System libjpeg fails to link for version 52.0.2743.10
+ use_system_libjpeg = upstream-info.version != "52.0.2743.10";
+ use_system_libpng = false;
use_system_libwebp = true;
use_system_libxml = true;
use_system_opus = true;
@@ -123,15 +124,13 @@ let
++ optionals gnomeSupport [ gnome.GConf libgcrypt ]
++ optional enableSELinux libselinux
++ optionals cupsSupport [ libgcrypt cups ]
- ++ optional pulseSupport libpulseaudio
- ++ optional (versionOlder version "51.0.0.0") libexif;
+ ++ optional pulseSupport libpulseaudio;
patches = [
- ./patches/build_fixes_46.patch
./patches/widevine.patch
- (if versionOlder version "50.0.0.0"
- then ./patches/nix_plugin_paths_46.patch
- else ./patches/nix_plugin_paths_50.patch)
+ (if versionOlder version "52.0.0.0"
+ then ./patches/nix_plugin_paths_50.patch
+ else ./patches/nix_plugin_paths_52.patch)
];
postPatch = ''
@@ -141,20 +140,17 @@ let
-e "/python_arch/s/: *'[^']*'/: '""'/" \
build/common.gypi chrome/chrome_tests.gypi
- ${optionalString (versionOlder version "51.0.0.0") ''
- sed -i -e '/module_path *=.*libexif.so/ {
- s|= [^;]*|= base::FilePath().AppendASCII("${libexif}/lib/libexif.so")|
- }' chrome/utility/media_galleries/image_metadata_extractor.cc
- ''}
-
sed -i -e '/lib_loader.*Load/s!"\(libudev\.so\)!"${libudev.out}/lib/\1!' \
device/udev_linux/udev?_loader.cc
sed -i -e '/libpci_loader.*Load/s!"\(libpci\.so\)!"${pciutils}/lib/\1!' \
gpu/config/gpu_info_collector_linux.cc
- '' + optionalString (!versionOlder version "51.0.0.0") ''
+
sed -i -re 's/([^:])\<(isnan *\()/\1std::\2/g' \
chrome/browser/ui/webui/engagement/site_engagement_ui.cc
+ '' + optionalString (versionAtLeast version "52.0.0.0") ''
+ sed -i -re 's/([^:])\<(isnan *\()/\1std::\2/g' \
+ third_party/pdfium/xfa/fxbarcode/utils.h
'';
gypFlags = mkGypFlags (gypFlagsUseSystemLibs // {
@@ -185,9 +181,6 @@ let
google_api_key = "AIzaSyDGi15Zwl11UNe6Y-5XW_upsfyw31qwZPI";
google_default_client_id = "404761575300.apps.googleusercontent.com";
google_default_client_secret = "9rIFQjfnkykEmqb6FfjJQD1D";
-
- } // optionalAttrs (versionOlder version "51.0.0.0") {
- use_system_libexif = true;
} // optionalAttrs proprietaryCodecs {
# enable support for the H.264 codec
proprietary_codecs = true;
diff --git a/pkgs/applications/networking/browsers/chromium/patches/build_fixes_46.patch b/pkgs/applications/networking/browsers/chromium/patches/build_fixes_46.patch
deleted file mode 100644
index c0aeb5d3a56..00000000000
--- a/pkgs/applications/networking/browsers/chromium/patches/build_fixes_46.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/chrome/test/data/webui_test_resources.grd b/chrome/test/data/webui_test_resources.grd
-index 6f8530d..f92a76a 100644
---- a/chrome/test/data/webui_test_resources.grd
-+++ b/chrome/test/data/webui_test_resources.grd
-@@ -6,9 +6,4 @@
-
-
-
--
--
--
--
--
-
diff --git a/pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_46.patch b/pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_52.patch
similarity index 74%
rename from pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_46.patch
rename to pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_52.patch
index 7482be7062d..fc1b609479b 100644
--- a/pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_46.patch
+++ b/pkgs/applications/networking/browsers/chromium/patches/nix_plugin_paths_52.patch
@@ -1,13 +1,13 @@
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
-index 74bf041..5f34198 100644
+index f4e119d..d9775bd 100644
--- a/chrome/common/chrome_paths.cc
+++ b/chrome/common/chrome_paths.cc
-@@ -66,21 +66,14 @@ static base::LazyInstance
+@@ -68,21 +68,14 @@ static base::LazyInstance
g_invalid_specified_user_data_dir = LAZY_INSTANCE_INITIALIZER;
// Gets the path for internal plugins.
-bool GetInternalPluginsDirectory(base::FilePath* result) {
--#if defined(OS_MACOSX) && !defined(OS_IOS)
+-#if defined(OS_MACOSX)
- // If called from Chrome, get internal plugins from a subdirectory of the
- // framework.
- if (base::mac::AmIBundled()) {
@@ -31,8 +31,8 @@ index 74bf041..5f34198 100644
+ *result = base::FilePath(value);
}
- #if defined(OS_WIN)
-@@ -253,11 +246,11 @@ bool PathProvider(int key, base::FilePath* result) {
+ // Gets the path for bundled implementations of components. Note that these
+@@ -272,7 +265,7 @@ bool PathProvider(int key, base::FilePath* result) {
create_dir = true;
break;
case chrome::DIR_INTERNAL_PLUGINS:
@@ -40,13 +40,17 @@ index 74bf041..5f34198 100644
+ if (!GetInternalPluginsDirectory(&cur, "ALL"))
return false;
break;
+ case chrome::DIR_COMPONENTS:
+@@ -280,7 +273,7 @@ bool PathProvider(int key, base::FilePath* result) {
+ return false;
+ break;
case chrome::DIR_PEPPER_FLASH_PLUGIN:
- if (!GetInternalPluginsDirectory(&cur))
+ if (!GetInternalPluginsDirectory(&cur, "PEPPERFLASH"))
return false;
cur = cur.Append(kPepperFlashBaseDirectory);
break;
-@@ -314,7 +307,7 @@ bool PathProvider(int key, base::FilePath* result) {
+@@ -323,7 +316,7 @@ bool PathProvider(int key, base::FilePath* result) {
// We currently need a path here to look up whether the plugin is disabled
// and what its permissions are.
case chrome::FILE_NACL_PLUGIN:
@@ -55,7 +59,7 @@ index 74bf041..5f34198 100644
return false;
cur = cur.Append(kInternalNaClPluginFileName);
break;
-@@ -349,7 +342,7 @@ bool PathProvider(int key, base::FilePath* result) {
+@@ -358,7 +351,7 @@ bool PathProvider(int key, base::FilePath* result) {
cur = cur.DirName();
}
#else
@@ -64,12 +68,3 @@ index 74bf041..5f34198 100644
return false;
#endif
cur = cur.Append(FILE_PATH_LITERAL("pnacl"));
-@@ -366,7 +359,7 @@ bool PathProvider(int key, base::FilePath* result) {
- // In the component case, this is the source adapter. Otherwise, it is the
- // actual Pepper module that gets loaded.
- case chrome::FILE_WIDEVINE_CDM_ADAPTER:
-- if (!GetInternalPluginsDirectory(&cur))
-+ if (!GetInternalPluginsDirectory(&cur, "WIDEVINE"))
- return false;
- cur = cur.AppendASCII(kWidevineCdmAdapterFileName);
- break;
diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.nix b/pkgs/applications/networking/browsers/chromium/upstream-info.nix
index 4cc459397d3..073d7574502 100644
--- a/pkgs/applications/networking/browsers/chromium/upstream-info.nix
+++ b/pkgs/applications/networking/browsers/chromium/upstream-info.nix
@@ -1,18 +1,18 @@
# This file is autogenerated from update.sh in the same directory.
{
beta = {
- sha256 = "0l1434wqhi6c24qyb5ysg1wnd0s9l9i1k6kh6wr3s4acrsbb7p12";
- sha256bin64 = "1ssw92l8zwj8x0zs5h6vxl7d7gj0lqb0x71vsazgd4d0p23nglb1";
- version = "51.0.2704.47";
+ sha256 = "1sgfwh2b0aw6l5v4ggk7frcy306x3ygxk81p3h6zdy5s1rpf8hxj";
+ sha256bin64 = "14qj8l5dapha87ndyzcs3spaxp3s9sapcjcplkisbivis09a29cb";
+ version = "51.0.2704.63";
};
dev = {
- sha256 = "0czp4p434yqr5rv3w2vypkyis13x8lc4xph8yh84r9big1ga6fqs";
- sha256bin64 = "0hahamx9k14czswqdh8iwh69lsml0acca5kxvp2kw471g3s55n78";
- version = "52.0.2729.3";
+ sha256 = "1bbwbn0svgr2pfkza8pdq61bjzlj50axdm5bqqxi51hab51fc9ww";
+ sha256bin64 = "1s02q72b84g9p5i7y1hh1c67qjb92934dqqwd7w6j0jz8ix71nzc";
+ version = "52.0.2743.10";
};
stable = {
- sha256 = "1ijpbmn38znjjb3h8579x5gsclgjx122lvm0afv17gf2j3w5w4qj";
- sha256bin64 = "17vqvxmy6llg7dpc3pxi0qhwpm9qc9rsq8lgknhwwygvkl8g14sb";
- version = "50.0.2661.102";
+ sha256 = "1sgfwh2b0aw6l5v4ggk7frcy306x3ygxk81p3h6zdy5s1rpf8hxj";
+ sha256bin64 = "1kjnxxf2ak8v1akzxz46r7a7r6bhxjb2y9fhr1fqvks3m4jc5zqw";
+ version = "51.0.2704.63";
};
}
diff --git a/pkgs/applications/networking/browsers/elinks/default.nix b/pkgs/applications/networking/browsers/elinks/default.nix
index 1a698b0effd..7a12b1247cf 100644
--- a/pkgs/applications/networking/browsers/elinks/default.nix
+++ b/pkgs/applications/networking/browsers/elinks/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
--enable-finger --enable-html-highlight
--with-perl --enable-gopher --enable-cgi --enable-bittorrent
--with-spidermonkey=${spidermonkey}
- --enable-nntp --with-openssl=${openssl}
+ --enable-nntp --with-openssl=${openssl.dev}
'' + stdenv.lib.optionalString enableGuile " --with-guile"
+ stdenv.lib.optionalString enablePython " --with-python";
diff --git a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
index c1bf0104437..356c5767b41 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.0b5";
+ version = "47.0b9";
sources = [
- { locale = "ach"; arch = "linux-i686"; sha512 = "98b283db66cd5d66a8fb74cab768526af7751eb3a2353791dbc8c40100be43753cf977262f5257fe55d7e42160600055209fc77b0ab5ce6893e393e273f0a961"; }
- { locale = "ach"; arch = "linux-x86_64"; sha512 = "f931442f88a1d624e194732b4e8b0ce09cae2648a70cad658fa9439f0f69f66d1303236a110e8a9bd64f0034eb6adcc89313ec116624fb3e8d557ee387d2e5ef"; }
- { locale = "af"; arch = "linux-i686"; sha512 = "f45f3644c0e6f51e5f88747e6f4c9b6123a40f112dd3768471838c68f8fdb42c729351d6eaa6768b5a7dcb30c1145545bee03c981eb7f271cd42ad7d526b7d74"; }
- { locale = "af"; arch = "linux-x86_64"; sha512 = "a48c2e8de38c0f06d51b701eeb8dd4e68973e9601acdb879bc63bf375fdd08412408abd98bface2651dd86a86812ede0fb5ae9981de484afc0657f622428d720"; }
- { locale = "an"; arch = "linux-i686"; sha512 = "d0de5de0d84f30b9b4a7e0aaf697bb543a2c0d3e7118a4f963b059a99433fe72d3497526c66102a64600585e3a97243918f91ea08f9e1c189670ac2cb5f7f695"; }
- { locale = "an"; arch = "linux-x86_64"; sha512 = "4ad8f425043259bb1ead7c5cf2bafda8d87dfb8e544e6335c9a36c9096f32919e65a28c2f33e87584d53cccaf26c22ebc45657b7e9055876bb19698fb3fe4bd2"; }
- { locale = "ar"; arch = "linux-i686"; sha512 = "b34739502ee0e18a8d2e97f4af694cb5aa71bba530915bf18a7488260163d720cb8df07197e46a75081f34a956e586e64fa7b999505a6b32c47010e2b5c6bb8b"; }
- { locale = "ar"; arch = "linux-x86_64"; sha512 = "4ded69d272fbebac790dc16b7ebec5d9ee42a71a852f069141d95b423ee3d544839b9b852ede8c2a70e1a90aaf991821f2f51107c749af14e5197aaa747d9657"; }
- { locale = "as"; arch = "linux-i686"; sha512 = "54d09a607b608fb1983ad9990a870f422d90d626f91d691a420ce691a904abda0e3539d156fa218a8d0259144a5d6c4da2b4d855f4103bde996bc887b40b6847"; }
- { locale = "as"; arch = "linux-x86_64"; sha512 = "19d425bbf52a4c621a61c2fc6dfb88693b90d0705707ae40804c93871f12b22e67dcca0400cb65565e3f4e135c29de14eb581ede6cf204cc8384381267767d56"; }
- { locale = "ast"; arch = "linux-i686"; sha512 = "bfdadb27f446b63fa5679731f188bf1a9c59d3efa5371cbc9944ee50de13e2d9ee741faf32a2d340568d6537067b394248245bc0fa426e08c5cfa91b788332fd"; }
- { locale = "ast"; arch = "linux-x86_64"; sha512 = "0a4563494a2bfee6aba79a1212c011dc223f0567c5baa106b7af057e697eddbf90fb418cbe2f42d7df6ed183481375a33604275ed256802960f81992851a6354"; }
- { locale = "az"; arch = "linux-i686"; sha512 = "d5311c69962d07fb3a2d95dcc0edefe74d59c484d5b61df5efeee46a40afa19a1f2707345f0834c7510e82e8f3f09dfda2fd1c1dad8980fbf02a177bbd58ec7a"; }
- { locale = "az"; arch = "linux-x86_64"; sha512 = "071e8a37ca66c113d152f676da4e39de17bd2d28339d036d300b31f7ff8b09f052adac376f858bfe74976c905ab685fa3fa14387359af7456738727d51efc6cb"; }
- { locale = "be"; arch = "linux-i686"; sha512 = "fc073297a8363776a6db25b9ea197d5732010c4c9d26726bb655256caae902b7fde05003c28e727cb1728282c7ba22151b554862d0c2aedc4ba483e1291159aa"; }
- { locale = "be"; arch = "linux-x86_64"; sha512 = "e2cd3d493dea9e97523dcfb3dedee7ba0c9f6fe6c21e484ac673922090a56a1725eeb278d2c5186a544af4502a74a6d26a02ecad43e39038a7bed5fa0776151a"; }
- { locale = "bg"; arch = "linux-i686"; sha512 = "02a0bb4e22d70fc6ffd26cbd1633c7834cc47e0b6b6ac48ca315440e93a8a1eea88fbce0e9f21053da2d65ea715270a84790db597857627b742134929df493c9"; }
- { locale = "bg"; arch = "linux-x86_64"; sha512 = "e7c23fca63fda9cfba5c3c70d48a39f7517e0852df213c122db0f2b9ddb5546633f0ad1d8ecf57832cd4396f7f36f0a2b95c44a53ddfa42cee9502de36a27405"; }
- { locale = "bn-BD"; arch = "linux-i686"; sha512 = "fcb750a8f297b611b5885f074285644d38a7ffd5cc44e34a9f416edcb7bfad1cb61c58947815ccc882adb349862c8de6a7c67637c257598e9aec2700c34ef4f1"; }
- { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "8c08859d299ced430dcaf3ce2070608f0384ac2fabb42f3acb55e0015a7179906317f0fba051953207021087fb2fbef38e89d1b924d1bb8fc8a32933354353f6"; }
- { locale = "bn-IN"; arch = "linux-i686"; sha512 = "e9b0a786571711d278e94e94887b7064f5168b3e57b177d519b847014792fdaafbacf5cfde6d4340309beabede605b719b9a1a58f30ae7f1d11fefbfcd56f6d3"; }
- { locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "64e9aa733c14eb31ae8e60b01975c6605b8a01fcdfe2018ec8b395472aff13135a40fb1b664fad6a159eaa809fa56f087d81139b622e58e4d879ae1b7800cf7b"; }
- { locale = "br"; arch = "linux-i686"; sha512 = "34423736e3fd774da60984ffd9a99254bc5bb1ce49ce2f88e299e11aa8c7b7d5e8789b76222300d9e87a50cb25764f4705b1664b178149edaecd5f1d25abb3c4"; }
- { locale = "br"; arch = "linux-x86_64"; sha512 = "3ccc90fc5118aac8b89194298e376ce90013dd9b4155ef604ac0e39c6fd886dc7397eb332c8370d79a85775b5224c98edd83df2f4bd8f18d0c22e26e307a3f00"; }
- { locale = "bs"; arch = "linux-i686"; sha512 = "040c5b200f17f9f1c36b6395e99b531e6509569b8aeaaabe326813a08a19c2d7e911d8cf977eeab3c660738e45a5d56a0d16bb1f0085c72fde95984c8f965e8b"; }
- { locale = "bs"; arch = "linux-x86_64"; sha512 = "d0f808f888dd83cc9811f0a85a062fe4ed8b3ba26d2c9819fdb1c91124ad35a00425a92439a91da2b94dda253dccbcd6be51a620e8a1ad0a2b485e14a96db6b7"; }
- { locale = "ca"; arch = "linux-i686"; sha512 = "8c8bfb8b2c1c280eacc4653edbaa713c3516ea0ea02df2aefc74ac4b0b920a19e14ccfb559ecce3b9c4b744629c741e6c9a2efd6da1888fab63e545bb8534272"; }
- { locale = "ca"; arch = "linux-x86_64"; sha512 = "e68cb49fef941ffdedea5054a4c7cf223c794d261ab8c5526bb4384001a2263d6018097d737ddf6210c3e73175902fb3773f263beced13faed8f697c52dfd479"; }
- { locale = "cak"; arch = "linux-i686"; sha512 = "4cf074c30ed3360f92a523dcd54ffc6f18516452f56620d444cf1fc76a669387aa70687e2dec97a19fffeeae5cb413ed2dc62390de77bf2ef609e758521de647"; }
- { locale = "cak"; arch = "linux-x86_64"; sha512 = "c66cf417086b3faae42a089fff4847f2c925c2f1e4fa6324888faf231f909ad95c51b1ebb844598e8172bc6b3b08cba8f89b9890b722a6915e1baceda319b91c"; }
- { locale = "cs"; arch = "linux-i686"; sha512 = "627abef27cecd1d4801d1d370254f2a68560091dc337f2780ce585566b522d6c75e370177cd0dfdc9e38e96db52d5c54e201c780086fd769e53d6e24149c2988"; }
- { locale = "cs"; arch = "linux-x86_64"; sha512 = "4dd222795547eb14ad0d9f66193b9ad139f66f5a1730bbed3a4213b29cd4717a18ccd095e910071d8642602404bd2732bd377dbc3fdf931cdd8c51862fd43295"; }
- { locale = "cy"; arch = "linux-i686"; sha512 = "10eccf20af40d4f1e74d1fcd740a0be0da539a2997a7e403e3830ae6d797ae97fa17f573255a6bf414635fe48809c98f0ef2088c6dcb6e730a3d8bbf2a6e88fa"; }
- { locale = "cy"; arch = "linux-x86_64"; sha512 = "e5fefa0248b7b594dba6c7e25a069d0f73a5ba3016c557f5866923ca062fa5ba172206c6396bbc595ce76540a9dd23308db23fe1a6a5b10c81dbd4db252ff865"; }
- { locale = "da"; arch = "linux-i686"; sha512 = "909ed57b9745cd124bd16821f08aa578aaea79aa452ccd88c2f3cf5d8441ea5969b5f5bf29cce7ed9b46e0117c1ef278a9b34493a347e934a327afe3bc6a5f2a"; }
- { locale = "da"; arch = "linux-x86_64"; sha512 = "2188776b00c04c76ca754ae65e1a8c4897fb24ab1fec5afdfbda5d76e71dd68e3e98e44cedd3d4659c92f7b490b888a1e680446428c3b1bbfa6aeed092cb61eb"; }
- { locale = "de"; arch = "linux-i686"; sha512 = "67b26a3eac785f893d19f6fddc955c9aeedcd7ad8e4ec40a5f57d14dd1d3c742e3613faf5860c845aa31b9533fafed47b9342e422f1e74e94192a82490634ec7"; }
- { locale = "de"; arch = "linux-x86_64"; sha512 = "8385f21ffa8e35e8a475a1795026d4f91660c5b68a219dcfabbf06a5bf41d6d3711c23e810a2df6a8665878930d71e94a398e563caa60bd2e000dc7e74c735af"; }
- { locale = "dsb"; arch = "linux-i686"; sha512 = "4aa529f48d6a039952bcb50d91c402b8d85c5def54be9fc4e571e1065e9732c2a7d7c95ecd37963cea9735e30043207b53ec10285fc3988c91b2527dc848c1e7"; }
- { locale = "dsb"; arch = "linux-x86_64"; sha512 = "96ebcb4941137c1e07753ed20bd6a53a7ef80d191eaf7c2b949663026f03160ff30d4e085f79710766d3b937753f038f429ea8da33fea49c1472afe7e1a14d10"; }
- { locale = "el"; arch = "linux-i686"; sha512 = "df48924718d78d9c39003c65c363301f0009487c6db79f73e1121f7f1f871c43f485050d0a1fd7086ee71830c0de121a0aca8aa6c4cccebdbdbb21603ab35afc"; }
- { locale = "el"; arch = "linux-x86_64"; sha512 = "a72a4becb87932795002063809481ec3167c16995d64d18c5a0e9e9acbe094491f8e6e1f35628a1fd99d3c7fa95b541e7b87ecc9b61da46eebf41468edd9e6bb"; }
- { locale = "en-GB"; arch = "linux-i686"; sha512 = "a8a35b2420dd581ba61ea01ae1f38b6c3d0c21d26ae5cfc561aac10d7fb7ab9069ee0a488675e0910909f4179fa003800bbcddca1696fbf4d51e98a1030d9032"; }
- { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "7a81e63466cfe6340553cd75794804b5f2fc53a975d4ca64be5fdba4915993cebb8b5b45c26940e669938d878627433005ef916ea16a703fc9024a776217ca51"; }
- { locale = "en-US"; arch = "linux-i686"; sha512 = "def0f98752e1ba92e3154b7275fdce2c63688369fd26d743c9157a8afb37202caed49a96ac4b580764b39e22b6b1e1dfd3c417d3ae4e8c508f24d181dbec4003"; }
- { locale = "en-US"; arch = "linux-x86_64"; sha512 = "8267845b8956245ec961d22a7538db7370e0a484adf4117ecc8824228a2035711538b9676e5673dea8f133e3bc935e9639b896a1a384650b03843233875ff872"; }
- { locale = "en-ZA"; arch = "linux-i686"; sha512 = "bea9951b6f1b3665d380f81c5777af4dc87e8616ff222d06c7018438d04c2c310652357d5fe13237f5567e8b223308746bd96dfad73e20d7869e7a7897402bdb"; }
- { locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "371d20607fb9570409bef79374485915b279be3ff93c573b4d8a6471d7f551e774839371d857079cdcdd671df384a8cba93ccde71b9ad49a5d813f9b092ac0db"; }
- { locale = "eo"; arch = "linux-i686"; sha512 = "36435cb8204873243bf2f7286d8f8a148892fc3f8d47940722214639230546fb87e941b4c449cbfb642a17bc2d12be1586444cb2146a773774b2486c424dfd6c"; }
- { locale = "eo"; arch = "linux-x86_64"; sha512 = "c1ca2aadbec3dbc46e72c05a36d01a3973a61239fd57e3493258129532c45b0a2cf76b1877f98167c836065f25071cda89e3636b6f8ca61c2925e8d359f4aef9"; }
- { locale = "es-AR"; arch = "linux-i686"; sha512 = "9bb812c5f2d623d8f9688867ac2a159e2edcbfbe9c883eba713451ebcfb7ad4716fcd10e022d988a6854921266ffeaec5a8ee7780196eed4c2ec32f424b3d423"; }
- { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "1559ca934349aa4583609a64ec5ec4f9b3fc7c7ba0d55344e2853774736adc118599b48e3aea42ab376a393bc31b3f798d406fc79fd7f4acab6ed4be1ea5d649"; }
- { locale = "es-CL"; arch = "linux-i686"; sha512 = "c4b7fc14c455fcb007406ce648b329d664caca0739187600191837cafd7f835024f4636bd1622708fca8315d8808f2e0721934cc028349507454092298520315"; }
- { locale = "es-CL"; arch = "linux-x86_64"; sha512 = "c380341e32a153c504a1b72bc6ecd2a4b907b854dde42e91230d2d3679866f4c01c5a09a29373f0e580f992469e2448e8c3a1c448083c0416c7f14ebd3afabe5"; }
- { locale = "es-ES"; arch = "linux-i686"; sha512 = "c3b8dd9909cda43d4227ee2cf4a747f3d4774dab3b8e38463464843286e86e5bd25edd026943ee8ded649ec4504f3c41a2ffe70deb3f33d9c54a2bcfebc8d697"; }
- { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "8e0dfc6380b71230bb4b3153bb682f71b759755e5acd8efc727f61769a701dd1e61d6895a9a82d6481335ea1fb82192febdb9e3810a61fe7d209f741e2ab3741"; }
- { locale = "es-MX"; arch = "linux-i686"; sha512 = "0491052cbd95b439537d03909459b22754717fe581f6c33aff218def471a164c3ea2c44d1db1ebbdc2be592cbb1e87a8cba8f9bcdc0360a18ebe7e3f0e559003"; }
- { locale = "es-MX"; arch = "linux-x86_64"; sha512 = "26b5d89429c5fb26fd2179f74c789ae023beb4d90cfaff47e044dd388525120a8dc42bc0d52442847249d86c6f5be88fa347f7ded1edd9485bca4df6fbd6b0c8"; }
- { locale = "et"; arch = "linux-i686"; sha512 = "0311dde01390a778f5a043ddc64654697245f60d325e0d189fb79ea50df7b5cfcfd5e72403f349cc2f92282a93dad9ad7efec23bacabd695c74e809234cfd484"; }
- { locale = "et"; arch = "linux-x86_64"; sha512 = "64ac04e96cffb54a35a9f2a2c41b55d66e0d7d4f218ea71ed590f1c62b83e4b426609473f0cae5c65bc382b298b670f5295354f5151c65eb93170607a39ab125"; }
- { locale = "eu"; arch = "linux-i686"; sha512 = "8fde0bdaea215428b77c586846b647d1ae8423ee80f35d61dd400a4c732e1cacd1c65d77f95a8584e60ed26a90d3c92d2510fee62ba20c0135cb94245136d2a2"; }
- { locale = "eu"; arch = "linux-x86_64"; sha512 = "8304ca1172dccbabcd88c39955213bf3d57b9622f3f387a748db26310974d9b82de1dee01a4b34a0abcb4d6789f7c2fd4ecc17ce4d8090a5e271729c80494736"; }
- { locale = "fa"; arch = "linux-i686"; sha512 = "d54bdbdd1bff08d7bd3f45a5a40f893f269b219fee009184f76eebcc5e9908430c57f7770f26de2ce6c343744046cca8368c2ec5a5e36e860f975ab24783ac63"; }
- { locale = "fa"; arch = "linux-x86_64"; sha512 = "5ccf346b56925f02f1261981830a40c25a33ca38d2214bb528c4df9c8f389ac97c27bba0236b80c07152978705a02485e3c8e5151d1f1ac4cd62958d2d49143d"; }
- { locale = "ff"; arch = "linux-i686"; sha512 = "b7cfc0598678ebdb2b6d5f3e555067684d4d059179ac4bf63c9852579f8153f649e356eb4d88f483f6a79b26c8788723e83f273a2de900baa99e95bacdf11202"; }
- { locale = "ff"; arch = "linux-x86_64"; sha512 = "ff1b6479190b1b784595beccfeaa842d5f66da934909cc1c92a5d34a5aa7fd448708068057e3a07f7f86c28608289ce78f754326f228bbdfc96993a81a88963c"; }
- { locale = "fi"; arch = "linux-i686"; sha512 = "09f42f06e9c9b98f250a2df5864aa3e0aecd5eacf851d55c2f005ce7420d30c0ca5c1fc0a50a64cb90cf95628cf1be1ddebfa82c37f1a128f4a122bdf581ca9c"; }
- { locale = "fi"; arch = "linux-x86_64"; sha512 = "711058109e442cca3e127dbf3a487db2aa89ca7859d6d9872d219dd21b729ad98dc4812c590689583a628e3b118a366cad9b0801b994217f2f971fad9e83ebd4"; }
- { locale = "fr"; arch = "linux-i686"; sha512 = "9ce0946cf7aa588476cb2be42020b5087e98dbd8cf8983a48b38bf9b9472756bf0cbe0295324c8d706df72f35c57266c882ce5722bbff02e59ca1b16114bf73a"; }
- { locale = "fr"; arch = "linux-x86_64"; sha512 = "304df64f3b914168f92195a7cc39e7368ba1633d75acb9cac6ebc5c90c126d40d78211458da4a2cb1eb1e9cbc3b7346e815ba36c09bb672eecc7e2805835989d"; }
- { locale = "fy-NL"; arch = "linux-i686"; sha512 = "d920a93e27e9f6bdb5d0390157f913696c5755a5a07cd15df4baa5589b93cd71e4b4fc11da9c2453ebfd453d1774d1b2238ecb56326bc8f5c7aeab77b86e6641"; }
- { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "488d2e6d02ffc5695ad476cc835f451bcb6e42bc197da256ca0ce8ade7baec50fd818d3658269c6f2e6f372ab9b4893d90f7dbbd9e4f08c8376a59638d8c6b23"; }
- { locale = "ga-IE"; arch = "linux-i686"; sha512 = "dea5e1b24420e958f4275ea9d3d646d99c16022f8086ee8cc207b6d7ab5bf7d7ba2d715d50f8f6ebd633544bba692d34134034c0ecfd0c85a466425c97a6300a"; }
- { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "aa6e55e3aa56aa61a13b1270e812058a513baf3d82759dfce6eb79c8ae87d18b634704a4c8aadbdcab289b2c501bddef2997e82b3872a8d5f485aef70182ac4f"; }
- { locale = "gd"; arch = "linux-i686"; sha512 = "4dc9c3a6159eed67e391c002adc8eee467bea21b7a0166132a13891134802332acb4cd11764383beeef44528a29eeaf19f30ca8985228097c79278403cd309df"; }
- { locale = "gd"; arch = "linux-x86_64"; sha512 = "fdbfdd04846e37271c4565f3e6ccf2936b5bdcce5ef92ecbe5be13c5a1ca547ad4c1fca9e8d87c14147f2fcaa815778bb4d5e17a4f04eef4be1659636f39468b"; }
- { locale = "gl"; arch = "linux-i686"; sha512 = "ee8e7ddb91856c0caaecc376e4a835ae04e1081e07341ada4d49b543796c98d07aece0837b887dc7780c935cd30c813cb22eed485dc57bb68a94aacefb368e7b"; }
- { locale = "gl"; arch = "linux-x86_64"; sha512 = "906d16f7a10f1e5f548c744d520e27f7bd9fdd4668287992d5d8af50c9b389d3af882eeed859a64c97b88e94de8fcc93dbcadf41caae36a3442eb3da131de81d"; }
- { locale = "gn"; arch = "linux-i686"; sha512 = "69167c749ecafac6b7fc610dff05122907b152f0c6c5fef2966c41252b94a3e5853264d8254a3aa5d72f2e11e07397a8b192b1d8e7e0c5654ab1ae7467e2b9bf"; }
- { locale = "gn"; arch = "linux-x86_64"; sha512 = "efb6d111e97bb49312537fd0517a8e48ffb58fede9031c90880a8ac4ae909acbd21140e56f9f82151e27b3f1ea014e9c9a3204b35a1c6fed6794dcd282c523d7"; }
- { locale = "gu-IN"; arch = "linux-i686"; sha512 = "d57f0091a765f80493e95493a2f82a408754205942109858656cab840db3573f58d48f00cb799b9f5ce6a2e5147299a1f636c9af81fe55a91624d2c8a73a4dae"; }
- { locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "96c38bf77f37fa791b04f6f63004caaae6bde4423733620bc7aa095d887f497da12414028c1ff250c5efe811ec3828e9214788bc85e7d73f885c433379da4bb9"; }
- { locale = "he"; arch = "linux-i686"; sha512 = "ca812d1008cce0b8314e5a0a50c8b2de8b0153e99eb7c493ca828159c78fd9a02e15e3926b865698fb0822b995d9a757282d32c8c13d2f9f1c42896280c0048f"; }
- { locale = "he"; arch = "linux-x86_64"; sha512 = "4bf246c12753f70c8a0d084738fd992966430bc0cc2a6d363e09715dcfd9099f5ecef5b110f5c79bdcf9eca3c029ad0b7b04574eb172421c252dd850926f3b67"; }
- { locale = "hi-IN"; arch = "linux-i686"; sha512 = "63727a991fa87d2fb675ee10d2759a42fcbbf50794af4d7d96cec26a02fb07f0c221d069ce762555595b6ad5b713379c5969273e87034a1cbeb886ceb7e68bad"; }
- { locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "d190f4d39e485bd212547b39ce72dc9f02b87436313d7a449cef6f3c8594357534867b635d21d3914faa4f6eb89668cf29a2499ad166b0feb3a7f232de3599fe"; }
- { locale = "hr"; arch = "linux-i686"; sha512 = "508e6c6f55c5ea5ed65180467e682071c0804e499392835f53c06516d09d8f40c209c6b252406599bbbbaa3300679ae1002c436a5c638c79559ac5747e69812a"; }
- { locale = "hr"; arch = "linux-x86_64"; sha512 = "0fcc0ce95c5765563a3c090087854fec969e2eb7c936fd26bdda15c39087c24eb4dbc1748cdd0eda9f4a8922b62af0f3ef51d176d44d75b00c0e8604d7d09426"; }
- { locale = "hsb"; arch = "linux-i686"; sha512 = "40c941ea0f08ef6b81ebcd001bbcf7d1d5bd6b43f67cdb9b9669148221c5157d4e9a3dbd02bd377ae23805ce20f7e8e097bb96b26be15ffb724e4636ee8f69b6"; }
- { locale = "hsb"; arch = "linux-x86_64"; sha512 = "f2452ff5d06af892f7b33fe62cadb18444e7199f956b7a9afd8f5804f59999683e80b92f8193ba99bba7677c505f6cb9cc7f5e2ab11066bad3b4c5230168c15d"; }
- { locale = "hu"; arch = "linux-i686"; sha512 = "7b33b356cc463e21fbc0eb8e79c68622f0a5c9080a077428b29664bb6a2e627f36dc19588577fde8bf0dd47b92a68c5642111d55dc4f9593d103cb59404dc94a"; }
- { locale = "hu"; arch = "linux-x86_64"; sha512 = "7d96f273f258141fcb7438f4c4a940b8351261f5b72e7c9bcad23edfa4c8bb4dbc3867264e8af9d81be926c177adc5b1e872a8b6b4796ef2e057e322f5d8f7a2"; }
- { locale = "hy-AM"; arch = "linux-i686"; sha512 = "1124c892d9e5d0f134eb02cda33aaf823c099e9fe7ed875df994af8b99abb992cab28e3de1227b71d61048285078d0c0bc9104f28a78330649d098a516e96a9e"; }
- { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "e85c7be731bfc4ae5ae0dbfe10c611ecfb815ad3749cb0cfd0b7b9b31d24c6a949c80f5bc5f698932c4420f9819e97069667a21fd99b77e2b4c2ed1164cf861c"; }
- { locale = "id"; arch = "linux-i686"; sha512 = "5c509dc4ad9e07ec1bbd7235f9b05dd97cfac2d9d6b18897192f9863719d3b2509ed1fa6bec528ccf57a0c96414325fb9d74e3db8ef3bfb880685eb96e7a8beb"; }
- { locale = "id"; arch = "linux-x86_64"; sha512 = "6aabb3f1b0eacc7f6203c77492683f37814fcf71595c8b01d4c4304f00c17fae89c0b2a681d59612c676d889516663ecc6c12cfa8d42a804d734995a861d971e"; }
- { locale = "is"; arch = "linux-i686"; sha512 = "bd87b3c76104b1436be92ae86bc9e1040258334f7b79484a5ce94bddcd0473d8cf28ffe615cf46c0d92698e90885de66627688dd8485cf75acbdde84f5d414d1"; }
- { locale = "is"; arch = "linux-x86_64"; sha512 = "d542a1eb114f917f7f0652933f9378428e58169b91fa691d05589390a13918bd0d2109aa59ce8ade43dbfeebd49deea8feb110e24c54f1c90d0fb1314e2be8a9"; }
- { locale = "it"; arch = "linux-i686"; sha512 = "3ae512498e1bfd6ea249b7693fa4da77c209e6747745eede733528504465cc090f17524e57edac99789781e5bbe831f21c68eb34aa4f6f294cf66ba04f37d375"; }
- { locale = "it"; arch = "linux-x86_64"; sha512 = "f53816f745d6a5c6ed74bf23f0e48a0171d79719f21c262657b6402e54b416563e38c215e9fc33179ef82051747025c642757ddf650ae7cfb601af33fb46eaba"; }
- { locale = "ja"; arch = "linux-i686"; sha512 = "22d6416182f3766751e7f0aa647c0f4b658cf32321287550dda1885711ecf6725cb85c1e75f9656661b33d8ee4b3e0fe6b62399848d668b5ac3922d53922a370"; }
- { locale = "ja"; arch = "linux-x86_64"; sha512 = "70f390611d41bfd5e0eff0f2a32afa38abdc41ca3ee2d50b0242cae7b5003d0b6e4430cebb949185ba00e711b46c2bdc410aeb2180e52f2884785617da04e696"; }
- { locale = "kk"; arch = "linux-i686"; sha512 = "322032a5bfe60e135ea430596989db85df3cc1c7d39061b8606c86b01f0fa3523e197b0e0a2dd7eed6667dc01bc3df3b7b8c5c9f1254305c4afb9a247c647a9f"; }
- { locale = "kk"; arch = "linux-x86_64"; sha512 = "d92cf7c83e19733a66955a7351aff90debb6057fc7f3277ccc196e0f0f72b43dc261ad34ec600a5862784dcd6bfc71bae5c7d3f5ffdbb06c2ea8c632ab320a38"; }
- { locale = "km"; arch = "linux-i686"; sha512 = "bb482b0ea1d09e624095e5cecb7327321ac5a6895d7a522da9a1aef081d93ed090e7ee743487afbeab125f660179c7e65ad767918724f7eed84ecbaaa28ed9e9"; }
- { locale = "km"; arch = "linux-x86_64"; sha512 = "0f1ce557998ecd2fc698c091b95f8669ca32ff0a27b415bfb122f9c5e37a25abf4baf62ea3e3ac63c649c4d1510d2bd71e8bcbad399e8ac423eee7bdc240f0cd"; }
- { locale = "kn"; arch = "linux-i686"; sha512 = "68a55c9712a1eab6677ba9577326211aa4c3f6122690da540eb44dddef2d5f6b1a34fc026ddc2e3d005af41149f9e8ccc8eff2bfab952a688b25ab48464dd2e7"; }
- { locale = "kn"; arch = "linux-x86_64"; sha512 = "ed7285ea39f41820dd38677d0dda05c0193e2bfbb2149b6ac12b3611b67a154cc76a0e75a23badaf813cbc0f24dd2be78707ecf2962d5582777cfeb8fb59d042"; }
- { locale = "ko"; arch = "linux-i686"; sha512 = "c20fd881febb57ed2012e654338a24e24277b6c0ff71b86e190c80afbf5caa8bd6408b2b265ac7aebbc5233c942761beffb4252cac6a5bef41d6f18d13cf6884"; }
- { locale = "ko"; arch = "linux-x86_64"; sha512 = "27eb552c9e88088191becf75e3ab0b789a76a5423e84451ddc74ce5ded95b0f98a2fdb0a7552e95752ee4ae41ca9e83bbef3f6ebc8ab089903a63d7d9b558213"; }
- { locale = "lij"; arch = "linux-i686"; sha512 = "d0f697f29c8008344e5ebfa4325046837720e5061e309f530db3de4eb066ffa7f3bdce3e97abfc388569664af46f60e73fa9018998f8c42af0ab1b8c44a751c8"; }
- { locale = "lij"; arch = "linux-x86_64"; sha512 = "3da427ccb0a138d40af0ed0139adba64accccdc02c2d3abbed04c7ed51bd5cca675b2a39d765406a607b76050bac11fc90ded3b84491066920a8387e490ce3a1"; }
- { locale = "lt"; arch = "linux-i686"; sha512 = "c9c779d3f9902248ade70fdec78ea282e021d857a7594ee9fc52eb39c65c142c5278694f6f9621f7f98075a3e9f44e4765493b88a1bf9108bd91fe8522d73319"; }
- { locale = "lt"; arch = "linux-x86_64"; sha512 = "ac53cab92414f0c28cd1cd6a722e59889b0f8ef5d842f93c5ab775b8c857ce1c266522ab119b655c5800e1e0fa370791f4c545c00e35d64e8e6c0f6e2a7bd7d5"; }
- { locale = "lv"; arch = "linux-i686"; sha512 = "a8cc63ad51e11bb98c8b1e7d0b4673ac198eaa73083ffec491e2b4d333ad6b9908d734da53ad70306717bee4de7c48c9f7ed08cc5647b3d494eca001bf80bb22"; }
- { locale = "lv"; arch = "linux-x86_64"; sha512 = "8b229439f9ddead6b965f5e14626e159a6d94774b2f9e57898b86c39f77adc08a6e93b33be050e053bbc1a660f27da66a81f3d1e3222001e52e5463716ee370d"; }
- { locale = "mai"; arch = "linux-i686"; sha512 = "b39472c32581b9977cb5701a398d83b8d4abaf2943c99035d57404610b3ccb016b99f4d89618451701434320dd6a83ecb3d927fcbab2999c273b3e7df32e0428"; }
- { locale = "mai"; arch = "linux-x86_64"; sha512 = "d8e7f74ef1d4e70da44bfd12a2b93e66df40e7ead86f6d1f33eed0f3bafd72b39c43b4cce086c8b27d9d8d297469a5c5238ca48f46bacaf7b850c57c067702f7"; }
- { locale = "mk"; arch = "linux-i686"; sha512 = "99267203937be5687b638f44ccdd9610d0b4804035f6681aa6924f07064e6f26d6dc2900cf39bbdfc2abbb0a72e3cc3b194a20a804e0052b704032e057e469c9"; }
- { locale = "mk"; arch = "linux-x86_64"; sha512 = "e656d150a4a49d9d9f0c619450b9a1bea4a14f7f63d40684c29b247efba83de4a4238d247bb2e62fc77bf4251c5199188d1c1e8498b2e85b9c9be351e9dd3cd2"; }
- { locale = "ml"; arch = "linux-i686"; sha512 = "4a25b6677772dfe7c7e61910fe0c3edc74d42b1a87468ca9315231c983e8cd9db56ffc02d02345c6e76408c5d40ee655dc5e75d7add173a88f1f3a2b4e922c56"; }
- { locale = "ml"; arch = "linux-x86_64"; sha512 = "dec2789ab8d4ed76e642d9bbbab740fd260e8c159568bfb560623e6d774f8ff0692789e1bab26ae759bc864f8e7bd9ebae04e591589bb6fd5a9598b22d28fa52"; }
- { locale = "mr"; arch = "linux-i686"; sha512 = "ac74407da2b53417edee5e0286964d4e6ee1019d40995e7b4a2f545b4689b6eef65e46dfb59892ce27a06a79c8f6e6b73e29738544377d33b8d6ed7bb6eb0cf2"; }
- { locale = "mr"; arch = "linux-x86_64"; sha512 = "e8c492e12556421385150c3ab1387c857a2b6fdecace7277d9a71d614a12f0905662ed838824ab09aded7c7b01d3da891ac60969bcad57a130bc6bb280cc4a27"; }
- { locale = "ms"; arch = "linux-i686"; sha512 = "b0da250f5f73dd3a9ef7e0c7eec1ff4a67247f74e4b3afd12f8ff025ada35b737d3d948eb75ce1b0abf48a5553ecd4f464214e85e70b2a8e0478b2b27905ca93"; }
- { locale = "ms"; arch = "linux-x86_64"; sha512 = "88e28245914f5cdcf745e85c102e2365b017637f1b08048d74a92a5671dd99d605fea1448e6ae1b1ac19346762be63cc3786b79e0399c9966b915f4d1b2bbd51"; }
- { locale = "nb-NO"; arch = "linux-i686"; sha512 = "ec8f67a63cf22401f99c8c1724ddbf18c281780cd6b8b4b872941ec932150c532e04e39f49531e8fed05a3ef29228292b957e05abec99a348d1e91f4b30d1fc9"; }
- { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "72cb3b2cc2da91ea8b8222f332f4115f87455913abd99fe3b8ca0a290881ad35c5d9e08e5352e380550c6f6775e6e03269f65498887e03c349ab63369101f3a2"; }
- { locale = "nl"; arch = "linux-i686"; sha512 = "0cfa7d042bc73e1027a2ac51b87d1f62730b04dad8f87dbd93252c3a11ac3082bbf837cd6b98b1b85a032f638d9d9a400599c9fbd17b565ecff5adaf8ee5b443"; }
- { locale = "nl"; arch = "linux-x86_64"; sha512 = "03456fbfb93971264e75ea2a5db9511610a26269e2d3d31bd25e57133a605d7dc12a8a779f2dd215beaea8a1c93d4f7e6642eed0968d4a99e2b6ace5a1a95b50"; }
- { locale = "nn-NO"; arch = "linux-i686"; sha512 = "97951fc2eb41eb89740bf1512db62d26e6ff7b2244e68fde834d2818dc8fea61557f12f6a18f871b509e4d3c1f4f1db2fae53b8da5b87cb0ee93ab44b9e2555e"; }
- { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "f0b9aa2f67ddced02ebc4e90e91777799f8fa455313132d3e686c26705446321515caa0ca148f0969c1a5e0ee8b7b005630ba76d4bbd6437eacfcdf581e0c0cd"; }
- { locale = "or"; arch = "linux-i686"; sha512 = "97333fecf4097ad57c117bd7228037c7b4ef4c5e7d713801f468c951994d3c1ee65c58351ee4dcb7f3ffd193ce05e67d6502b560f8d39f92b9da185dbd322fd9"; }
- { locale = "or"; arch = "linux-x86_64"; sha512 = "4714229f654ec610d0ed3ec88f4d55f60de72e67524e6e572279bfa2dd433bf68486f0d0498ee4227bd687d55ac38914ae8b595cae676aab2508ef4790f4fbe7"; }
- { locale = "pa-IN"; arch = "linux-i686"; sha512 = "4ee507e28cc5069824a1386fd7d28b7f65a634f1ebd8f3c3387c2753c193fd8059221923504a4032ec07c3fecdcb5a15ac1b2dcdb73307fed357c0d9af8b4437"; }
- { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "9f1cb5dc4128547bff4bdbc1dc48ca505f1b16dc3e6b42afe5685b9b3659d7e540801a1e71a46a0bdaf2c3476b75b898f6a0ac907cb0f99e425b517b08cdaab0"; }
- { locale = "pl"; arch = "linux-i686"; sha512 = "692eca157eccad4392f241d56644806abd2a183dc809480db7d5aa1482d6034b2e367ee382984fb7621cb4ed794c200b3db55c052e1a0f6f01306fd02f3efc14"; }
- { locale = "pl"; arch = "linux-x86_64"; sha512 = "635ffa536d4309da36beee2829d665a9bbef2e2ced5003632c982c0cfca776eae1b2b5be03ae6b59cdb8b22966b2866c8346acb75c49fb47e6ea39c576530817"; }
- { locale = "pt-BR"; arch = "linux-i686"; sha512 = "18b8c00f31dd3af18f9aa8ee5ebd28a533830844484ecc373c6477c7d862e8e512b52c5de80c6cfdfd70ff9942593b2d9ee13e03d17f7e2088e550e519e216a6"; }
- { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "70e01c566b9344a51f2c893e3fa437d65a7930b571a87213fc4371af818c036612f79ad687fc6e0e52397529a5b173aedbccbcc948c7a816786d4ebdefd4438a"; }
- { locale = "pt-PT"; arch = "linux-i686"; sha512 = "e5628b348f9aa98bb831628016360b15cb265b749451017fe0e0c09b10355be80a4358442d53e4e18972ea426f8fc90350587859bdcab9c987a1a633abbbdb9d"; }
- { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "f5ec3e50559608c77f0f96db27e7b32ed26965599489cccd8e49a15665b1d33d3628f2220e9af6d22969183a50d8c7d7cfb7cef208a277d74386bb284413ac87"; }
- { locale = "rm"; arch = "linux-i686"; sha512 = "e1c64a105a4a44e8de276cf5d4e7592f4558663981f57277702b112caf0c1f212325932d048dbaba4c593caee52b7932377bd9024bdaa1615107e8b5546d8ea1"; }
- { locale = "rm"; arch = "linux-x86_64"; sha512 = "0e06044ea7869f0e00e0a6bf99c1f2c6bd04a9d87823dbfa8387defa11d479f44e225ee839cbfaf93fa1d45680bd6803620bb7256574ed94522a319a8f1ba5e4"; }
- { locale = "ro"; arch = "linux-i686"; sha512 = "9a514be28ac95c17b6694bdcb0243ba772363d9b333420af82be70b947b200177f500e2e3ddb9f010932b9ee0b7271568a6f3ed0bbcadaa904d650e0001f1b96"; }
- { locale = "ro"; arch = "linux-x86_64"; sha512 = "06e10fbdf4ad4c9c13e62c817bc94b9b3522d8b625c65d273f77cf44658b74419ed37ec84453158f136a1597445bbbaaa7cd8d6bda3ed21ddb7c1ceb2420a17e"; }
- { locale = "ru"; arch = "linux-i686"; sha512 = "a443e644552326a85895dc6368f91365163342fca8bf6a467496c41bbc2d0934476a5b0be9ae079e7d260a1930a53595f054b1778563b20557de300db383b100"; }
- { locale = "ru"; arch = "linux-x86_64"; sha512 = "f85745244798c0eff4f603a72fdf44d20812614793b7697add27ef06f55a57eb21ec21ec8a7a6ee3228228d6d0ea52f43d6bdac8f88ea310f1561af0381b3ba1"; }
- { locale = "si"; arch = "linux-i686"; sha512 = "00d3c6f0fd87ea63ba2bd1870ad422d41a9d984674bb00b07e1c2b60dbe0c24585cc095af68f0728f2bd24af3fc00d5308aa4181d1f4b0460866b26c35b0a187"; }
- { locale = "si"; arch = "linux-x86_64"; sha512 = "aad8a7b45871e8633a85a0a40adc231d9f57315fc93b683c498699f8549c6d14d097922d7b79e96892fbe4e3454be55845994d826f2cf37d877e3445a049a578"; }
- { locale = "sk"; arch = "linux-i686"; sha512 = "c290d2d481e39a2780362b420130b5638e4fc832c09d49e0892f25dc420dea6a3f087a76ed89a5650a8efc7d82d3ec80d0ae3d3ae2e012fe5eb58c18f025bdbc"; }
- { locale = "sk"; arch = "linux-x86_64"; sha512 = "0e64a924486d8c0efb8bed4271a3ef6731f76fc0a7b7e1909215ed2b9635963659427a57342a26b825ce11aa57c2aa54fd75928d27e63dc5bffbce2bc3af75df"; }
- { locale = "sl"; arch = "linux-i686"; sha512 = "2cf452873a756785e1468eeb2f9b2e90567c22895bddfdff40b23e69025abd38e1634358a47bc943335e8516fc2f55b939dd2f3ffcbdddeacd3b1c3d39811c46"; }
- { locale = "sl"; arch = "linux-x86_64"; sha512 = "c89b76f586190b2f3d5141c066691652a193d25841e87ae0e5ff5dd938164b95032e50239354e7842960a4a4e8a3a917c0061717acd9fd36e74e739676935736"; }
- { locale = "son"; arch = "linux-i686"; sha512 = "ff56f55c9716ec5d7af6b1f22da2b3105d62c821010f95333412befed11146e95abf7952b2fa998b444d6b9ec9777e747b139bbfbf79e16c881cb55e0c49f335"; }
- { locale = "son"; arch = "linux-x86_64"; sha512 = "284585a534cb65ef2c3dfb46afd1ab3ff0d9695a553aa4c04caf9487a4f6418b461c872aba2f2e15e6c00010934a7f44424a18ffcafaa76e35d3d2a0d61a7551"; }
- { locale = "sq"; arch = "linux-i686"; sha512 = "3a2cb298bef66314afa54b94205de0c9fae75f6f063462060d3381939f2359255492adfae51f8215807723912d94ad55a99be7ec7fb023b39f79a951ffa19bdc"; }
- { locale = "sq"; arch = "linux-x86_64"; sha512 = "62cbbe10959edb18824fd22729bb7d0615441377a546b745ca287b9c2398d6b4e8c4f6f80eda48efe5e808f1f5327862e7a364f1d837901341317536f952bb69"; }
- { locale = "sr"; arch = "linux-i686"; sha512 = "c367d4b46752b0574d8842ef211e9f9bdbd68a2f14785740f4cbf785ba82b42c33d6092f3abae2c730be12345d629864b719d534a4c07d5cbec311fbf92df19b"; }
- { locale = "sr"; arch = "linux-x86_64"; sha512 = "16263f6414ecc92e4c7cd0e41457f42217c86d9d373c6f5459b4ddf4b0842d20bdf1b7446a80ba59bb9513f745ab7433c504dd0174ff516c34adbcdc4861b5a9"; }
- { locale = "sv-SE"; arch = "linux-i686"; sha512 = "fef1978d41a13c485ca24fcd1358c8421aa6be06730100e66567e6a7021424ffd2c94debd96f6e25cc8d429d7460399e10e346251223b36ee924174bb63aa9b5"; }
- { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "1c8a7506109569c0298b20fb00f2463d4e78ff04d5b41661c5cd758a6bebf63fc2abec6f1cafa89acaab679764897dbe10e5647c3a32efe2b748a06e6d5af342"; }
- { locale = "ta"; arch = "linux-i686"; sha512 = "7060ea65a9a4556bf7b7d438de3a516ca4c20531cc5f3c97d8695f3fbbc94c37060273551a0e04382df84812e170512c143e7f835699e99ca8ef21c50fd47437"; }
- { locale = "ta"; arch = "linux-x86_64"; sha512 = "beca8cf5594e6865510c2873c6f2b8a9fcf68440d9fb75979e72ddaa994ea789e9cc5d5829982abfff5932ca4d1a491da53ccc34b7dee38c3114982fcda169b0"; }
- { locale = "te"; arch = "linux-i686"; sha512 = "e99f01f99eee95ce73af2b818ebedb05414764cf02f3928bbcde6fe3bf03c71a2043b99088af4912b4033453d6a70adee70a7ca583ab5279d9b5ea194137a156"; }
- { locale = "te"; arch = "linux-x86_64"; sha512 = "077e1246824e5ef9b08f83c4589216b9d91e79a6cd8fa7b6da0de9f35807076bf9b29d9e514c58e1437d1a39d32c2ec09eb39176461daec35734d327fddb8a90"; }
- { locale = "th"; arch = "linux-i686"; sha512 = "a1eb5970b00c0472a96fcfba4c1a30d3ea7d383b5547cd8156a547a5725e7ca7b42c45a4c3ee749221af8bec65764498cc0693f778b6fe3e186de0580f8187a1"; }
- { locale = "th"; arch = "linux-x86_64"; sha512 = "73bace49382ba38af87d77a0ec180e0bc2e9c308208dc0ef8d789ba529d7d4c4d97815924279eded4f7438f4f12bb6e7f92c6474b00d1336bd15d5b48ae87935"; }
- { locale = "tr"; arch = "linux-i686"; sha512 = "23ce428ae503c2a9a5471ae84d79b110317d17d59eadbc39aedf3c219285c7c20af7eead04a2de7cb6bd97dea3b9834bf97341f3fe68c79d31a029e547c2d7e6"; }
- { locale = "tr"; arch = "linux-x86_64"; sha512 = "e8a640a5e1dfcb2e118cc20f26ec0bdaca3fde5a9b94cb62b6170a8f0a161ed7d1492cfafd0a5ddbb7f82810c96b589979c31cb98983a9ff26a7f131fc186b99"; }
- { locale = "uk"; arch = "linux-i686"; sha512 = "6f6c3ba54d22f90869a9d045ffcec89ccfef7f80745ad89c8200e0cf3d76bd09d379680440f27aaf50ee5eb7c09d29dafb37416a5d939d6f1b44cd9dcd542b03"; }
- { locale = "uk"; arch = "linux-x86_64"; sha512 = "e41efe76cf15b1b3bb51dd3ec1c4c571ad80dac69962c604ed8b717cb442626c76a5ebb078dba5d2e94cf7381461803504c9a3e313401a1d25addba46b46810a"; }
- { locale = "uz"; arch = "linux-i686"; sha512 = "c5037d8f96f0b1c98c7e93557872f02506abf78dbec0d3041dd69baac73f6928622d4131d3387d79c5e4edc4b37a9c9f29c5c06d891e3ddd8c78ba3b1c3e8a58"; }
- { locale = "uz"; arch = "linux-x86_64"; sha512 = "ee727853b1323a12aebedaae543e18833f1167832baa76c8dc7341d1c50f48751e10c5d3d35c69cf2837cb1cf6fea6162839be045afee22c06ca25833dfc419f"; }
- { locale = "vi"; arch = "linux-i686"; sha512 = "463ef27d81df3f7d3d5cf2362e3d8d5144db2bc7c57b0ccec75bbebdae7ed5e366242bd9202adb47bf785dacf161699fbb619d6c35a8bc6eefdfb15af9c9d257"; }
- { locale = "vi"; arch = "linux-x86_64"; sha512 = "efc8bc04e117ce791d5bf491cb5feb78bd6a9c112221590073ce5a801384049e1279f5e051d8475b960c9f7149175345742dce02fd593a95f1ec83724a1b5fb9"; }
- { locale = "xh"; arch = "linux-i686"; sha512 = "0283091ad6f61f1d6ed547ec841271d6c222bd02ada832bacae0d5b75019e788043abc97ce90bb94ab30b3ec5414911ae45a86a79b4c1e17efb78ec309103fd5"; }
- { locale = "xh"; arch = "linux-x86_64"; sha512 = "1fefd81b65e80705d09612e2fa3996d0a11fbf01c1a49d4ea7769a31b6f89827e1c7acba85c7c5d109387afca5d108f2f2e3f6db36032298c260093687aaf54f"; }
- { locale = "zh-CN"; arch = "linux-i686"; sha512 = "f22c920f0959995c3b0985044e364ff3edf191227f70c339ab6a64e2c02e4d0c11064439cd8a9d04917619f0128585cd46c64d12f4109170ff8b2fec51ba8e3d"; }
- { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "801e25e24fb66d46e650aa5af7ee95999a8410bdac5e8a067192fbef24690f1f0c273ce4836d8cabea637d165cc0a16b2c2f39f4604bf098e3d6cc8e4ea3df07"; }
- { locale = "zh-TW"; arch = "linux-i686"; sha512 = "ee2ca9b3bbae6a889d51d0922932e8bf7f523f8ad28b14647cebe19b5526580271ee87a124977089009ab1ca68d70120363bae76127c90e024567fa3cd9cbef1"; }
- { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "6c53b22c8bf8320a397a4703e9b4568dc955e11e592b216c50e4382bb3dcfdf8810283afc7fe79039d83d5d5ce272d386ba0441472445afdd784a3da9ed61f5d"; }
+ { 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"; }
];
}
diff --git a/pkgs/applications/networking/browsers/firefox-bin/default.nix b/pkgs/applications/networking/browsers/firefox-bin/default.nix
index 90d1d7a1502..7de465292ed 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/default.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/default.nix
@@ -172,6 +172,8 @@ stdenv.mkDerivation {
--suffix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
'';
+ passthru.ffmpegSupport = true;
+
meta = with stdenv.lib; {
description = "Mozilla Firefox, free web browser (binary package)";
homepage = http://www.mozilla.org/firefox/;
diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix
index 0ab5fbb7c5b..a122f067722 100644
--- a/pkgs/applications/networking/browsers/firefox/default.nix
+++ b/pkgs/applications/networking/browsers/firefox/default.nix
@@ -3,7 +3,7 @@
, freetype, fontconfig, file, alsaLib, nspr, nss, libnotify
, yasm, mesa, sqlite, unzip, makeWrapper, pysqlite
, hunspell, libevent, libstartup_notification, libvpx
-, cairo, icu, libpng, jemalloc, libpulseaudio
+, cairo, gstreamer, gst_plugins_base, icu, libpng, jemalloc, libpulseaudio
, enableGTK3 ? false
, debugBuild ? false
, # If you want the resulting program to call itself "Firefox" instead
@@ -39,7 +39,8 @@ common = { pname, version, sha512 }: stdenv.mkDerivation rec {
icu libpng jemalloc
libpulseaudio # only headers are needed
]
- ++ lib.optional enableGTK3 gtk3;
+ ++ lib.optional enableGTK3 gtk3
+ ++ lib.optionals (!passthru.ffmpegSupport) [ gstreamer gst_plugins_base ];
configureFlags =
[ "--enable-application=browser"
@@ -122,7 +123,8 @@ common = { pname, version, sha512 }: stdenv.mkDerivation rec {
passthru = {
inherit gtk nspr version;
isFirefox3Like = true;
- browserName = pname;
+ browserName = "firefox";
+ ffmpegSupport = lib.versionAtLeast version "46.0";
};
};
diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix
index 3372a3891e4..503c52ac7ba 100644
--- a/pkgs/applications/networking/browsers/firefox/wrapper.nix
+++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix
@@ -2,7 +2,7 @@
## various stuff that can be plugged in
, gnash, flashplayer, hal-flash
-, MPlayerPlugin, gecko_mediaplayer, ffmpeg, xorg, libpulseaudio, libcanberra
+, MPlayerPlugin, gecko_mediaplayer, ffmpeg, gst_all, xorg, libpulseaudio, libcanberra
, supportsJDK, jrePlugin, icedtea_web
, trezor-bridge, bluejeans, djview4, adobe-reader
, google_talk_plugin, fribid, gnome3/*.gnome_shell*/
@@ -23,6 +23,7 @@ let
cfg = stdenv.lib.attrByPath [ browserName ] {} config;
enableAdobeFlash = cfg.enableAdobeFlash or false;
enableGnash = cfg.enableGnash or false;
+ ffmpegSupport = browser.ffmpegSupport or false;
jre = cfg.jre or false;
icedtea = cfg.icedtea or false;
@@ -45,11 +46,12 @@ let
++ lib.optional (cfg.enableAdobeReader or false) adobe-reader
++ lib.optional (cfg.enableEsteid or false) esteidfirefoxplugin
);
- libs = [ ffmpeg ]
+ libs = (if ffmpegSupport then [ ffmpeg ] else with gst_all; [ gstreamer gst-plugins-base ])
++ lib.optionals (cfg.enableQuakeLive or false)
(with xorg; [ stdenv.cc libX11 libXxf86dga libXxf86vm libXext libXt alsaLib zlib ])
++ lib.optional (enableAdobeFlash && (cfg.enableAdobeFlashDRM or false)) hal-flash
++ lib.optional (config.pulseaudio or false) libpulseaudio;
+ gst-plugins = with gst_all; [ gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-ffmpeg ];
gtk_modules = [ libcanberra ];
in
@@ -75,7 +77,7 @@ stdenv.mkDerivation {
];
};
- buildInputs = [makeWrapper];
+ buildInputs = [makeWrapper] ++ lib.optionals (!ffmpegSupport) gst-plugins;
buildCommand = ''
if [ ! -x "${browser}/bin/${browserName}" ]
@@ -91,7 +93,8 @@ stdenv.mkDerivation {
--suffix-each GTK_PATH ':' "$gtk_modules" \
--suffix-each LD_PRELOAD ':' "$(cat $(filterExisting $(addSuffix /extra-ld-preload $plugins)))" \
--prefix-contents PATH ':' "$(filterExisting $(addSuffix /extra-bin-path $plugins))" \
- --set MOZ_OBJDIR "$(ls -d "${browser}/lib/${browserName}"*)"
+ --set MOZ_OBJDIR "$(ls -d "${browser}/lib/${browserName}"*)" \
+ ${lib.optionalString (!ffmpegSupport) ''--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH"''}
${ lib.optionalString libtrick
''
diff --git a/pkgs/applications/networking/browsers/lynx/default.nix b/pkgs/applications/networking/browsers/lynx/default.nix
index e7b5ba89db6..0d5d20b6579 100644
--- a/pkgs/applications/networking/browsers/lynx/default.nix
+++ b/pkgs/applications/networking/browsers/lynx/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
};
configureFlags = []
- ++ stdenv.lib.optionals sslSupport [ "--with-ssl=${openssl}" ];
+ ++ stdenv.lib.optionals sslSupport [ "--with-ssl=${openssl.dev}" ];
buildInputs = [ ncurses gzip ];
nativeBuildInputs = [ ncurses ];
diff --git a/pkgs/applications/networking/browsers/w3m/default.nix b/pkgs/applications/networking/browsers/w3m/default.nix
index ae1bf5bffea..27240f90f68 100644
--- a/pkgs/applications/networking/browsers/w3m/default.nix
+++ b/pkgs/applications/networking/browsers/w3m/default.nix
@@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
- configureFlags = "--with-ssl=${openssl} --with-gc=${boehmgc}"
+ configureFlags = "--with-ssl=${openssl.dev} --with-gc=${boehmgc.dev}"
+ optionalString graphicsSupport " --enable-image=${optionalString x11Support "x11,"}fb";
preConfigure = ''
diff --git a/pkgs/applications/networking/cluster/mesos/default.nix b/pkgs/applications/networking/cluster/mesos/default.nix
index 7efd34dee56..89337901f97 100644
--- a/pkgs/applications/networking/cluster/mesos/default.nix
+++ b/pkgs/applications/networking/cluster/mesos/default.nix
@@ -71,7 +71,7 @@ in stdenv.mkDerivation rec {
'' + lib.optionalString stdenv.isLinux ''
substituteInPlace configure.ac \
- --replace /usr/include/libnl3 ${libnl}/include/libnl3
+ --replace /usr/include/libnl3 ${libnl.dev}/include/libnl3
substituteInPlace src/linux/perf.cpp \
--replace '"perf ' '"${perf}/bin/perf '
@@ -94,17 +94,17 @@ in stdenv.mkDerivation rec {
configureFlags = [
"--sbindir=\${out}/bin"
- "--with-apr=${apr}"
- "--with-svn=${subversion}"
+ "--with-apr=${apr.dev}"
+ "--with-svn=${subversion.dev}"
"--with-leveldb=${leveldb}"
"--with-glog=${glog}"
"--with-glog=${glog}"
"--enable-optimize"
"--disable-python-dependency-install"
"--enable-ssl"
- "--with-ssl=${openssl}"
+ "--with-ssl=${openssl.dev}"
"--enable-libevent"
- "--with-libevent=${libevent}"
+ "--with-libevent=${libevent.dev}"
] ++ lib.optionals stdenv.isLinux [
"--with-network-isolator"
];
diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix
index 7895a3b252d..fede69ff574 100644
--- a/pkgs/applications/networking/dropbox/default.nix
+++ b/pkgs/applications/networking/dropbox/default.nix
@@ -20,11 +20,11 @@
let
# NOTE: When updating, please also update in current stable, as older versions stop working
- version = "3.18.1";
+ version = "3.20.1";
sha256 =
{
- "x86_64-linux" = "1qdahr8xzk3zrrv89335l3aa2gfgjn1ymfixj9zgipv34grkjghm";
- "i686-linux" = "015bjkr2dwyac410i398qm1v60rqln539wcj5f25q776haycbcji";
+ "x86_64-linux" = "170xnrxlsadl5iw96276f8l3w687l6n5j5m8z4djsfqqr3lqjxvg";
+ "i686-linux" = "0a7k56ib2qp5560wmbk7b30pqf7h9h7rjnq850993gn9lfwz81q2";
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
arch =
diff --git a/pkgs/applications/networking/ids/daq/default.nix b/pkgs/applications/networking/ids/daq/default.nix
index e0c40280bce..9f11290fdb1 100644
--- a/pkgs/applications/networking/ids/daq/default.nix
+++ b/pkgs/applications/networking/ids/daq/default.nix
@@ -1,12 +1,12 @@
{stdenv, fetchurl, flex, bison, libpcap, libdnet, libnfnetlink, libnetfilter_queue}:
stdenv.mkDerivation rec {
- name = "daq-2.0.5";
+ name = "daq-2.0.6";
src = fetchurl {
name = "${name}.tar.gz";
- url = "mirror://sourceforge/snort/${name}.tar.gz";
- sha256 = "0vdwb0r9kdlgj4g0i0swafbc7qik0zmks17mhqji8cl7hpdva13p";
+ url = "https://snort.org/downloads/archive/snort/${name}.tar.gz";
+ sha256 = "1jz7gc9n6sr677ssv61qvcxybdrmsll4z7g6hsmax2p0fc91s3ml";
};
buildInputs = [ flex bison libpcap libdnet libnfnetlink libnetfilter_queue];
diff --git a/pkgs/applications/networking/ids/snort/default.nix b/pkgs/applications/networking/ids/snort/default.nix
index a55b80df2b2..2904f50d6fc 100644
--- a/pkgs/applications/networking/ids/snort/default.nix
+++ b/pkgs/applications/networking/ids/snort/default.nix
@@ -1,13 +1,13 @@
{stdenv, fetchurl, libpcap, pcre, libdnet, daq, zlib, flex, bison, makeWrapper}:
stdenv.mkDerivation rec {
- version = "2.9.7.2";
+ version = "2.9.8.2";
name = "snort-${version}";
src = fetchurl {
name = "${name}.tar.gz";
- url = "mirror://sourceforge/snort/${name}.tar.gz";
- sha256 = "1gmlrh9ygpd5h6nnrr4090wk5n2yq2yrvwi7q6xbm6lxj4rcamyv";
+ url = "https://snort.org/downloads/archive/snort/${name}.tar.gz";
+ sha256 = "0cwk02jan0vw6r3jl3vrf31vfp7i4c1r4yhb42h4gyhd6lnh2xa0";
};
buildInputs = [ makeWrapper libpcap pcre libdnet daq zlib flex bison ];
diff --git a/pkgs/applications/networking/instant-messengers/baresip/default.nix b/pkgs/applications/networking/instant-messengers/baresip/default.nix
index 782c801356e..acc0ddd43d3 100644
--- a/pkgs/applications/networking/instant-messengers/baresip/default.nix
+++ b/pkgs/applications/networking/instant-messengers/baresip/default.nix
@@ -4,11 +4,11 @@
, gsm, speex, portaudio, spandsp, libuuid
}:
stdenv.mkDerivation rec {
- version = "0.4.18";
+ version = "0.4.19";
name = "baresip-${version}";
src=fetchurl {
url = "http://www.creytiv.com/pub/baresip-${version}.tar.gz";
- sha256 = "1qgmw0261y89zka9dgqzvirfk3bg8p5b929vqm1418859mw9i87a";
+ sha256 = "1ldh3sc4n19vsjfc1f3kbrin7djb1z6y1rkisc5f6zjx4bd6535v";
};
buildInputs = [zlib openssl libre librem pkgconfig
cairo mpg123 gstreamer gst_ffmpeg gst_plugins_base gst_plugins_bad gst_plugins_good
diff --git a/pkgs/applications/networking/instant-messengers/centerim/default.nix b/pkgs/applications/networking/instant-messengers/centerim/default.nix
index 54e2d813be8..d6921e1082b 100644
--- a/pkgs/applications/networking/instant-messengers/centerim/default.nix
+++ b/pkgs/applications/networking/instant-messengers/centerim/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
buildInputs = [ openssl curl ncurses libjpeg ]
++ stdenv.lib.optional withGpg gpgme;
- configureFlags = [ "--with-openssl=${openssl}" ];
+ configureFlags = [ "--with-openssl=${openssl.dev}" ];
meta = {
homepage = http://www.centerim.org/;
diff --git a/pkgs/applications/networking/instant-messengers/discord/default.nix b/pkgs/applications/networking/instant-messengers/discord/default.nix
index 0d6e6d40284..71382558d3c 100644
--- a/pkgs/applications/networking/instant-messengers/discord/default.nix
+++ b/pkgs/applications/networking/instant-messengers/discord/default.nix
@@ -2,9 +2,9 @@
, alsaLib, atk, cairo, cups, dbus, expat, fontconfig, freetype, gdk_pixbuf
, glib, gnome, gtk, libnotify, libX11, libXcomposite, libXcursor, libXdamage
, libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, nspr, nss, pango
-, libudev }:
+, libudev, libXScrnSaver }:
-let version = "0.0.3"; in
+let version = "0.0.8"; in
stdenv.mkDerivation {
@@ -12,14 +12,14 @@ stdenv.mkDerivation {
src = fetchurl {
url = "https://cdn-canary.discordapp.com/apps/linux/${version}/discord-canary-${version}.tar.gz";
- sha256 = "1k1mnfkcx7183qbdc4qx1anngddqim969cribg9gzc7mixvj17ca";
+ sha256 = "1g48jxiswpfvbgjs4dyywmzj9kncvrgpajhixk3acizdmfmsyqkk";
};
libPath = stdenv.lib.makeLibraryPath [
stdenv.cc.cc alsaLib atk cairo cups dbus expat fontconfig freetype
gdk_pixbuf glib gnome.GConf gtk libnotify libX11 libXcomposite
libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender
- libXtst nspr nss pango libudev.out
+ libXtst nspr nss pango libudev.out libXScrnSaver
];
installPhase = ''
diff --git a/pkgs/applications/networking/instant-messengers/ekiga/default.nix b/pkgs/applications/networking/instant-messengers/ekiga/default.nix
index da6bf44ced1..9c7204b7fa1 100644
--- a/pkgs/applications/networking/instant-messengers/ekiga/default.nix
+++ b/pkgs/applications/networking/instant-messengers/ekiga/default.nix
@@ -26,8 +26,8 @@ stdenv.mkDerivation rec {
'';
configureFlags = [
- "--with-ldap-dir=${openldap}"
- "--with-libsasl2-dir=${cyrus_sasl}"
+ "--with-ldap-dir=${openldap.dev}"
+ "--with-libsasl2-dir=${cyrus_sasl.dev}"
"--with-boost-libdir=${boost.out}/lib"
"--disable-gconf"
];
diff --git a/pkgs/applications/networking/instant-messengers/hipchat/default.nix b/pkgs/applications/networking/instant-messengers/hipchat/default.nix
index 4940acfe811..a5a6e2b688a 100644
--- a/pkgs/applications/networking/instant-messengers/hipchat/default.nix
+++ b/pkgs/applications/networking/instant-messengers/hipchat/default.nix
@@ -4,7 +4,7 @@
let
- version = "4.0.1637";
+ version = "4.0.1641";
rpath = stdenv.lib.makeLibraryPath [
xdg_utils
@@ -43,7 +43,7 @@ let
if stdenv.system == "x86_64-linux" then
fetchurl {
url = "https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/pool/HipChat4-${version}-Linux.deb";
- sha256 = "043qcylqzkzgmlhhxnhm5wy3gvh2cyhjmxnnrrz7y183ji6rw6nd";
+ sha256 = "15xy89qmldp1zs3f809b8sayvawc7sz24l0718iib83g5jzvivsm";
}
else
throw "HipChat is not supported on ${stdenv.system}";
diff --git a/pkgs/applications/networking/instant-messengers/linphone/default.nix b/pkgs/applications/networking/instant-messengers/linphone/default.nix
index c894a49c20e..781d10cbc4f 100644
--- a/pkgs/applications/networking/instant-messengers/linphone/default.nix
+++ b/pkgs/applications/networking/instant-messengers/linphone/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
configureFlags = [
"--enable-ldap"
- "--with-ffmpeg=${ffmpeg}"
+ "--with-ffmpeg=${ffmpeg.dev}"
"--with-polarssl=${polarssl}"
"--enable-lime"
"--enable-external-ortp"
diff --git a/pkgs/applications/networking/instant-messengers/mcabber/default.nix b/pkgs/applications/networking/instant-messengers/mcabber/default.nix
index f32bdf96257..df1d0ee5e78 100644
--- a/pkgs/applications/networking/instant-messengers/mcabber/default.nix
+++ b/pkgs/applications/networking/instant-messengers/mcabber/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
buildInputs = [ openssl ncurses pkgconfig glib loudmouth libotr gpgme ];
- configureFlags = "--with-openssl=${openssl} --enable-modules --enable-otr";
+ configureFlags = "--with-openssl=${openssl.dev} --enable-modules --enable-otr";
doCheck = true;
diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-latex/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-latex/default.nix
index 4a5522039c8..41a1ea3c3e7 100644
--- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-latex/default.nix
+++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-latex/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
'';
passthru = {
- wrapArgs = "--prefix PATH ':' ${texLive}/bin:${imagemagick}/bin";
+ wrapArgs = "--prefix PATH ':' ${texLive}/bin:${imagemagick.out}/bin";
};
meta = with stdenv.lib; {
diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/telegram-purple/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/telegram-purple/default.nix
index b04673a5d6a..8cce3fae1bb 100644
--- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/telegram-purple/default.nix
+++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/telegram-purple/default.nix
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
src = fetchgit {
url = "https://github.com/majn/telegram-purple";
rev = "ee2a6fb740fe9580336e4af9a153b845bc715927";
- sha256 = "10y99rclxbpbmmyiapn4vk1d7yjwmg7v1wb4jlz678qkvcni3nv7";
+ sha256 = "0pxaj95b6nzy73dckpr3v4nljyijkx71vmnp9dcj48d22pvy0nyf";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/applications/networking/instant-messengers/silc-client/default.nix b/pkgs/applications/networking/instant-messengers/silc-client/default.nix
index b765c97fb8e..df85c55dbee 100644
--- a/pkgs/applications/networking/instant-messengers/silc-client/default.nix
+++ b/pkgs/applications/networking/instant-messengers/silc-client/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
hardeningDisable = [ "format" ];
- configureFlags = "--with-ncurses=${ncurses}";
+ configureFlags = "--with-ncurses=${ncurses.dev}";
preConfigure = stdenv.lib.optionalString enablePlugin ''
configureFlags="$configureFlags --with-silc-plugin=$out/lib/irssi"
diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
index 37c0fd6a175..5d2cc9fa155 100644
--- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
@@ -1,7 +1,7 @@
{ stdenv, lib, fetchFromGitHub, fetchgit, qtbase, qtimageformats
, breakpad, ffmpeg, openalSoft, openssl, zlib, libexif, lzma, libopus
, gtk2, glib, cairo, pango, gdk_pixbuf, atk, libappindicator-gtk2
-, libunity, dee, libdbusmenu-glib, libva, qmakeHook
+, libwebp, libunity, dee, libdbusmenu-glib, libva
, pkgconfig, libxcb, xcbutilwm, xcbutilimage, xcbutilkeysyms
, libxkbcommon, libpng, libjpeg, freetype, harfbuzz, pcre16
@@ -12,30 +12,30 @@ let
system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64;
in stdenv.mkDerivation rec {
name = "telegram-desktop-${version}";
- version = "0.9.44";
+ version = "0.9.49";
qtVersion = lib.replaceStrings ["."] ["_"] qtbase.version;
src = fetchFromGitHub {
owner = "telegramdesktop";
repo = "tdesktop";
rev = "v${version}";
- sha256 = "0ydd5yhy2nq4n6x59ajb6c4d0blyj6gm7hkx4hfrx2a88iksc5rm";
+ sha256 = "1smz0d07xcpv7kv5v739b5a8wrgv5fx0wy15d3zzm3s69418a6nc";
};
tgaur = fetchgit {
url = "https://aur.archlinux.org/telegram-desktop.git";
rev = "f8907d1ccaf8345c06232238342921213270e3d8";
- sha256 = "1fsp098ykpf5gynn3lq3qcj3a47bkjfr0l96pymmmfd4a2s1690v";
+ sha256 = "04jh0fsrh4iwg188d20z15qkxv05wa5lpd8h21yxx3jxqljpdkws";
};
buildInputs = [
breakpad ffmpeg openalSoft openssl zlib libexif lzma libopus
gtk2 glib libappindicator-gtk2 libunity cairo pango gdk_pixbuf atk
- dee libdbusmenu-glib libva qtbase qmakeHook
+ dee libdbusmenu-glib libva
# Qt dependencies
libxcb xcbutilwm xcbutilimage xcbutilkeysyms libxkbcommon
libpng libjpeg freetype harfbuzz pcre16 xproto libX11
- inputproto sqlite dbus
+ inputproto sqlite dbus libwebp
];
nativeBuildInputs = [ pkgconfig ];
@@ -46,14 +46,14 @@ in stdenv.mkDerivation rec {
"CONFIG+=release"
"DEFINES+=TDESKTOP_DISABLE_AUTOUPDATE"
"DEFINES+=TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME"
- "INCLUDEPATH+=${gtk2}/include/gtk-2.0"
- "INCLUDEPATH+=${glib}/include/glib-2.0"
+ "INCLUDEPATH+=${gtk2.dev}/include/gtk-2.0"
+ "INCLUDEPATH+=${glib.dev}/include/glib-2.0"
"INCLUDEPATH+=${glib.out}/lib/glib-2.0/include"
- "INCLUDEPATH+=${cairo}/include/cairo"
- "INCLUDEPATH+=${pango}/include/pango-1.0"
+ "INCLUDEPATH+=${cairo.dev}/include/cairo"
+ "INCLUDEPATH+=${pango.dev}/include/pango-1.0"
"INCLUDEPATH+=${gtk2.out}/lib/gtk-2.0/include"
- "INCLUDEPATH+=${gdk_pixbuf}/include/gdk-pixbuf-2.0"
- "INCLUDEPATH+=${atk}/include/atk-1.0"
+ "INCLUDEPATH+=${gdk_pixbuf.dev}/include/gdk-pixbuf-2.0"
+ "INCLUDEPATH+=${atk.dev}/include/atk-1.0"
"INCLUDEPATH+=${libappindicator-gtk2}/include/libappindicator-0.1"
"INCLUDEPATH+=${libunity}/include/unity"
"INCLUDEPATH+=${dee}/include/dee-1.0"
@@ -61,44 +61,27 @@ in stdenv.mkDerivation rec {
"INCLUDEPATH+=${breakpad}/include/breakpad"
"LIBS+=-lcrypto"
"LIBS+=-lssl"
- "LIBS+=-lz"
- "LIBS+=-lgobject-2.0"
- "LIBS+=-lxkbcommon"
- "LIBS+=-lX11"
- "LIBS+=${breakpad}/lib/libbreakpad_client.a"
- "LIBS+=./../../../Libraries/QtStatic/qtbase/plugins/platforms/libqxcb.a"
- "LIBS+=./../../../Libraries/QtStatic/qtimageformats/plugins/imageformats/libqwebp.a"
];
qtSrcs = qtbase.srcs ++ [ qtimageformats.src ];
qtPatches = qtbase.patches;
- dontUseQmakeConfigure = true;
-
buildCommand = ''
unpackPhase
cd "$sourceRoot"
+
patchPhase
sed -i 'Telegram/Telegram.pro' \
- -e 's/CUSTOM_API_ID//g' \
+ -e 's,CUSTOM_API_ID,,g' \
+ -e "s,/usr/local/tdesktop/Qt-[^/]*,$PWD/../qt,g" \
-e 's,/usr,/does-not-exist,g' \
-e '/LIBS += .*libxkbcommon.a/d' \
- -e '/LIBS += .*libz.a/d' \
- -e '/LIBS += .*libbreakpad_client.a/d' \
- -e 's,-flto ,,g'
- echo "Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)" >> Telegram/SourceFiles/stdafx.cpp
-
- ( mkdir -p Linux/DebugIntermediateStyle
- cd Linux/DebugIntermediateStyle
- qmake CONFIG+=debug ../../Telegram/MetaStyle.pro
- buildPhase
- )
- ( mkdir -p Linux/DebugIntermediateLang
- cd Linux/DebugIntermediateLang
- qmake CONFIG+=debug ../../Telegram/MetaLang.pro
- buildPhase
- )
+ -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'
+ export QMAKE=$PWD/../qt/bin/qmake
( mkdir -p ../Libraries
cd ../Libraries
for i in $qtSrcs; do
@@ -108,37 +91,56 @@ in stdenv.mkDerivation rec {
mv qtbase-opensource-src-* ./QtStatic/qtbase
mv qtimageformats-opensource-src-* ./QtStatic/qtimageformats
cd QtStatic/qtbase
- patch -p1 < ../../../$sourceRoot/Telegram/_qtbase_${qtVersion}_patch.diff
+ patch -p1 < ../../../$sourceRoot/Telegram/Patches/qtbase_${qtVersion}.diff
cd ..
for i in $qtPatches; do
patch -p1 < $i
done
${qtbase.postPatch}
- export configureFlags="-prefix "../../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 \
${lib.optionalString (!system-x86_64) "-no-sse2"} -no-sse3 -no-ssse3 \
-no-sse4.1 -no-sse4.2 -no-avx -no-avx2 -no-mips_dsp -no-mips_dspr2"
export dontAddPrefix=1
- export buildFlags="module-qtbase module-qtimageformats"
- export installFlags="module-qtbase-install_subtargets module-qtimageformats-install_subtargets"
+ export MAKEFLAGS=-j$NIX_BUILD_CORES
- ( export MAKEFLAGS=-j$NIX_BUILD_CORES
+ ( cd qtbase
configurePhase
+ buildPhase
+ make install
)
+
+ ( cd qtimageformats
+ $QMAKE
+ buildPhase
+ make install
+ )
+ )
+
+ ( mkdir -p Linux/obj/codegen_style/Debug
+ cd Linux/obj/codegen_style/Debug
+ $QMAKE CONFIG+=debug ../../../../Telegram/build/qmake/codegen_style/codegen_style.pro
+ buildPhase
+ )
+ ( mkdir -p Linux/obj/codegen_numbers/Debug
+ cd Linux/obj/codegen_numbers/Debug
+ $QMAKE CONFIG+=debug ../../../../Telegram/build/qmake/codegen_numbers/codegen_numbers.pro
+ buildPhase
+ )
+ ( mkdir -p Linux/DebugIntermediateLang
+ cd Linux/DebugIntermediateLang
+ $QMAKE CONFIG+=debug ../../Telegram/MetaLang.pro
buildPhase
- installPhase
)
( mkdir -p Linux/ReleaseIntermediate
cd Linux/ReleaseIntermediate
- qmake $qmakeFlags ../../Telegram/Telegram.pro
+ $QMAKE $qmakeFlags ../../Telegram/Telegram.pro
pattern="^PRE_TARGETDEPS +="
grep "$pattern" "../../Telegram/Telegram.pro" | sed "s/$pattern//g" | xargs make
-
- qmake $qmakeFlags ../../Telegram/Telegram.pro
buildPhase
)
@@ -158,6 +160,6 @@ in stdenv.mkDerivation rec {
license = licenses.gpl3;
platforms = platforms.linux;
homepage = "https://desktop.telegram.org/";
- maintainers = with maintainers; [ abbradar ];
+ maintainers = with maintainers; [ abbradar garbas ];
};
}
diff --git a/pkgs/applications/networking/instant-messengers/twinkle/default.nix b/pkgs/applications/networking/instant-messengers/twinkle/default.nix
index b096023eaa4..90528b35140 100644
--- a/pkgs/applications/networking/instant-messengers/twinkle/default.nix
+++ b/pkgs/applications/networking/instant-messengers/twinkle/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
./boost_regex.patch # modified not to use "-mt" suffix
];
- configureFlags = "--with-extra-includes=${libjpeg}/include";
+ configureFlags = "--with-extra-includes=${libjpeg.dev}/include";
buildInputs =
[ pkgconfig autoreconfHook commoncpp2 openssl boost libsndfile
diff --git a/pkgs/applications/networking/instant-messengers/utox/default.nix b/pkgs/applications/networking/instant-messengers/utox/default.nix
index c49a9805b6a..8fd653534e2 100644
--- a/pkgs/applications/networking/instant-messengers/utox/default.nix
+++ b/pkgs/applications/networking/instant-messengers/utox/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "utox-${version}";
- version = "0.7.0";
+ version = "0.9.0";
src = fetchFromGitHub {
owner = "GrayHatter";
repo = "uTox";
rev = "v${version}";
- sha256 = "1md8fw6zqd3giskd89i56dgrsl83vn27xwr8k22263wkj1fxxw4c";
+ sha256 = "12l2821m4r8p3vmsqhqhfj60yhkl4w4xfy73cvy73qqw6xf2yam1";
};
buildInputs = [ pkgconfig libtoxcore-dev dbus libvpx libX11 openal freetype
diff --git a/pkgs/applications/networking/irc/wraith/default.nix b/pkgs/applications/networking/irc/wraith/default.nix
index f36bbc00064..4484178a6d5 100644
--- a/pkgs/applications/networking/irc/wraith/default.nix
+++ b/pkgs/applications/networking/irc/wraith/default.nix
@@ -16,7 +16,7 @@ mkDerivation rec {
substituteInPlace src/libssl.cc --subst-var-by openssl ${openssl}
substituteInPlace src/libcrypto.cc --subst-var-by openssl ${openssl}
'';
- configureFlags = "--with-openssl=${openssl}";
+ configureFlags = "--with-openssl=${openssl.dev}";
installPhase = ''
mkdir -p $out/bin
cp -a wraith $out/bin/wraith
diff --git a/pkgs/applications/networking/mailreaders/alpine/default.nix b/pkgs/applications/networking/mailreaders/alpine/default.nix
index b86de98f950..c4cd3b9ad53 100644
--- a/pkgs/applications/networking/mailreaders/alpine/default.nix
+++ b/pkgs/applications/networking/mailreaders/alpine/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
hardeningDisable = [ "format" "fortify" ];
configureFlags = [
- "--with-ssl-include-dir=${openssl}/include/openssl"
+ "--with-ssl-include-dir=${openssl.dev}/include/openssl"
"--with-tcl-lib=${tcl.libPrefix}"
];
diff --git a/pkgs/applications/networking/mailreaders/realpine/default.nix b/pkgs/applications/networking/mailreaders/realpine/default.nix
index 3ff690a244b..7ba582cdb5d 100644
--- a/pkgs/applications/networking/mailreaders/realpine/default.nix
+++ b/pkgs/applications/networking/mailreaders/realpine/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
hardeningDisable = [ "format" ];
configureFlags = [
- "--with-ssl-include-dir=${openssl}/include/openssl"
+ "--with-ssl-include-dir=${openssl.dev}/include/openssl"
"--with-tcl-lib=${tcl.libPrefix}"
];
diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
index d67bf085481..cd919566138 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
@@ -13,7 +13,7 @@
enableOfficialBranding ? false
}:
-let version = "45.0"; in
+let version = "45.1.0"; in
let verName = "${version}"; in
stdenv.mkDerivation rec {
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://mozilla/thunderbird/releases/${verName}/source/thunderbird-${verName}.source.tar.xz";
- sha256 = "0rynfyxgpvfla17zniaq84slc02kg848qawkjmdbnv74y6bkhs8m";
+ sha256 = "0293cwnqj4ys629ra87577c7snv4p8x2nbs1kzcnjpc96vjypsca";
};
buildInputs = # from firefox30Pkgs.xulrunner, without gstreamer and libvpx
diff --git a/pkgs/applications/networking/newsreaders/slrn/default.nix b/pkgs/applications/networking/newsreaders/slrn/default.nix
index dcfadbfa05f..f29493beb00 100644
--- a/pkgs/applications/networking/newsreaders/slrn/default.nix
+++ b/pkgs/applications/networking/newsreaders/slrn/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
-e "s|/bin/rm|rm|"
'';
- configureFlags = "--with-slang=${slang} --with-ssl=${openssl}";
+ configureFlags = "--with-slang=${slang.dev} --with-ssl=${openssl.dev}";
buildInputs = [ slang ncurses openssl ];
diff --git a/pkgs/applications/networking/p2p/transmission/default.nix b/pkgs/applications/networking/p2p/transmission/default.nix
index 24b7a50b032..b85970df4b4 100644
--- a/pkgs/applications/networking/p2p/transmission/default.nix
+++ b/pkgs/applications/networking/p2p/transmission/default.nix
@@ -21,8 +21,10 @@ stdenv.mkDerivation rec {
++ optionals enableGTK3 [ gtk3 makeWrapper ]
++ optional stdenv.isLinux systemd;
- preConfigure = ''
- sed -i -e 's|/usr/bin/file|${file}/bin/file|g' configure
+ postPatch = ''
+ substituteInPlace ./configure \
+ --replace "libsystemd-daemon" "libsystemd" \
+ --replace "/usr/bin/file" "${file}/bin/file"
'';
configureFlags = [ "--with-systemd-daemon" ]
diff --git a/pkgs/applications/networking/remote/rdesktop/default.nix b/pkgs/applications/networking/remote/rdesktop/default.nix
index 2e844fdeab4..dd9ca18cb1d 100644
--- a/pkgs/applications/networking/remote/rdesktop/default.nix
+++ b/pkgs/applications/networking/remote/rdesktop/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation (rec {
buildInputs = [openssl libX11];
configureFlags = [
- "--with-openssl=${openssl}"
+ "--with-openssl=${openssl.dev}"
"--disable-credssp"
"--disable-smartcard"
];
diff --git a/pkgs/applications/networking/remote/remmina/default.nix b/pkgs/applications/networking/remote/remmina/default.nix
index 8304f6dc091..6257c5f95eb 100644
--- a/pkgs/applications/networking/remote/remmina/default.nix
+++ b/pkgs/applications/networking/remote/remmina/default.nix
@@ -38,7 +38,7 @@ stdenv.mkDerivation {
mkdir -pv $out/share/icons
cp ${desktopItem}/share/applications/* $out/share/applications
cp -r $out/share/remmina/icons/* $out/share/icons
- wrapProgram $out/bin/remmina --prefix LD_LIBRARY_PATH : "${libX11}/lib"
+ wrapProgram $out/bin/remmina --prefix LD_LIBRARY_PATH : "${libX11.out}/lib"
'';
meta = with stdenv.lib; {
diff --git a/pkgs/applications/networking/remote/x2goclient/default.nix b/pkgs/applications/networking/remote/x2goclient/default.nix
index 09d4cf8dac5..02a25b9a270 100644
--- a/pkgs/applications/networking/remote/x2goclient/default.nix
+++ b/pkgs/applications/networking/remote/x2goclient/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, cups, libssh, libXpm, nxproxy, openldap, makeWrapper, qt4, qmake4Hook }:
+{ stdenv, fetchurl, cups, libssh, libXpm, nxproxy, openldap, makeWrapper, qt4 }:
stdenv.mkDerivation rec {
name = "x2goclient-${version}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [ cups libssh libXpm nxproxy openldap qt4 ];
- nativeBuildInputs = [ makeWrapper qmake4Hook ];
+ nativeBuildInputs = [ makeWrapper ];
patchPhase = ''
substituteInPlace Makefile \
@@ -19,9 +19,7 @@ stdenv.mkDerivation rec {
--replace "-o root -g root" ""
'';
- preConfigure = ''
- qmakeFlags="$qmakeFlags ETCDIR=$out/etc"
- '';
+ makeFlags = [ "PREFIX=$(out)" "ETCDIR=$(out)/etc" ];
enableParallelBuilding = true;
diff --git a/pkgs/applications/networking/sipcmd/default.nix b/pkgs/applications/networking/sipcmd/default.nix
index e45f8c4f84c..4c8a90137bd 100644
--- a/pkgs/applications/networking/sipcmd/default.nix
+++ b/pkgs/applications/networking/sipcmd/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, opal, ptlib }:
+{ stdenv, fetchFromGitHub, opal, ptlib }:
stdenv.mkDerivation rec {
@@ -6,9 +6,10 @@ stdenv.mkDerivation rec {
name = "sipcmd-${rev}";
- src = fetchgit {
- url = "https://github.com/tmakkonen/sipcmd";
- rev = "${rev}";
+ src = fetchFromGitHub {
+ repo = "sipcmd";
+ owner = "tmakkonen";
+ inherit rev;
sha256 = "072h9qapmz46r8pxbzkfmc4ikd7dv9g8cgrfrw21q942icbrvq2c";
};
@@ -25,7 +26,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = https://github.com/tmakkonen/sipcmd;
- description = "sipcmd - the command line SIP/H.323/RTP softphone";
+ description = "The command line SIP/H.323/RTP softphone";
platforms = with stdenv.lib.platforms; linux;
};
}
diff --git a/pkgs/applications/networking/sniffers/wireshark/default.nix b/pkgs/applications/networking/sniffers/wireshark/default.nix
index 59ded4b3b9a..0febee72096 100644
--- a/pkgs/applications/networking/sniffers/wireshark/default.nix
+++ b/pkgs/applications/networking/sniffers/wireshark/default.nix
@@ -11,7 +11,7 @@ assert withQt -> !withGtk && qt4 != null;
with stdenv.lib;
let
- version = "2.0.2";
+ version = "2.0.3";
variant = if withGtk then "gtk" else if withQt then "qt" else "cli";
in
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.bz2";
- sha256 = "1hdrnsllkfbvfwsvlqvvky0z91q63mbbnjcri56nb9c5403zn8g9";
+ sha256 = "1z358k65frp9m0l07cppwxhvbcp1w9ya5sml87pzs8gyfmp3g5p1";
};
buildInputs = [
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
new file mode 100644
index 00000000000..3de4133e794
--- /dev/null
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -0,0 +1,40 @@
+{ stdenv, fetchgit, go }:
+
+stdenv.mkDerivation rec {
+ version = "0.13.4";
+ name = "syncthing-${version}";
+
+ src = fetchgit {
+ url = https://github.com/syncthing/syncthing;
+ rev = "refs/tags/v${version}";
+ sha256 = "0aa0nqi0gmka5r5dzph4g51jlsy7w5q4ri8f4gy3qnma4pgp7pg2";
+ };
+
+ buildInputs = [ go ];
+
+ buildPhase = ''
+ 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
+
+ go run build.go -no-upgrade -version v${version} install all
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp bin/* $out/bin
+ '';
+
+ meta = {
+ homepage = https://www.syncthing.net/;
+ description = "Open Source Continuous File Synchronization";
+ license = stdenv.lib.licenses.mpl20;
+ maintainers = with stdenv.lib.maintainers; [pshendry];
+ platforms = with stdenv.lib.platforms; linux ++ freebsd ++ openbsd ++ netbsd;
+ };
+}
diff --git a/pkgs/applications/office/beancount/default.nix b/pkgs/applications/office/beancount/default.nix
index 8811183dfc8..4114fbffa39 100644
--- a/pkgs/applications/office/beancount/default.nix
+++ b/pkgs/applications/office/beancount/default.nix
@@ -13,8 +13,10 @@ pythonPackages.buildPythonApplication rec {
buildInputs = with pythonPackages; [ nose ];
+ # Automatic tests cannot be run because it needs to import some local modules for tests.
+ doCheck = false;
checkPhase = ''
- nosetests $out
+ nosetests
'';
propagatedBuildInputs = with pythonPackages; [
diff --git a/pkgs/applications/office/timetrap/Gemfile b/pkgs/applications/office/timetrap/Gemfile
new file mode 100644
index 00000000000..3ce845d11c1
--- /dev/null
+++ b/pkgs/applications/office/timetrap/Gemfile
@@ -0,0 +1,2 @@
+source 'https://rubygems.org'
+gem 'timetrap'
diff --git a/pkgs/applications/office/timetrap/Gemfile.lock b/pkgs/applications/office/timetrap/Gemfile.lock
new file mode 100644
index 00000000000..5f451ca02b1
--- /dev/null
+++ b/pkgs/applications/office/timetrap/Gemfile.lock
@@ -0,0 +1,19 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ chronic (0.10.2)
+ sequel (4.0.0)
+ sqlite3 (1.3.11)
+ timetrap (1.10.0)
+ chronic (~> 0.10.2)
+ sequel (~> 4.0.0)
+ sqlite3 (~> 1.3.3)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ timetrap
+
+BUNDLED WITH
+ 1.10.6
diff --git a/pkgs/applications/office/timetrap/default.nix b/pkgs/applications/office/timetrap/default.nix
new file mode 100644
index 00000000000..71d0f923dbd
--- /dev/null
+++ b/pkgs/applications/office/timetrap/default.nix
@@ -0,0 +1,16 @@
+{ stdenv, lib, bundlerEnv, ruby }:
+
+bundlerEnv {
+ name = "timetrap-1.10.0";
+
+ inherit ruby;
+ gemfile = ./Gemfile;
+ lockfile = ./Gemfile.lock;
+ gemset = ./gemset.nix;
+
+ meta = {
+ description = "a simple command line time tracker written in ruby";
+ homepage = https://github.com/samg/timetrap;
+ license = lib.licenses.mit;
+ };
+}
diff --git a/pkgs/applications/office/timetrap/gemset.nix b/pkgs/applications/office/timetrap/gemset.nix
new file mode 100644
index 00000000000..cbf90f8018c
--- /dev/null
+++ b/pkgs/applications/office/timetrap/gemset.nix
@@ -0,0 +1,34 @@
+{
+ chronic = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1hrdkn4g8x7dlzxwb1rfgr8kw3bp4ywg5l4y4i9c2g5cwv62yvvn";
+ type = "gem";
+ };
+ version = "0.10.2";
+ };
+ sequel = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "17kqm0vd15p9qxbgcysvmg6a046fd7zvxl3xzpsh00pg6v454svm";
+ type = "gem";
+ };
+ version = "4.0.0";
+ };
+ sqlite3 = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "19r06wglnm6479ffj9dl0fa4p5j2wi6dj7k6k3d0rbx7036cv3ny";
+ type = "gem";
+ };
+ version = "1.3.11";
+ };
+ timetrap = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1rdaa27zvdgmbsbwa59g3dvfwb95nz7x1wycmviby94j5lywyzfc";
+ type = "gem";
+ };
+ version = "1.10.0";
+ };
+}
\ No newline at end of file
diff --git a/pkgs/applications/science/astronomy/celestia/default.nix b/pkgs/applications/science/astronomy/celestia/default.nix
index 971c19e9c3d..d28aa8e62a1 100644
--- a/pkgs/applications/science/astronomy/celestia/default.nix
+++ b/pkgs/applications/science/astronomy/celestia/default.nix
@@ -59,7 +59,7 @@ stdenv.mkDerivation {
CPPFLAGS = "-DNDEBUG";
CFLAGS = "-O2 -fsigned-char";
CXXFLAGS = "-O2 -fsigned-char";
- GTK_CFLAGS = "-I${gtk2.dev}/include/gtk-2.0 -I${gtk2.out}/lib/gtk-2.0/include -I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include -I${cairo.dev}/include/cairo -I${pango.dev}/include/pango-1.0 -I${gdk_pixbuf.dev}/include/gdk-pixbuf-2.0 -I${atk}/include/atk-1.0 -I${gtkglext}/include/gtkglext-1.0 -I${gtkglext}/lib/gtkglext-1.0/include";
+ GTK_CFLAGS = "-I${gtk2.dev}/include/gtk-2.0 -I${gtk2.out}/lib/gtk-2.0/include -I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include -I${cairo.dev}/include/cairo -I${pango.dev}/include/pango-1.0 -I${gdk_pixbuf.dev}/include/gdk-pixbuf-2.0 -I${atk.dev}/include/atk-1.0 -I${gtkglext}/include/gtkglext-1.0 -I${gtkglext}/lib/gtkglext-1.0/include";
GTK_LIBS = "-lgtk-x11-2.0 -lgtkglext-x11-1.0 -lcairo -lgdk_pixbuf-2.0 -lpango-1.0 -lgobject-2.0";
installPhase = ''make MKDIR_P="mkdir -p" install'';
diff --git a/pkgs/applications/science/biology/samtools/default.nix b/pkgs/applications/science/biology/samtools/default.nix
index 7c85513bd8e..9535609fa78 100644
--- a/pkgs/applications/science/biology/samtools/default.nix
+++ b/pkgs/applications/science/biology/samtools/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "samtools-${version}";
- version = "1.3";
+ version = "1.3.1";
src = fetchurl {
url = "https://github.com/samtools/samtools/releases/download/${version}/${name}.tar.bz2";
- sha256 = "03mnf0mhbfwhqlqfslrhfnw68s3g0fs1as354i9a584mqw1l1smy";
+ sha256 = "0znnnxc467jbf1as2dpskrjhfh8mbll760j6w6rdkwlwbqsp8gbc";
};
buildInputs = [ zlib ncurses ];
diff --git a/pkgs/applications/science/electronics/verilator/default.nix b/pkgs/applications/science/electronics/verilator/default.nix
index 825f342b443..5c1cd75fd56 100644
--- a/pkgs/applications/science/electronics/verilator/default.nix
+++ b/pkgs/applications/science/electronics/verilator/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "verilator-${version}";
- version = "3.874";
+ version = "3.884";
src = fetchurl {
url = "http://www.veripool.org/ftp/${name}.tgz";
- sha256 = "070binwp0jnashi6w45km26vrn6200b8hdg4179lcqyzdxi8c06j";
+ sha256 = "1j159dg7m2ych5lwglb1qq1fgqh3kwhaa1r3jx84qdisg0icln2y";
};
enableParallelBuilding = true;
diff --git a/pkgs/applications/science/electronics/verilog/default.nix b/pkgs/applications/science/electronics/verilog/default.nix
index e68d2a4ab91..d5c5f2ad130 100644
--- a/pkgs/applications/science/electronics/verilog/default.nix
+++ b/pkgs/applications/science/electronics/verilog/default.nix
@@ -1,14 +1,22 @@
-{stdenv, fetchurl, gperf, flex, bison}:
+{ stdenv, fetchFromGitHub, autoconf, gperf, flex, bison }:
stdenv.mkDerivation rec {
- name = "verilog-0.9.7";
+ name = "iverilog-${version}";
+ version = "2016.05.21";
- src = fetchurl {
- url = "mirror://sourceforge/iverilog/${name}.tar.gz";
- sha256 = "0m3liqw7kq24vn7k8wvi630ljz0awz23r3sd4rcklk7vgghp4pks";
+ src = fetchFromGitHub {
+ owner = "steveicarus";
+ repo = "iverilog";
+ rev = "45fbf558065c0fdac9aa088ecd34e9bf49e81305";
+ sha256 = "137p7gkmp5kwih93i2a3lcf36a6k38j7fxglvw9y59w0233vj452";
};
- buildInputs = [ gperf flex bison ];
+ patchPhase = ''
+ chmod +x $PWD/autoconf.sh
+ $PWD/autoconf.sh
+ '';
+
+ buildInputs = [ autoconf gperf flex bison ];
meta = {
description = "Icarus Verilog compiler";
diff --git a/pkgs/applications/science/math/pari/default.nix b/pkgs/applications/science/math/pari/default.nix
index be273bca0e2..da10e89855a 100644
--- a/pkgs/applications/science/math/pari/default.nix
+++ b/pkgs/applications/science/math/pari/default.nix
@@ -13,8 +13,8 @@ stdenv.mkDerivation rec {
configureScript = "./Configure";
configureFlags =
- "--with-gmp=${gmp} " +
- "--with-readline=${readline}";
+ "--with-gmp=${gmp.dev} " +
+ "--with-readline=${readline.dev}";
meta = with stdenv.lib; {
description = "Computer algebra system for high-performance number theory computations";
diff --git a/pkgs/applications/science/misc/root/default.nix b/pkgs/applications/science/misc/root/default.nix
index 94572301dd2..0ccfbb1e557 100644
--- a/pkgs/applications/science/misc/root/default.nix
+++ b/pkgs/applications/science/misc/root/default.nix
@@ -23,8 +23,6 @@ stdenv.mkDerivation rec {
]
++ stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include";
- enableParallelBuilding = true;
-
meta = {
homepage = "https://root.cern.ch/";
description = "A data analysis framework";
diff --git a/pkgs/applications/science/robotics/qgroundcontrol/default.nix b/pkgs/applications/science/robotics/qgroundcontrol/default.nix
index cac9fef182c..676c5013bcd 100644
--- a/pkgs/applications/science/robotics/qgroundcontrol/default.nix
+++ b/pkgs/applications/science/robotics/qgroundcontrol/default.nix
@@ -28,7 +28,15 @@ stdenv.mkDerivation rec {
patches = [ ./0001-fix-gcc-cmath-namespace-issues.patch ];
+ preConfigure = ''
+ mkdir build
+ cd build
+ '';
+
+ qmakeFlags = [ "../qgroundcontrol.pro" ];
+
installPhase = ''
+ cd ..
mkdir -p $out/share/applications
cp -v qgroundcontrol.desktop $out/share/applications
diff --git a/pkgs/applications/science/misc/yarp/default.nix b/pkgs/applications/science/robotics/yarp/default.nix
similarity index 80%
rename from pkgs/applications/science/misc/yarp/default.nix
rename to pkgs/applications/science/robotics/yarp/default.nix
index 2daf5a4b5c7..76ba871c4a1 100644
--- a/pkgs/applications/science/misc/yarp/default.nix
+++ b/pkgs/applications/science/robotics/yarp/default.nix
@@ -3,12 +3,12 @@
stdenv.mkDerivation rec {
name = "yarp-${version}";
- version = "2.3.64";
+ version = "2.3.65";
src = fetchFromGitHub {
owner = "robotology";
repo = "yarp";
- rev = "v2.3.64";
- sha256 = "0x9sdc8d6rppzf1kx53w0yjlnmz7h75qv62yd3ls09w3cy7nb5x7";
+ rev = "v${version}";
+ sha256 = "003n0z1qrd7l8maa98aa49gsfsyy7w8gb2pprlgj92r0drk8zm02";
};
buildInputs = [ cmake ace ];
diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix
index 6bd85c174c3..9c6f274d82b 100644
--- a/pkgs/applications/version-management/git-and-tools/git/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git/default.nix
@@ -10,7 +10,7 @@
}:
let
- version = "2.8.0";
+ version = "2.8.3";
svn = subversionClient.override { perlBindings = true; };
in
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz";
- sha256 = "0k77b5x41k80fqqmkmg59rdvs92xgp73iigh01l49h383r7rl2cs";
+ sha256 = "14dafk7rz8cy2z5b92yf009qf4pc70s0viwq7hxsgd4898knr3kx";
};
hardeningDisable = [ "format" ];
diff --git a/pkgs/applications/version-management/git-and-tools/hub/default.nix b/pkgs/applications/version-management/git-and-tools/hub/default.nix
index 551843d68e5..17e4b9b29f0 100644
--- a/pkgs/applications/version-management/git-and-tools/hub/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/hub/default.nix
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
src = fetchgit {
url = https://github.com/github/hub.git;
rev = "refs/tags/v${version}";
- sha256 = "0iwpy50jvb8w3nn6q857j9c3k7bp17azj8yc5brh04dpkyfysm02";
+ sha256 = "1vswkx4lm6x4s04453qkmv970gjn79ma39fmdg8mnzy7lh2swws6";
};
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 e8f9078a839..076d5d5dfe0 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
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "818673fe751b00a42b6ed3e78a783549fb09b5245a01dee47b3dded667bfc582";
};
- NIX_CFLAGS_COMPILE = [ "-I${apr}/include/apr-1" "-I${subversion.dev}/include/subversion-1" "-DVER=\"${src.rev}\"" ];
+ NIX_CFLAGS_COMPILE = [ "-I${apr.dev}/include/apr-1" "-I${subversion.dev}/include/subversion-1" "-DVER=\"${src.rev}\"" ];
patchPhase = ''
sed -i 's|/bin/cat|cat|' ./src/repository.cpp
diff --git a/pkgs/applications/version-management/kdesvn/default.nix b/pkgs/applications/version-management/kdesvn/default.nix
index b94978bb488..a3301d8acff 100644
--- a/pkgs/applications/version-management/kdesvn/default.nix
+++ b/pkgs/applications/version-management/kdesvn/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
};
prePatch = ''
- sed -i -e "s|/usr|${subversion}|g" src/svnqt/cmakemodules/FindSubversion.cmake
+ sed -i -e "s|/usr|${subversion.dev}|g" src/svnqt/cmakemodules/FindSubversion.cmake
'';
buildInputs = [ apr aprutil subversion db kdelibs expat ];
diff --git a/pkgs/applications/version-management/mercurial/default.nix b/pkgs/applications/version-management/mercurial/default.nix
index 9459dbe50eb..f0ffffde5fa 100644
--- a/pkgs/applications/version-management/mercurial/default.nix
+++ b/pkgs/applications/version-management/mercurial/default.nix
@@ -4,7 +4,7 @@
let
# if you bump version, update pkgs.tortoisehg too or ping maintainer
- version = "3.8.1";
+ version = "3.8.2";
name = "mercurial-${version}";
in
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://mercurial.selenic.com/release/${name}.tar.gz";
- sha256 = "156m6269xdqq7mpw01c6b065k29xnb8b9lyzn1b0nlz5il2izkps";
+ sha256 = "1zdz42znd6i7c3nf31j0k6frcs68qyniyvcad8k2a1hlarlv2y6b";
};
inherit python; # pass it so that the same version can be used in hg2git
diff --git a/pkgs/applications/version-management/redmine/default.nix b/pkgs/applications/version-management/redmine/default.nix
index 2f03d582a94..b81808edc22 100644
--- a/pkgs/applications/version-management/redmine/default.nix
+++ b/pkgs/applications/version-management/redmine/default.nix
@@ -48,7 +48,7 @@ in stdenv.mkDerivation rec {
mkdir -p vendor/cache
${stdenv.lib.concatStrings (map (gem: "ln -s ${gem} vendor/cache/${gem.name};") gemspec)}
- bundle config build.nokogiri --use-system-libraries --with-iconv-dir="${libiconv}" --with-xslt-dir="${libxslt}" --with-xml2-dir="${libxml2}"
+ bundle config build.nokogiri --use-system-libraries --with-iconv-dir="${libiconv}" --with-xslt-dir="${libxslt.dev}" --with-xml2-dir="${libxml2}"
bundle install --verbose --local --deployment
diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix
index fc87aea08a4..e0c7030a762 100644
--- a/pkgs/applications/version-management/subversion/default.nix
+++ b/pkgs/applications/version-management/subversion/default.nix
@@ -37,16 +37,20 @@ let
patches = [ ./apr-1.patch ];
+ # SVN build seems broken on gcc5:
+ # https://gcc.gnu.org/gcc-5/porting_to.html
+ CPPFLAGS = "-P";
+
configureFlags = ''
${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"}
- ${if httpServer then "--with-apxs=${apacheHttpd}/bin/apxs" else "--without-apxs"}
+ ${if httpServer then "--with-apxs=${apacheHttpd.dev}/bin/apxs" else "--without-apxs"}
${if pythonBindings || perlBindings then "--with-swig=${swig}" else "--without-swig"}
${if javahlBindings then "--enable-javahl --with-jdk=${jdk}" else ""}
--disable-keychain
${if saslSupport then "--with-sasl=${sasl}" else "--without-sasl"}
${if httpSupport then "--with-serf=${serf}" else "--without-serf"}
- --with-zlib=${zlib}
- --with-sqlite=${sqlite}
+ --with-zlib=${zlib.dev}
+ --with-sqlite=${sqlite.dev}
'';
preBuild = ''
@@ -99,13 +103,13 @@ let
in {
subversion18 = common {
- version = "1.8.15";
- sha256 = "0b68rjy1sjd66nqcswrm1bhda3vk2ngkgs6drcanmzbcd3vs366g";
+ version = "1.8.16";
+ sha256 = "0imkxn25n6sbcgfldrx4z29npjprb1lxjm5fb89q4297161nx3zi";
};
subversion19 = common {
- version = "1.9.3";
- sha256 = "8bbf6bb125003d88ee1c22935a36b7b1ab7d957e0c8b5fbfe5cb6310b6e86ae0";
+ version = "1.9.4";
+ sha256 = "16cjkvvq628hbznkhqkppzs8nifcr7k43s5y4c32cgwqmgigjrqj";
};
}
diff --git a/pkgs/applications/video/gnome-mpv/default.nix b/pkgs/applications/video/gnome-mpv/default.nix
new file mode 100644
index 00000000000..c93510cb1a7
--- /dev/null
+++ b/pkgs/applications/video/gnome-mpv/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl
+, intltool, pkgconfig, wrapGAppsHook
+, appstream-glib, epoxy, glib, gtk3, mpv
+}:
+
+stdenv.mkDerivation rec {
+ name = "gnome-mpv-${version}";
+ version = "0.9";
+
+ src = fetchurl {
+ sha256 = "06pgxl6f3kkgxv8nlmyl7gy3pg55sqf8vgr8m6426mlpm4p3qdn0";
+ url = "https://github.com/gnome-mpv/gnome-mpv/releases/download/v${version}/${name}.tar.xz";
+ };
+
+ nativeBuildInputs = [ intltool pkgconfig wrapGAppsHook ];
+ buildInputs = [ appstream-glib epoxy glib.dev gtk3 mpv ];
+
+ NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
+
+ enableParallelBuilding = true;
+
+ doCheck = true;
+
+ meta = with stdenv.lib; {
+ description = "Simple GTK+ frontend for the mpv video player";
+ longDescription = ''
+ GNOME MPV interacts with mpv via the client API exported by libmpv,
+ allowing access to mpv's powerful playback capabilities through an
+ easy-to-use user interface.
+ '';
+ homepage = https://github.com/gnome-mpv/gnome-mpv;
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ nckx ];
+ };
+}
diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix
index bb826011e25..f179325e0a2 100644
--- a/pkgs/applications/video/kodi/plugins.nix
+++ b/pkgs/applications/video/kodi/plugins.nix
@@ -245,7 +245,7 @@ in
# them. Symlinking .so, as setting LD_LIBRARY_PATH is of no use
installPhase = ''
make install
- ln -s $out/lib/kodi/addons/pvr.hts/pvr.hts.so* $out/share/kodi/addons/pvr.hts
+ ln -s $out/lib/addons/pvr.hts/pvr.hts.so* $out/share/kodi/addons/pvr.hts
'';
};
diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix
index dd5f25d3a6c..bd1af2ce29a 100644
--- a/pkgs/applications/video/mpv/default.nix
+++ b/pkgs/applications/video/mpv/default.nix
@@ -23,6 +23,8 @@
, cacaSupport ? true, libcaca ? null
, vaapiSupport ? false, libva ? null
, waylandSupport ? false, wayland ? null, libxkbcommon ? null
+# scripts you want to be loaded by default
+, scripts ? []
}:
assert x11Support -> (libX11 != null && libXext != null && mesa != null && libXxf86vm != null);
@@ -46,7 +48,7 @@ assert cacaSupport -> libcaca != null;
assert waylandSupport -> (wayland != null && libxkbcommon != null);
let
- inherit (stdenv.lib) optional optionals optionalString;
+ inherit (stdenv.lib) optional optionals optionalString concatStringsSep;
# Purity: Waf is normally downloaded by bootstrap.py, but
# for purity reasons this behavior should be avoided.
@@ -126,7 +128,9 @@ stdenv.mkDerivation rec {
ln -s ${freefont_ttf}/share/fonts/truetype/FreeSans.ttf $out/share/mpv/subfont.ttf
'' + optionalString youtubeSupport ''
# Ensure youtube-dl is available in $PATH for MPV
- wrapProgram $out/bin/mpv --prefix PATH : "${youtube-dl}/bin"
+ wrapProgram $out/bin/mpv \
+ --prefix PATH : "${youtube-dl}/bin" \
+ --add-flags "--script=${concatStringsSep "," scripts}"
'';
meta = with stdenv.lib; {
diff --git a/pkgs/applications/video/mpv/scripts/convert.nix b/pkgs/applications/video/mpv/scripts/convert.nix
new file mode 100644
index 00000000000..8dc2fc037e6
--- /dev/null
+++ b/pkgs/applications/video/mpv/scripts/convert.nix
@@ -0,0 +1,40 @@
+{ stdenv, fetchgit, lib
+, yad, mkvtoolnix, libnotify }:
+
+stdenv.mkDerivation {
+ name = "mpv-convert-script-2016-03-18.lua";
+ src = fetchgit {
+ url = "https://gist.github.com/Zehkul/25ea7ae77b30af959be0";
+ rev = "f95cee43e390e843a47e8ec9d1711a12a8cd343d";
+ sha256 = "13m7l4sy2r8jv2sfrb3vvqvnim4a9ilnv28q5drlg09v298z3mck";
+ };
+
+ patches = [ ./convert.patch ];
+
+ postPatch =
+ let
+ t = k: v: '' 'local ${k} = "${v}"' '';
+ subs = var: orig: repl: "--replace " + t var orig + t var repl;
+ in ''
+ substituteInPlace convert_script.lua \
+ ${subs "NOTIFY_CMD" "notify-send" "${libnotify}/bin/notify-send"} \
+ ${subs "YAD_CMD" "yad" "${yad}/bin/yad"} \
+ ${subs "MKVMERGE_CMD" "mkvmerge" "${mkvtoolnix}/bin/mkvmerge"}
+ '';
+
+ dontBuild = true;
+ installPhase = ''
+ cp convert_script.lua $out
+ '';
+
+ meta = {
+ description = "Convert parts of a video while you are watching it in mpv";
+ homepage = "https://gist.github.com/Zehkul/25ea7ae77b30af959be0";
+ maintainers = lib.maintainers.profpatsch;
+ longDescription = ''
+ When this script is loaded into mpv, you can hit Alt+W to mark the beginning
+ and Alt+W again to mark the end of the clip. Then a settings window opens.
+ '';
+ };
+}
+
diff --git a/pkgs/applications/video/mpv/scripts/convert.patch b/pkgs/applications/video/mpv/scripts/convert.patch
new file mode 100644
index 00000000000..92d0fae1d50
--- /dev/null
+++ b/pkgs/applications/video/mpv/scripts/convert.patch
@@ -0,0 +1,52 @@
+--- convert/convert_script.lua 2016-03-18 19:30:49.675401969 +0100
++++ convert_script.lua 2016-03-19 01:18:00.801897043 +0100
+@@ -3,6 +3,10 @@
+ local opt = require 'mp.options'
+ local utils = require 'mp.utils'
+
++local NOTIFY_CMD = "notify-send"
++local YAD_CMD = "yad"
++local MKVMERGE_CMD = "mkvmerge"
++
+ -- default options, convert_script.conf is read
+ local options = {
+ bitrate_multiplier = 0.975, -- to make sure the file won’t go over the target file size, set it to 1 if you don’t care
+@@ -354,9 +358,9 @@
+ if ovc == "gif" then
+ full_command = full_command .. ' --vf-add=lavfi=graph=\\"framestep=' .. framestep .. '\\" && convert '
+ .. tmpfolder .. '/*.png -set delay ' .. delay .. ' -loop 0 -fuzz ' .. fuzz .. '% ' .. dither .. ' -layers optimize '
+- .. full_output_path .. ' && rm -rf ' .. tmpfolder .. ' && notify-send "Gif done") & disown'
++ .. full_output_path .. ' && rm -rf ' .. tmpfolder .. ' && ' .. NOTIFY_CMD .. ' "Gif done") & disown'
+ else
+- full_command = full_command .. ' && notify-send "Encoding done"; mkvpropedit '
++ full_command = full_command .. ' && ' .. NOTIFY_CMD .. ' "Encoding done"; mkvpropedit '
+ .. full_output_path .. ' -s title="' .. metadata_title .. '") & disown'
+ end
+
+@@ -409,7 +413,7 @@
+ sep = ",+"
+
+ if enc then
+- local command = "mkvmerge '" .. video .. "' " .. mkvmerge_parts .. " -o " .. full_output_path
++ local command = MKVMERGE_CMD .. " '" .. video .. "' " .. mkvmerge_parts .. " -o " .. full_output_path
+ msg.info(command)
+ os.execute(command)
+ clear()
+@@ -508,7 +512,7 @@
+ end
+
+
+- local yad_command = [[LC_NUMERIC=C yad --title="Convert Script" --center --form --fixed --always-print-result \
++ local yad_command = [[LC_NUMERIC=C ]] .. YAD_CMD .. [[ --title="Convert Script" --center --form --fixed --always-print-result \
+ --name "convert script" --class "Convert Script" --field="Resize to height:NUM" "]] .. scale_sav --yad_table 1
+ .. [[" --field="Resize to width instead:CHK" ]] .. resize_to_width_instead .. " " --yad_table 2
+ if options.legacy_yad then
+@@ -543,7 +547,7 @@
+ yad_command = yad_command .. [[ --button="Crop:1" --button="gtk-cancel:2" --button="gtk-ok:0"; ret=$? && echo $ret]]
+
+ if gif_dialog then
+- yad_command = [[echo $(LC_NUMERIC=C yad --title="Gif settings" --name "convert script" --class "Convert Script" \
++ yad_command = [[echo $(LC_NUMERIC=C ]] .. YAD_CMD .. [[ --title="Gif settings" --name "convert script" --class "Convert Script" \
+ --center --form --always-print-result --separator="…" \
+ --field="Fuzz Factor:NUM" '1!0..100!0.5!1' \
+ --field="Framestep:NUM" '3!1..3!1' \
diff --git a/pkgs/applications/video/vlc/default.nix b/pkgs/applications/video/vlc/default.nix
index a23bb9a1a94..3f883694e08 100644
--- a/pkgs/applications/video/vlc/default.nix
+++ b/pkgs/applications/video/vlc/default.nix
@@ -20,11 +20,11 @@ assert (!withQt5 -> qt4 != null);
stdenv.mkDerivation rec {
name = "vlc-${version}";
- version = "2.2.2";
+ version = "2.2.3";
src = fetchurl {
url = "http://get.videolan.org/vlc/${version}/${name}.tar.xz";
- sha256 = "1dazxbmzx2g5570pkg519a7fsj07rdr155kjsw7b9y8npql33lls";
+ sha256 = "0nxzspnyzlm17imlggi8ypnwiizi0f5wrj3436c3qg7i6mymimxr";
};
# Comment-out the Qt 5.5 version check, as we do apply the relevant patch.
diff --git a/pkgs/applications/video/xine-ui/default.nix b/pkgs/applications/video/xine-ui/default.nix
index fd7b31de16e..f8a35734534 100644
--- a/pkgs/applications/video/xine-ui/default.nix
+++ b/pkgs/applications/video/xine-ui/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
patchPhase = ''sed -e '/curl\/types\.h/d' -i src/xitk/download.c'';
- configureFlags = "--with-readline=${readline}";
+ configureFlags = "--with-readline=${readline.dev}";
LIRC_CFLAGS="-I${lirc}/include";
LIRC_LIBS="-L ${lirc}/lib -llirc_client";
diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix
index 9be979057dc..961a78eebe5 100644
--- a/pkgs/applications/virtualization/docker/default.nix
+++ b/pkgs/applications/virtualization/docker/default.nix
@@ -2,7 +2,6 @@
, go, sqlite, iproute, bridge-utils, devicemapper
, btrfs-progs, iptables, e2fsprogs, xz, utillinux
, systemd, pkgconfig
-, enableLxc ? false, lxc
}:
# https://github.com/docker/docker/blob/master/project/PACKAGERS.md
@@ -31,6 +30,12 @@ stdenv.mkDerivation rec {
++ optional (btrfs-progs == null) "exclude_graphdriver_btrfs"
++ optional (devicemapper == null) "exclude_graphdriver_devicemapper";
+ # systemd 230 no longer has libsystemd-journal as a separate entity from libsystemd
+ postPatch = ''
+ substituteInPlace ./hack/make.sh --replace libsystemd-journal libsystemd
+ substituteInPlace ./daemon/logger/journald/read.go --replace libsystemd-journal libsystemd
+ '';
+
buildPhase = ''
patchShebangs .
export AUTO_GOPATH=1
@@ -42,7 +47,7 @@ stdenv.mkDerivation rec {
install -Dm755 ./bundles/${version}/dynbinary/docker-${version} $out/libexec/docker/docker
install -Dm755 ./bundles/${version}/dynbinary/dockerinit-${version} $out/libexec/docker/dockerinit
makeWrapper $out/libexec/docker/docker $out/bin/docker \
- --prefix PATH : "${iproute}/sbin:sbin:${iptables}/sbin:${e2fsprogs}/sbin:${xz.bin}/bin:${utillinux}/bin:${optionalString enableLxc "${lxc}/bin"}"
+ --prefix PATH : "${iproute}/sbin:sbin:${iptables}/sbin:${e2fsprogs}/sbin:${xz.bin}/bin:${utillinux}/bin"
# systemd
install -Dm644 ./contrib/init/systemd/docker.service $out/etc/systemd/system/docker.service
diff --git a/pkgs/applications/virtualization/qemu/default.nix b/pkgs/applications/virtualization/qemu/default.nix
index 06d75a00b97..ed59f5eb510 100644
--- a/pkgs/applications/virtualization/qemu/default.nix
+++ b/pkgs/applications/virtualization/qemu/default.nix
@@ -15,7 +15,7 @@
with stdenv.lib;
let
- version = "2.5.1";
+ version = "2.6.0";
audio = optionalString (hasSuffix "linux" stdenv.system) "alsa,"
+ optionalString pulseSupport "pa,"
+ optionalString sdlSupport "sdl,";
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://wiki.qemu.org/download/qemu-${version}.tar.bz2";
- sha256 = "0b2xa8604absdmzpcyjs7fix19y5blqmgflnwjzsp1mp7g1m51q2";
+ sha256 = "1v1lhhd6m59hqgmiz100g779rjq70pik5v4b3g936ci73djlmb69";
};
buildInputs =
diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix
index e31ed7e509c..9e04cdf3825 100644
--- a/pkgs/applications/virtualization/virt-manager/default.nix
+++ b/pkgs/applications/virtualization/virt-manager/default.nix
@@ -39,7 +39,7 @@ buildPythonApplication rec {
'';
postInstall = ''
- ${glib}/bin/glib-compile-schemas "$out"/share/glib-2.0/schemas
+ ${glib.dev}/bin/glib-compile-schemas "$out"/share/glib-2.0/schemas
'';
# Failed tests
diff --git a/pkgs/applications/virtualization/virtualbox/default.nix b/pkgs/applications/virtualization/virtualbox/default.nix
index 2787f01a0cd..50c5961276d 100644
--- a/pkgs/applications/virtualization/virtualbox/default.nix
+++ b/pkgs/applications/virtualization/virtualbox/default.nix
@@ -135,7 +135,7 @@ in stdenv.mkDerivation {
${optionalString (!pulseSupport) "--disable-pulse"} \
${optionalString (!enableHardening) "--disable-hardening"} \
--disable-kmods --with-mkisofs=${xorriso}/bin/xorrisofs
- sed -e 's@PKG_CONFIG_PATH=.*@PKG_CONFIG_PATH=${libIDL}/lib/pkgconfig:${glib}/lib/pkgconfig ${libIDL}/bin/libIDL-config-2@' \
+ sed -e 's@PKG_CONFIG_PATH=.*@PKG_CONFIG_PATH=${libIDL}/lib/pkgconfig:${glib.dev}/lib/pkgconfig ${libIDL}/bin/libIDL-config-2@' \
-i AutoConfig.kmk
sed -e 's@arch/x86/@@' \
-i Config.kmk
diff --git a/pkgs/applications/window-managers/fluxbox/default.nix b/pkgs/applications/window-managers/fluxbox/default.nix
index 36e081ccfcf..47febfa00e9 100644
--- a/pkgs/applications/window-managers/fluxbox/default.nix
+++ b/pkgs/applications/window-managers/fluxbox/default.nix
@@ -10,13 +10,22 @@ stdenv.mkDerivation rec {
name = "fluxbox-${version}";
version = "1.3.7";
- buildInputs = [ pkgconfig freetype fribidi libXext libXft libXpm libXrandr libXrender xextproto libXinerama imlib2 ];
-
src = fetchurl {
url = "mirror://sourceforge/fluxbox/${name}.tar.xz";
sha256 = "1h1f70y40qd225dqx937vzb4k2cz219agm1zvnjxakn5jkz7b37w";
};
+ nativeBuildInputs = [ pkgconfig ];
+
+ buildInputs = [ freetype fribidi libXext libXft libXpm libXrandr libXrender xextproto libXinerama imlib2 ];
+
+ enableParallelBuilding = true;
+
+ preConfigure = ''
+ substituteInPlace util/fluxbox-generate_menu.in \
+ --subst-var-by PREFIX "$out"
+ '';
+
meta = {
description = "Full-featured, light-resource X window manager";
longDescription = ''
diff --git a/pkgs/applications/window-managers/i3/lock-color.nix b/pkgs/applications/window-managers/i3/lock-color.nix
index 09be3500fec..483c815db01 100644
--- a/pkgs/applications/window-managers/i3/lock-color.nix
+++ b/pkgs/applications/window-managers/i3/lock-color.nix
@@ -17,6 +17,9 @@ stdenv.mkDerivation rec {
mkdir -p $out/share/man/man1
'';
installFlags = "PREFIX=\${out} SYSCONFDIR=\${out}/etc MANDIR=\${out}/share/man";
+ postInstall = ''
+ mv $out/bin/i3lock $out/bin/i3lock-color
+ '';
meta = with stdenv.lib; {
description = "A simple screen locker like slock";
homepage = http://i3wm.org/i3lock/;
diff --git a/pkgs/applications/window-managers/i3/lock-fancy.nix b/pkgs/applications/window-managers/i3/lock-fancy.nix
index ecf08a529d1..dd7f89b2a8d 100644
--- a/pkgs/applications/window-managers/i3/lock-fancy.nix
+++ b/pkgs/applications/window-managers/i3/lock-fancy.nix
@@ -12,14 +12,15 @@ stdenv.mkDerivation rec {
sha256 = "0az43nqhmbniih3yw9kz5lnky0n7mxylvklsib76s4l2alf6i3ps";
};
patchPhase = ''
- sed -i -e "s|mktemp|${coreutils}/bin/mktemp|" lock
- sed -i -e "s|\`pwd\`|$out/share/i3lock-fancy|" lock
- sed -i -e "s|dirname|${coreutils}/bin/dirname|" lock
- sed -i -e "s|rm |${coreutils}/bin/rm |" lock
- sed -i -e "s|scrot |${scrot}/bin/scrot |" lock
- sed -i -e "s|convert |${imagemagick}/bin/convert |" lock
- sed -i -e "s|awk |${gawk}/bin/awk|" lock
- sed -i -e "s|i3lock |${i3lock-color}/bin/i3lock-color |" lock
+ sed -i -e "s|(mktemp)|(${coreutils}/bin/mktemp)|" lock
+ sed -i -e "s|'rm -f |'${coreutils}/bin/rm -f |" lock
+ sed -i -e "s|scrot -z |${scrot}/bin/scrot -z |" lock
+ sed -i -e "s|convert |${imagemagick.out}/bin/convert |" lock
+ sed -i -e "s|awk -F|${gawk}/bin/awk -F|" lock
+ sed -i -e "s| awk | ${gawk}/bin/awk |" lock
+ sed -i -e "s|i3lock -n |${i3lock-color}/bin/i3lock-color -n |" lock
+ sed -i -e 's|ICON="$SCRIPTPATH/lockdark.png"|ICON="'$out'/share/i3lock-fancy/lockdark.png"|' lock
+ sed -i -e 's|ICON="$SCRIPTPATH/lock.png"|ICON="'$out'/share/i3lock-fancy/lock.png"|' lock
'';
installPhase = ''
mkdir -p $out/bin $out/share/i3lock-fancy
diff --git a/pkgs/build-support/build-fhs-chrootenv/env.nix b/pkgs/build-support/build-fhs-chrootenv/env.nix
index 01d75727f0b..0b2f8bcba6a 100644
--- a/pkgs/build-support/build-fhs-chrootenv/env.nix
+++ b/pkgs/build-support/build-fhs-chrootenv/env.nix
@@ -37,21 +37,20 @@ let
# list of packages which are installed for both x86 and x86_64 on x86_64
# systems
- multiPaths = if isMultiBuild
- then multiPkgs nixpkgs_i686
- else [];
+ multiPaths = multiPkgs nixpkgs_i686;
# base packages of the chroot
- # these match the host's architecture, gcc/glibc_multi are used for multilib
+ # these match the host's architecture, glibc_multi is used for multilib
# builds.
- chosenGcc = if isMultiBuild then nixpkgs.gcc_multi else nixpkgs.gcc;
basePkgs = with nixpkgs;
[ (if isMultiBuild then glibc_multi else glibc)
- chosenGcc
- bashInteractive coreutils less shadow su
+ gcc.cc.lib bashInteractive coreutils less shadow su
gawk diffutils findutils gnused gnugrep
gnutar gzip bzip2 xz glibcLocales
];
+ baseMultiPkgs = with nixpkgs_i686;
+ [ gcc.cc.lib
+ ];
etcProfile = nixpkgs.writeText "profile" ''
export PS1='${name}-chrootenv:\u@\h:\w\$ '
@@ -125,8 +124,8 @@ let
};
staticUsrProfileMulti = nixpkgs.buildEnv {
- name = "system-profile-multi";
- paths = multiPaths;
+ name = "${name}-usr-multi";
+ paths = baseMultiPkgs ++ multiPaths;
extraOutputsToInstall = [ "lib" "out" ] ++ extraOutputsToInstall;
ignoreCollisions = true;
};
@@ -154,18 +153,8 @@ let
# copy content of targetPaths (64bit libs)
cp -rsHf ${staticUsrProfileTarget}/lib/* lib64/ && chmod u+w -R lib64/
- # most 64bit only libs put their stuff into /lib
- # some pkgs (like gcc_multi) put 32bit libs into /lib and 64bit libs into /lib64
- # by overwriting these we will hopefully catch all these cases
- # in the end /lib32 should only contain 32bit and /lib64 only 64bit libs
- cp -rsHf ${staticUsrProfileTarget}/lib64/* lib64/ && chmod u+w -R lib64/
-
- # copy gcc libs
- cp -rsHf ${chosenGcc.cc.lib}/lib/* lib32/
- cp -rsHf ${chosenGcc.cc.lib}/lib64/* lib64/
-
# symlink 32-bit ld-linux.so
- ln -s ${staticUsrProfileTarget}/lib/32/ld-linux.so.2 lib/
+ ln -Ls ${staticUsrProfileTarget}/lib/32/ld-linux.so.2 lib/
'';
setupLibDirs = if isTargetBuild then setupLibDirs_target
diff --git a/pkgs/build-support/build-fhs-userenv/default.nix b/pkgs/build-support/build-fhs-userenv/default.nix
index a38f0a4f623..94c72e29a22 100644
--- a/pkgs/build-support/build-fhs-userenv/default.nix
+++ b/pkgs/build-support/build-fhs-userenv/default.nix
@@ -32,7 +32,7 @@ in runCommand name {
env = runCommand "${name}-shell-env" {
shellHook = ''
export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:$CHROOTENV_EXTRA_BINDS"
- exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init "bash"} "$(pwd)"
+ exec ${chroot-user}/bin/chroot-user ${env} bash ${init "bash"} "$(pwd)"
'';
} ''
echo >&2 ""
diff --git a/pkgs/build-support/release/debian-build.nix b/pkgs/build-support/release/debian-build.nix
index 7dcc9b9552a..f4bc3e73056 100644
--- a/pkgs/build-support/release/debian-build.nix
+++ b/pkgs/build-support/release/debian-build.nix
@@ -54,11 +54,15 @@ vmTools.runInLinuxImage (stdenv.mkDerivation (
eval "$preInstall"
export LOGNAME=root
+ # otherwise build hangs when it wants to display
+ # the log file
+ export PAGER=cat
${checkinstall}/sbin/checkinstall --nodoc -y -D \
--fstrans=${if fsTranslation then "yes" else "no"} \
--requires="${concatStringsSep "," debRequires}" \
--provides="${concatStringsSep "," debProvides}" \
- ${optionalString (src ? version) "--pkgversion=$(echo ${src.version} | tr _ -)"} \
+ ${if (src ? version) then "--pkgversion=$(echo ${src.version} | tr _ -)"
+ else "--pkgversion=0.0.0"} \
''${debMaintainer:+--maintainer="'$debMaintainer'"} \
''${debName:+--pkgname="'$debName'"} \
$checkInstallFlags \
diff --git a/pkgs/build-support/rust/default.nix b/pkgs/build-support/rust/default.nix
index 79e4366eebe..6bacba73f1e 100644
--- a/pkgs/build-support/rust/default.nix
+++ b/pkgs/build-support/rust/default.nix
@@ -3,6 +3,7 @@
, src ? null
, srcs ? null
, sourceRoot ? null
+, logLevel ? ""
, buildInputs ? []
, cargoUpdateHook ? ""
, ... } @ args:
@@ -42,6 +43,7 @@ in stdenv.mkDerivation (args // {
EOF
export CARGO_HOME="$(realpath deps)"
+ export RUST_LOG=${logLevel}
# 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/setup-hooks/separate-debug-info.sh b/pkgs/build-support/setup-hooks/separate-debug-info.sh
index 518be964733..c90d2cd5201 100644
--- a/pkgs/build-support/setup-hooks/separate-debug-info.sh
+++ b/pkgs/build-support/setup-hooks/separate-debug-info.sh
@@ -6,8 +6,10 @@ dontStrip=1
fixupOutputHooks+=(_separateDebugInfo)
_separateDebugInfo() {
+ [ -e "$prefix" ] || return 0
+
local dst="${debug:-$out}"
- if [ "$prefix" = "$dst" ]; then return; fi
+ if [ "$prefix" = "$dst" ]; then return 0; fi
dst="$dst/lib/debug/.build-id"
diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix
index b0040cf1817..73f4d7783c4 100644
--- a/pkgs/build-support/trivial-builders.nix
+++ b/pkgs/build-support/trivial-builders.nix
@@ -48,17 +48,15 @@ rec {
# Create a forest of symlinks to the files in `paths'.
symlinkJoin =
- { name
- , paths
- , preferLocalBuild ? true
- , allowSubstitutes ? false
- , postBuild ? ""
- , buildInputs ? []
- , meta ? {}
- }:
+ args@{ name
+ , paths
+ , preferLocalBuild ? true
+ , allowSubstitutes ? false
+ , postBuild ? ""
+ , ...
+ }:
runCommand name
- { inherit paths preferLocalBuild allowSubstitutes buildInputs meta;
- }
+ (removeAttrs args [ "name" "postBuild" ])
''
mkdir -p $out
for i in $paths; do
diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix
index 4718e2d72f6..7a3d816efc9 100644
--- a/pkgs/build-support/vm/default.nix
+++ b/pkgs/build-support/vm/default.nix
@@ -1182,6 +1182,30 @@ rec {
packages = commonOpenSUSEPackages;
};
+ opensuse132i386 = {
+ name = "opensuse-13.2-i586";
+ fullName = "openSUSE 13.2 (i586)";
+ packagesList = fetchurl {
+ url = mirror://opensuse/13.2/repo/oss/suse/repodata/485e4f44e3c3ef3133accb589480933c2fe48dedfc44a7e5f9d5437cd9122a99-primary.xml.gz;
+ sha256 = "0klzmk680as4sb6h1wl0ynj0dds3m70qim66wwbiqlnnp6xkf83y";
+ };
+ urlPrefix = mirror://opensuse/13.2/repo/oss/suse/;
+ archs = ["noarch" "i586"];
+ packages = commonOpenSUSEPackages;
+ };
+
+ opensuse132x86_64 = {
+ name = "opensuse-13.2-x86_64";
+ fullName = "openSUSE 13.2 (x86_64)";
+ packagesList = fetchurl {
+ url = mirror://opensuse/13.2/repo/oss/suse/repodata/485e4f44e3c3ef3133accb589480933c2fe48dedfc44a7e5f9d5437cd9122a99-primary.xml.gz;
+ sha256 = "0klzmk680as4sb6h1wl0ynj0dds3m70qim66wwbiqlnnp6xkf83y";
+ };
+ urlPrefix = mirror://opensuse/13.2/repo/oss/suse/;
+ archs = ["noarch" "x86_64"];
+ packages = commonOpenSUSEPackages;
+ };
+
centos65i386 = {
name = "centos-6.5-i386";
fullName = "CentOS 6.5 (i386)";
@@ -1191,7 +1215,7 @@ rec {
};
urlPrefix = http://vault.centos.org/6.5/os/i386;
archs = ["noarch" "i386"];
- packages = commonCentOSPackages;
+ packages = commonCentOSPackages ++ [ "procps" ];
};
centos65x86_64 = {
@@ -1203,7 +1227,20 @@ rec {
};
urlPrefix = http://vault.centos.org/6.5/os/x86_64/;
archs = ["noarch" "x86_64"];
- packages = commonCentOSPackages;
+ packages = commonCentOSPackages ++ [ "procps" ];
+ };
+
+ # Note: no i386 release for 7.x
+ centos71x86_64 = {
+ name = "centos-7.1-x86_64";
+ fullName = "CentOS 7.1 (x86_64)";
+ packagesList = fetchurl {
+ url = http://vault.centos.org/7.1.1503/os/x86_64/repodata/1386c5af55bda40669bb5ed91e0a22796c3ed7325367506109b09ea2657f22bd-primary.xml.gz;
+ sha256 = "1g92gxjs57mh15hm0rsk6bbkwv3r4851xnaypdlhd95xanpwb1hk";
+ };
+ urlPrefix = http://vault.centos.org/7.1.1503/os/x86_64;
+ archs = ["noarch" "x86_64"];
+ packages = commonCentOSPackages ++ [ "procps-ng" ];
};
};
@@ -1795,22 +1832,22 @@ rec {
debian70x86_64 = debian7x86_64;
debian7i386 = {
- name = "debian-7.9-wheezy-i386";
- fullName = "Debian 7.9 Wheezy (i386)";
+ name = "debian-7.10-wheezy-i386";
+ fullName = "Debian 7.10 Wheezy (i386)";
packagesList = fetchurl {
url = mirror://debian/dists/wheezy/main/binary-i386/Packages.bz2;
- sha256 = "a390176680327fd52d6aada6dd8eee051c94ce49d80f0a68dc90ef51b81c3169";
+ sha256 = "02dncyhz3c02jzdxqngbhfic7acsa7p2yv76xwrhawj38yjgqzrm";
};
urlPrefix = mirror://debian;
packages = commonDebianPackages;
};
debian7x86_64 = {
- name = "debian-7.9-wheezy-amd64";
- fullName = "Debian 7.9 Wheezy (amd64)";
+ name = "debian-7.10-wheezy-amd64";
+ fullName = "Debian 7.10 Wheezy (amd64)";
packagesList = fetchurl {
url = mirror://debian/dists/wheezy/main/binary-amd64/Packages.bz2;
- sha256 = "818d78c648505f91cb99f269178d4f62b56d4209cd51bebbc9bf2bd31c8c7156";
+ sha256 = "1kir3j6y81s914njvs0sbwywq7qv28f8s615r9agg9s0h5g760fw";
};
urlPrefix = mirror://debian;
packages = commonDebianPackages;
@@ -1879,7 +1916,6 @@ rec {
"patch"
"perl"
"pkgconfig"
- "procps"
"rpm"
"rpm-build"
"tar"
diff --git a/pkgs/data/icons/numix-icon-theme-circle/default.nix b/pkgs/data/icons/numix-icon-theme-circle/default.nix
index 8a70b2949af..ace58a4d703 100644
--- a/pkgs/data/icons/numix-icon-theme-circle/default.nix
+++ b/pkgs/data/icons/numix-icon-theme-circle/default.nix
@@ -1,19 +1,17 @@
-{ stdenv, fetchFromGitHub, unzip }:
+{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
- version = "e7008b488edfe37379ba9c4b8d5245dfd6125fc3";
+ version = "2016-05-25";
package-name = "numix-icon-theme-circle";
- name = "${package-name}-20160121-${version}";
+ name = "${package-name}-${version}";
- buildInputs = [ unzip ];
-
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
- rev = version;
- sha256 = "0pfcz50b9g7zzskws94m6wvd8zm3sjvhpbzq9vjqi1q02nzflap6";
+ rev = "e2d2fe68e34e1650584f798c3cdb7e91ef62e6d3";
+ sha256 = "0fah812ymc6kczjhjsz0ai57ih6d8r6pknhvc54i7r3xqxshryc8";
};
dontBuild = true;
diff --git a/pkgs/data/icons/numix-icon-theme/default.nix b/pkgs/data/icons/numix-icon-theme/default.nix
index 909750aec6f..45f5d2f5ae7 100644
--- a/pkgs/data/icons/numix-icon-theme/default.nix
+++ b/pkgs/data/icons/numix-icon-theme/default.nix
@@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
- version = "a704451830d343670721cbf1391df18611d61901";
+ version = "2016-05-18";
package-name = "numix-icon-theme";
- name = "${package-name}-20160120-${version}";
+ name = "${package-name}-${version}";
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
- rev = version;
- sha256 = "0kk0rvywbm074nskjvvy0vjf6giw54jgvrw7sz9kwnv6h75ki96m";
+ rev = "d571e845b9db0e5cc5a50e6d4423d25fc0d613bd";
+ sha256 = "0d9ajh12n1ms7wbgaa3nsdhlwsjwj4flm67cxzsb3dwhpql75z0c";
};
dontBuild = true;
diff --git a/pkgs/data/icons/paper-icon-theme/default.nix b/pkgs/data/icons/paper-icon-theme/default.nix
new file mode 100644
index 00000000000..93c39b9eddd
--- /dev/null
+++ b/pkgs/data/icons/paper-icon-theme/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub, autoreconfHook }:
+
+stdenv.mkDerivation rec {
+ name = "${package-name}-${version}";
+ package-name = "paper-icon-theme";
+ version = "2016-05-25";
+
+ src = fetchFromGitHub {
+ owner = "snwh";
+ repo = package-name;
+ rev = "f221537532181a71938faaa1f695c762defe2626";
+ sha256 = "0knsdhgssh1wyhcrbk6lddqy7zn24528lnajqij467mpgiliabfy";
+ };
+
+ nativeBuildInputs = [ autoreconfHook ];
+
+ postPatch = ''
+ substituteInPlace Makefile.am --replace '$(DESTDIR)'/usr $out
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Modern icon theme designed around bold colours and simple geometric shapes";
+ homepage = http://snwh.org/paper;
+ license = with licenses; [ cc-by-sa-40 lgpl3 ];
+ platforms = platforms.all;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/data/icons/tango-icon-theme/default.nix b/pkgs/data/icons/tango-icon-theme/default.nix
index b9dfeb76f99..55be87c9ab7 100644
--- a/pkgs/data/icons/tango-icon-theme/default.nix
+++ b/pkgs/data/icons/tango-icon-theme/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
configureFlags = "--enable-png-creation";
- postInstall = '''${gtk}/bin/gtk-update-icon-cache' "$out/share/icons/Tango" '';
+ postInstall = '''${gtk.dev}/bin/gtk-update-icon-cache' "$out/share/icons/Tango" '';
meta = {
description = "A basic set of icons";
diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix
index 617ad8e9099..d3b5405c509 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-16";
+ version = "2016-05-23";
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"
- "1nplklc88jn0iqla9ar5vgcq4wvkqkd5pbgvn89757466dl1igiw";
+ "0jx4rg2zxpcwhc27ph8hbbl0vdjpdd6d8c7ifxfxrz9jdjvzz6q5";
srcGeoIPASNumv6 = fetchDB
"asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz"
- "06wmjr4frc83v68abpnad8z9xy4fsjsvwild6bw7816w9rdvdqzw";
+ "0wax1z8fnldmkv0mh35ad738daqdcszs90cabzg472d1iys937av";
meta = with stdenv.lib; {
description = "GeoLite Legacy IP geolocation databases";
diff --git a/pkgs/desktops/enlightenment/efl.nix b/pkgs/desktops/enlightenment/efl.nix
index 3df091fd48a..4b0ad244a77 100644
--- a/pkgs/desktops/enlightenment/efl.nix
+++ b/pkgs/desktops/enlightenment/efl.nix
@@ -3,13 +3,15 @@
stdenv.mkDerivation rec {
name = "efl-${version}";
- version = "1.17.0";
+ version = "1.17.1";
src = fetchurl {
url = "http://download.enlightenment.org/rel/libs/efl/${name}.tar.xz";
- sha256 = "1zisnz4x54mn9sm46kcr571faqnazkcglyf0lbz19l34syx40df1";
+ sha256 = "0d58bhvwg7c5hp07wywlwnqi01k4jhmpgac7gkx9lil1x6kmahqs";
};
- buildInputs = [ pkgconfig openssl zlib freetype fontconfig fribidi SDL2 SDL mesa
+ nativeBuildInputs = [ pkgconfig ];
+
+ buildInputs = [ openssl zlib freetype fontconfig fribidi SDL2 SDL mesa
giflib libpng libtiff glib gst_all_1.gstreamer gst_all_1.gst-plugins-base
gst_all_1.gst-libav libpulseaudio libsndfile xorg.libXcursor xorg.printproto
xorg.libX11 udev utillinux systemd ];
diff --git a/pkgs/desktops/enlightenment/elementary.nix b/pkgs/desktops/enlightenment/elementary.nix
index ffb0d70920e..10334eb98e9 100644
--- a/pkgs/desktops/enlightenment/elementary.nix
+++ b/pkgs/desktops/enlightenment/elementary.nix
@@ -1,13 +1,14 @@
{ stdenv, fetchurl, pkgconfig, efl, libcap, automake, autoconf, libdrm, gdbm }:
stdenv.mkDerivation rec {
name = "elementary-${version}";
- version = "1.17.0";
+ version = "1.17.1";
src = fetchurl {
url = "http://download.enlightenment.org/rel/libs/elementary/${name}.tar.xz";
- sha256 = "0avb0d6nk4d88l81c2j6py13vdfnvg080ycw2y3qvawyjf1mhska";
+ sha256 = "149xjq4z71l44w1kd8zks9b2g0wjc9656w46hzd27b58afj1dqc5";
};
- buildInputs = [ pkgconfig efl libdrm gdbm automake autoconf ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ];
- NIX_CFLAGS_COMPILE = [ "-I${libdrm}/include/libdrm" ];
+ nativeBuildInputs = [ pkgconfig automake autoconf ];
+ buildInputs = [ efl libdrm gdbm ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ];
+ NIX_CFLAGS_COMPILE = [ "-I${libdrm.dev}/include/libdrm" ];
patches = [ ./elementary.patch ];
enableParallelBuilding = true;
meta = {
diff --git a/pkgs/desktops/gnome-3/3.18/apps/cheese/default.nix b/pkgs/desktops/gnome-3/3.18/apps/cheese/default.nix
index db50656cf37..b5f70d84e52 100644
--- a/pkgs/desktops/gnome-3/3.18/apps/cheese/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/apps/cheese/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
- NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Cheese;
diff --git a/pkgs/desktops/gnome-3/3.18/apps/gnome-calendar/default.nix b/pkgs/desktops/gnome-3/3.18/apps/gnome-calendar/default.nix
index cbd5a84bdb5..5fe6583660c 100644
--- a/pkgs/desktops/gnome-3/3.18/apps/gnome-calendar/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/apps/gnome-calendar/default.nix
@@ -5,7 +5,7 @@
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
buildInputs = [
pkgconfig gtk3 wrapGAppsHook intltool evolution_data_server
diff --git a/pkgs/desktops/gnome-3/3.18/apps/gnome-documents/default.nix b/pkgs/desktops/gnome-3/3.18/apps/gnome-documents/default.nix
index 7f1f70114b7..5daa7277f7b 100644
--- a/pkgs/desktops/gnome-3/3.18/apps/gnome-documents/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/apps/gnome-documents/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
preFixup = ''
- substituteInPlace $out/bin/gnome-documents --replace gapplication "${glib}/bin/gapplication"
+ substituteInPlace $out/bin/gnome-documents --replace gapplication "${glib.dev}/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')
'';
diff --git a/pkgs/desktops/gnome-3/3.18/apps/gnome-photos/default.nix b/pkgs/desktops/gnome-3/3.18/apps/gnome-photos/default.nix
index eaace044af0..0ba1df2f5a5 100644
--- a/pkgs/desktops/gnome-3/3.18/apps/gnome-photos/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/apps/gnome-photos/default.nix
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
# doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
buildInputs = [ pkgconfig gtk3 glib intltool itstool gegl babl gnome3.libgdata
gnome3.gsettings_desktop_schemas makeWrapper gmp libmediaart
diff --git a/pkgs/desktops/gnome-3/3.18/apps/seahorse/default.nix b/pkgs/desktops/gnome-3/3.18/apps/seahorse/default.nix
index 3b78babadd9..49c48a6b962 100644
--- a/pkgs/desktops/gnome-3/3.18/apps/seahorse/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/apps/seahorse/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
buildInputs = [ pkgconfig gtk3 glib intltool itstool gnome3.gcr
gnome3.gsettings_desktop_schemas makeWrapper gnupg
diff --git a/pkgs/desktops/gnome-3/3.18/core/baobab/default.nix b/pkgs/desktops/gnome-3/3.18/core/baobab/default.nix
index 2ff85662bbb..874c7280949 100644
--- a/pkgs/desktops/gnome-3/3.18/core/baobab/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/baobab/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
diff --git a/pkgs/desktops/gnome-3/3.18/core/evince/default.nix b/pkgs/desktops/gnome-3/3.18/core/evince/default.nix
index d0857a1d32a..7629e5b5655 100644
--- a/pkgs/desktops/gnome-3/3.18/core/evince/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/evince/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
(if supportXPS then "--enable-xps" else "--disable-xps")
];
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
preConfigure = with stdenv.lib;
optionalString doCheck ''
diff --git a/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix b/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix
index a13370e5c9a..0d21bf54666 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, glib, itstool, libxml2, xorg, dbus
-, intltool, accountsservice, libX11, gnome3, systemd, gnome_session
+, intltool, accountsservice, libX11, gnome3, systemd, gnome_session, autoreconfHook
, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection }:
stdenv.mkDerivation rec {
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
"--with-systemd=yes"
"--with-systemdsystemunitdir=$(out)/etc/systemd/system" ];
- buildInputs = [ pkgconfig glib itstool libxml2 intltool
+ buildInputs = [ pkgconfig glib itstool libxml2 intltool autoreconfHook
accountsservice gnome3.dconf systemd
gobjectIntrospection libX11 gtk
libcanberra_gtk3 pam libtool ];
@@ -28,7 +28,8 @@ stdenv.mkDerivation rec {
# 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 ];
+ ./disable_x_access_control.patch ./no-dbus-launch.patch
+ ./libsystemd.patch ];
installFlags = [ "sysconfdir=$(out)/etc" "dbusconfdir=$(out)/etc/dbus-1/system.d" ];
diff --git a/pkgs/desktops/gnome-3/3.18/core/gdm/libsystemd.patch b/pkgs/desktops/gnome-3/3.18/core/gdm/libsystemd.patch
new file mode 100644
index 00000000000..4556f418cc8
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.18/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.18/core/gnome-calculator/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/default.nix
index fef820010af..b2135535de1 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gnome-calculator/default.nix
@@ -5,7 +5,7 @@
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-desktop/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-desktop/default.nix
index bf0ccd0224e..7265f09731f 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gnome-desktop/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gnome-desktop/default.nix
@@ -6,7 +6,7 @@ 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";
+ NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
enableParallelBuilding = true;
diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-dictionary/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-dictionary/default.nix
index 51e3f6ab313..c94c178558d 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gnome-dictionary/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gnome-dictionary/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
propagatedBuildInputs = [ gdk_pixbuf gnome3.defaultIconTheme librsvg ];
diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-disk-utility/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-disk-utility/default.nix
index 3f9f653bdba..c329d68674a 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gnome-disk-utility/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gnome-disk-utility/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-font-viewer/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-font-viewer/default.nix
index 54767dbc4c5..d0ec2307a85 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gnome-font-viewer/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gnome-font-viewer/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-screenshot/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-screenshot/default.nix
index 15d93793088..29ebe8b0ca6 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gnome-screenshot/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gnome-screenshot/default.nix
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
propagatedBuildInputs = [ gdk_pixbuf gnome3.defaultIconTheme librsvg ];
diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-settings-daemon/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-settings-daemon/default.nix
index 99e1f596f18..2a93328d8ca 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gnome-settings-daemon/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gnome-settings-daemon/default.nix
@@ -7,7 +7,7 @@ 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";
+ NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
buildInputs = with gnome3;
[ intltool pkgconfig ibus gtk glib gsettings_desktop_schemas networkmanager
diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-system-log/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-system-log/default.nix
index 6b7b28ad400..50ee229cfa4 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gnome-system-log/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gnome-system-log/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
propagatedBuildInputs = [ gdk_pixbuf gnome3.defaultIconTheme librsvg ];
diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-terminal/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-terminal/default.nix
index 052a16affdc..c523d732e03 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gnome-terminal/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gnome-terminal/default.nix
@@ -11,8 +11,15 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which libuuid libxml2
desktop_file_utils wrapGAppsHook ];
+ # Silly ./configure, it looks for dbus file from gnome-shell in the
+ # installation tree of the package it is configuring.
+ preConfigure = ''
+ mkdir -p "$out/share/dbus-1/interfaces"
+ cp "${gnome3.gnome_shell}/share/dbus-1/interfaces/org.gnome.ShellSearchProvider2.xml" "$out/share/dbus-1/interfaces"
+ '';
+
# FIXME: enable for gnome3
- configureFlags = [ "--disable-search-provider" "--disable-migration" ];
+ configureFlags = [ "--disable-migration" ];
meta = with stdenv.lib; {
description = "The GNOME Terminal Emulator";
diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-user-share/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-user-share/default.nix
index e8f64983506..b1fb1eaf3dd 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gnome-user-share/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gnome-user-share/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/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
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
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
+ ${glib.dev}/bin/glib-compile-schemas $out/share/gsettings-schemas/$name/glib-2.0/schemas
'';
preFixup = ''
diff --git a/pkgs/desktops/gnome-3/3.18/core/libgdata/default.nix b/pkgs/desktops/gnome-3/3.18/core/libgdata/default.nix
index bedbbee2dfe..8e934e211f8 100644
--- a/pkgs/desktops/gnome-3/3.18/core/libgdata/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/libgdata/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
# TODO: need libuhttpmock
configureFlags = "--disable-tests";
- NIX_CFLAGS_COMPILE = "-I${gnome3.libsoup}/include/libsoup-gnome-2.4/ -I${gnome3.gcr}/include/gcr-3 -I${gnome3.gcr}/include/gck-1";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.libsoup.dev}/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
diff --git a/pkgs/desktops/gnome-3/3.18/core/mutter/default.nix b/pkgs/desktops/gnome-3/3.18/core/mutter/default.nix
index dd08a96cc23..a128990b402 100644
--- a/pkgs/desktops/gnome-3/3.18/core/mutter/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/mutter/default.nix
@@ -6,7 +6,7 @@ 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";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
configureFlags = "--with-x --disable-static --enable-shape --enable-sm --enable-startup-notification --enable-xsync --enable-verbose-mode --with-libcanberra";
diff --git a/pkgs/desktops/gnome-3/3.18/core/totem/default.nix b/pkgs/desktops/gnome-3/3.18/core/totem/default.nix
index cc35ede88f3..5ffdbc68cb7 100644
--- a/pkgs/desktops/gnome-3/3.18/core/totem/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/totem/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
diff --git a/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix b/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix
index fd7ecbea01f..02d7912b3a6 100644
--- a/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix
@@ -2,12 +2,12 @@
, pango, gtk3, gnome3, dbus, clutter, appstream-glib, makeWrapper }:
stdenv.mkDerivation rec {
- version = "${gnome3.version}.3";
+ version = "${gnome3.version}.4";
name = "gpaste-${version}";
src = fetchurl {
url = "https://github.com/Keruspe/GPaste/archive/v${version}.tar.gz";
- sha256 = "1fyrdgsn4m3fh8450qcic243sl7llfs44cdbspwpn5zb4h2hk8rj";
+ sha256 = "0x4yj3cdbgjys9g7d5j8ascr9y27skl5ys8csln7vsk525l12a7p";
};
buildInputs = [ intltool autoreconfHook pkgconfig vala glib
diff --git a/pkgs/desktops/gnome-3/3.18/misc/pidgin/default.nix b/pkgs/desktops/gnome-3/3.18/misc/pidgin/default.nix
index a2d8d146579..64f7920d9af 100644
--- a/pkgs/desktops/gnome-3/3.18/misc/pidgin/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/misc/pidgin/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
schemas_dir="$share_dir/gsettings-schemas/${name}/glib-2.0/schemas"
mkdir -p "$schemas_dir"
mv schemas/* "$schemas_dir" # fix Emacs syntax highlighting: */
- ${glib}/bin/glib-compile-schemas "$schemas_dir"
+ ${glib.dev}/bin/glib-compile-schemas "$schemas_dir"
locale_dir="$share_dir/locale"
mkdir -p "$locale_dir"
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 58c2325f5c4..e3d9176b816 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
@@ -34,7 +34,7 @@ plasmaPackage rec {
})
./0003-tzdir.patch
];
- NIX_CFLAGS_COMPILE = [ "-I${xorgserver}/include/xorg" ];
+ NIX_CFLAGS_COMPILE = [ "-I${xorgserver.dev}/include/xorg" ];
cmakeFlags = [
"-DEvdev_INCLUDE_DIRS=${xf86inputevdev}/include/xorg"
"-DSynaptics_INCLUDE_DIRS=${xf86inputsynaptics}/include/xorg"
diff --git a/pkgs/development/compilers/aliceml/default.nix b/pkgs/development/compilers/aliceml/default.nix
index 6fbc1a350f5..01a8a337fc0 100644
--- a/pkgs/development/compilers/aliceml/default.nix
+++ b/pkgs/development/compilers/aliceml/default.nix
@@ -39,7 +39,7 @@ stdenv.mkDerivation {
'';
buildPhase = ''
- gmp="${gmp}" zlib="${zlib}" PATH=$PATH:`pwd`/seam-support/install/bin make -C make all PREFIX="$out"
+ gmp="${gmp.dev}" zlib="${zlib.dev}" PATH=$PATH:`pwd`/seam-support/install/bin make -C make all PREFIX="$out"
'';
meta = {
diff --git a/pkgs/development/compilers/arachne-pnr/default.nix b/pkgs/development/compilers/arachne-pnr/default.nix
index 7926bf273ac..76df7c2828f 100644
--- a/pkgs/development/compilers/arachne-pnr/default.nix
+++ b/pkgs/development/compilers/arachne-pnr/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "arachne-pnr-${version}";
- version = "2015.12.29";
+ version = "2016.05.21";
src = fetchFromGitHub {
owner = "cseed";
repo = "arachne-pnr";
- rev = "1a4fdf96a7fd08806c032d41a2443c8e17c72c80";
- sha256 = "1dj7ycffwkmlsh12117fbybkdfnlhxbbxkbfgwfyvcgmg3cacgl1";
+ rev = "6b8336497800782f2f69572d40702b60423ec67f";
+ sha256 = "11hg17f4lp8azc0ir0i473fz9c0dra82r4fn45cr3amd57v00qbf";
};
preBuild = ''
diff --git a/pkgs/development/compilers/ecl/default.nix b/pkgs/development/compilers/ecl/default.nix
index 73c4755e9cd..4edfaa71512 100644
--- a/pkgs/development/compilers/ecl/default.nix
+++ b/pkgs/development/compilers/ecl/default.nix
@@ -30,8 +30,8 @@ stdenv.mkDerivation {
configureFlags = [
"--enable-threads"
- "--with-gmp-prefix=${gmp}"
- "--with-libffi-prefix=${libffi}"
+ "--with-gmp-prefix=${gmp.dev}"
+ "--with-libffi-prefix=${libffi.dev}"
]
++
(stdenv.lib.optional (! noUnicode)
diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix
index 360273a7eca..08f69ba8776 100644
--- a/pkgs/development/compilers/elm/default.nix
+++ b/pkgs/development/compilers/elm/default.nix
@@ -63,6 +63,16 @@ let
'';
});
+ /*
+ This is not a core Elm package, and it's hosted on GitHub.
+ To update, run:
+
+ cabal2nix --jailbreak --revision refs/tags/foo http://github.com/avh4/elm-format > packages/elm-format.nix
+
+ where foo is a tag for a new version, for example "0.3.1-alpha".
+ */
+ elm-format = self.callPackage ./packages/elm-format.nix { };
+
};
in elmPkgs // {
inherit elmPkgs;
diff --git a/pkgs/development/compilers/elm/packages/elm-format.nix b/pkgs/development/compilers/elm/packages/elm-format.nix
new file mode 100644
index 00000000000..12550e46a97
--- /dev/null
+++ b/pkgs/development/compilers/elm/packages/elm-format.nix
@@ -0,0 +1,36 @@
+{ mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base, binary
+, bytestring, containers, directory, edit-distance, fetchgit
+, filemanip, filepath, HUnit, indents, mtl, optparse-applicative
+, parsec, pretty, process, QuickCheck, quickcheck-io
+, regex-applicative, split, stdenv, test-framework
+, test-framework-hunit, test-framework-quickcheck2, text
+, union-find, wl-pprint
+}:
+mkDerivation {
+ pname = "elm-format";
+ version = "0.3.1";
+ src = fetchgit {
+ url = "http://github.com/avh4/elm-format";
+ sha256 = "04kl50kzvjf4i140dlhs6f9fd2wmk6cnvyfamx2xh8vbwbnwrkj4";
+ rev = "0637f3772de2297d12ea35f5b66961e1d827552c";
+ };
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ aeson ansi-terminal ansi-wl-pprint base binary bytestring
+ containers directory edit-distance filemanip filepath indents mtl
+ optparse-applicative parsec pretty process regex-applicative split
+ text
+ ];
+ testHaskellDepends = [
+ aeson ansi-terminal base binary bytestring containers directory
+ edit-distance filemanip filepath HUnit indents mtl parsec pretty
+ process QuickCheck quickcheck-io regex-applicative split
+ test-framework test-framework-hunit test-framework-quickcheck2 text
+ union-find wl-pprint
+ ];
+ jailbreak = true;
+ homepage = "http://elm-lang.org";
+ description = "A source code formatter for Elm";
+ license = stdenv.lib.licenses.bsd3;
+}
diff --git a/pkgs/development/compilers/elm/packages/release.nix b/pkgs/development/compilers/elm/packages/release.nix
index 742ada2481e..531da88452f 100644
--- a/pkgs/development/compilers/elm/packages/release.nix
+++ b/pkgs/development/compilers/elm/packages/release.nix
@@ -1,6 +1,8 @@
+# This file is auto-generated by ./update-elm.rb.
+# Please, do not modify it by hand!
{ callPackage }:
{
- version = "0.17.0";
+ version = "0.17";
packages = {
elm-compiler = callPackage ./elm-compiler.nix { };
elm-package = callPackage ./elm-package.nix { };
diff --git a/pkgs/development/compilers/elm/update-elm.rb b/pkgs/development/compilers/elm/update-elm.rb
index 53dd0f88fa0..e27279604ae 100755
--- a/pkgs/development/compilers/elm/update-elm.rb
+++ b/pkgs/development/compilers/elm/update-elm.rb
@@ -14,6 +14,8 @@ for pkg, ver in $elm_packages
end
File.open("release.nix", 'w') do |file|
+ file.puts "# This file is auto-generated by ./update-elm.rb."
+ file.puts "# Please, do not modify it by hand!"
file.puts "{ callPackage }:"
file.puts "{"
file.puts " version = \"#{$elm_version}\";"
diff --git a/pkgs/development/compilers/emscripten-fastcomp/default.nix b/pkgs/development/compilers/emscripten-fastcomp/default.nix
index 330fa2a7939..9c540b0c10e 100644
--- a/pkgs/development/compilers/emscripten-fastcomp/default.nix
+++ b/pkgs/development/compilers/emscripten-fastcomp/default.nix
@@ -1,22 +1,24 @@
-{ stdenv, fetchgit, python }:
+{ stdenv, fetchFromGitHub, python }:
let
- tag = "1.35.4";
+ rev = "1.36.4";
in
stdenv.mkDerivation rec {
- name = "emscripten-fastcomp-${tag}";
+ name = "emscripten-fastcomp-${rev}";
- srcFC = fetchgit {
- url = git://github.com/kripken/emscripten-fastcomp;
- rev = "refs/tags/${tag}";
- sha256 = "3bd50787d78381f684f9b3f46fc91cc3d1803c3389e19ec41ee59c2deaf727d8";
+ srcFC = fetchFromGitHub {
+ owner = "kripken";
+ repo = "emscripten-fastcomp";
+ sha256 = "0838rl0n9hyq5dd0gmj5rvigbmk5mhrhzyjk0zd8mjs2mk8z510l";
+ inherit rev;
};
- srcFL = fetchgit {
- url = git://github.com/kripken/emscripten-fastcomp-clang;
- rev = "refs/tags/${tag}";
- sha256 = "ec0d22c04eec5f84695401e19a52704b28e8d2779b87388f399b5f63b54a9862";
+ srcFL = fetchFromGitHub {
+ owner = "kripken";
+ repo = "emscripten-fastcomp-clang";
+ sha256 = "169hfabamv3jmf88flhl4scwaxdh24196gwpz3sdb26lzcns519q";
+ inherit rev;
};
buildInputs = [ python ];
@@ -33,11 +35,12 @@ stdenv.mkDerivation rec {
make
cp -a Release/bin $out
'';
+
meta = with stdenv.lib; {
homepage = https://github.com/kripken/emscripten-fastcomp;
description = "emscripten llvm";
platforms = platforms.all;
- maintainers = with maintainers; [ bosu ];
+ maintainers = with maintainers; [ qknight matthewbauer ];
license = stdenv.lib.licenses.ncsa;
};
}
diff --git a/pkgs/development/compilers/emscripten/default.nix b/pkgs/development/compilers/emscripten/default.nix
index 0264c9d36d9..c78808b81bc 100644
--- a/pkgs/development/compilers/emscripten/default.nix
+++ b/pkgs/development/compilers/emscripten/default.nix
@@ -1,17 +1,18 @@
-{ stdenv, fetchgit, emscriptenfastcomp, python, nodejs, closurecompiler, jre }:
+{ stdenv, fetchFromGitHub, emscriptenfastcomp, python, nodejs, closurecompiler, jre }:
let
- tag = "1.35.4";
+ rev = "1.36.4";
appdir = "share/emscripten";
in
-stdenv.mkDerivation rec {
- name = "emscripten-${tag}";
+stdenv.mkDerivation {
+ name = "emscripten-${rev}";
- src = fetchgit {
- url = git://github.com/kripken/emscripten;
- rev = "refs/tags/${tag}";
- sha256 = "466500356c8c0fbcee495b2dbd2ccf0bf9d7eaf303d274ebaf491122759dd233";
+ src = fetchFromGitHub {
+ owner = "kripken";
+ repo = "emscripten";
+ sha256 = "1c9592i891z1v9rp4a4lnsp14nwiqfxnh37g6xwwjd1bqx7x4hn7";
+ inherit rev;
};
buildCommand = ''
@@ -34,11 +35,12 @@ stdenv.mkDerivation rec {
echo "CLOSURE_COMPILER = '${closurecompiler}/share/java/compiler.jar'" >> $out/${appdir}/config
echo "JAVA = '${jre}/bin/java'" >> $out/${appdir}/config
'';
+
meta = with stdenv.lib; {
homepage = https://github.com/kripken/emscripten;
description = "An LLVM-to-JavaScript Compiler";
platforms = platforms.all;
- maintainers = with maintainers; [ bosu ];
+ maintainers = with maintainers; [ qknight matthewbauer ];
license = licenses.ncsa;
};
}
diff --git a/pkgs/development/compilers/gcc/4.5/default.nix b/pkgs/development/compilers/gcc/4.5/default.nix
index 7d84cb24516..db178db69a9 100644
--- a/pkgs/development/compilers/gcc/4.5/default.nix
+++ b/pkgs/development/compilers/gcc/4.5/default.nix
@@ -167,7 +167,7 @@ stdenv.mkDerivation ({
++ stdenv.lib.optional (libpthread != null) libpthread;
extraCPPSpec =
concatStrings (intersperse " "
- (map (x: "-I${x}/include") extraCPPDeps));
+ (map (x: "-I${x.dev or x}/include") extraCPPDeps));
extraLibSpec =
if libpthreadCross != null
then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}"
@@ -236,8 +236,8 @@ stdenv.mkDerivation ({
else ""}
${if javaAwtGtk then "--enable-java-awt=gtk" else ""}
${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr}" else ""}
- --with-gmp=${gmp}
- --with-mpfr=${mpfr}
+ --with-gmp=${gmp.dev}
+ --with-mpfr=${mpfr.dev}
--with-mpc=${libmpc}
${if libelf != null then "--with-libelf=${libelf}" else ""}
--disable-libstdcxx-pch
@@ -325,7 +325,7 @@ stdenv.mkDerivation ({
# Likewise, the LTO code doesn't find zlib.
CPATH = concatStrings
- (intersperse ":" (map (x: x + "/include")
+ (intersperse ":" (map (x: "${x.dev or x}/include")
(optionals (zlib != null) [ zlib ]
++ optionals langJava [ boehmgc ]
++ optionals javaAwtGtk xlibs
diff --git a/pkgs/development/compilers/gcc/4.6/default.nix b/pkgs/development/compilers/gcc/4.6/default.nix
index bdffbc043d0..ce37ec7d02d 100644
--- a/pkgs/development/compilers/gcc/4.6/default.nix
+++ b/pkgs/development/compilers/gcc/4.6/default.nix
@@ -217,7 +217,7 @@ stdenv.mkDerivation ({
++ stdenv.lib.optional (libpthread != null) libpthread;
extraCPPSpec =
concatStrings (intersperse " "
- (map (x: "-I${x}/include") extraCPPDeps));
+ (map (x: "-I${x.dev or x}/include") extraCPPDeps));
extraLibSpec =
if libpthreadCross != null
then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}"
@@ -297,8 +297,8 @@ stdenv.mkDerivation ({
else ""}
${if javaAwtGtk then "--enable-java-awt=gtk" else ""}
${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr}" else ""}
- --with-gmp=${gmp}
- --with-mpfr=${mpfr}
+ --with-gmp=${gmp.dev}
+ --with-mpfr=${mpfr.dev}
--with-mpc=${libmpc}
${if libelf != null then "--with-libelf=${libelf}" else ""}
--disable-libstdcxx-pch
@@ -400,7 +400,7 @@ stdenv.mkDerivation ({
# Likewise, the LTO code doesn't find zlib.
CPATH = concatStrings
- (intersperse ":" (map (x: x + "/include")
+ (intersperse ":" (map (x: "${x.dev or x}/include")
(optionals (zlib != null) [ zlib ]
++ optionals langJava [ boehmgc ]
++ optionals javaAwtGtk xlibs
diff --git a/pkgs/development/compilers/gcc/4.8/default.nix b/pkgs/development/compilers/gcc/4.8/default.nix
index bc6c64eb709..d80fd5e99a6 100644
--- a/pkgs/development/compilers/gcc/4.8/default.nix
+++ b/pkgs/development/compilers/gcc/4.8/default.nix
@@ -243,7 +243,7 @@ stdenv.mkDerivation ({
++ stdenv.lib.optional (libpthread != null) libpthread;
extraCPPSpec =
concatStrings (intersperse " "
- (map (x: "-I${x}/include") extraCPPDeps));
+ (map (x: "-I${x.dev or x}/include") extraCPPDeps));
extraLibSpec =
if libpthreadCross != null
then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}"
@@ -340,8 +340,8 @@ stdenv.mkDerivation ({
else ""}
${if javaAwtGtk then "--enable-java-awt=gtk" else ""}
${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr}" else ""}
- --with-gmp=${gmp}
- --with-mpfr=${mpfr}
+ --with-gmp=${gmp.dev}
+ --with-mpfr=${mpfr.dev}
--with-mpc=${libmpc}
${if libelf != null then "--with-libelf=${libelf}" else ""}
--disable-libstdcxx-pch
@@ -462,7 +462,7 @@ stdenv.mkDerivation ({
# Likewise, the LTO code doesn't find zlib.
CPATH = concatStrings
- (intersperse ":" (map (x: x + "/include")
+ (intersperse ":" (map (x: "${x.dev or x}/include")
(optionals (zlib != null) [ zlib ]
++ optionals langJava [ boehmgc ]
++ optionals javaAwtGtk xlibs
diff --git a/pkgs/development/compilers/gcc/4.9/default.nix b/pkgs/development/compilers/gcc/4.9/default.nix
index 7e6da2dc93e..ab67f8e0442 100644
--- a/pkgs/development/compilers/gcc/4.9/default.nix
+++ b/pkgs/development/compilers/gcc/4.9/default.nix
@@ -246,7 +246,7 @@ stdenv.mkDerivation ({
++ stdenv.lib.optional (libpthread != null) libpthread;
extraCPPSpec =
concatStrings (intersperse " "
- (map (x: "-I${x}/include") extraCPPDeps));
+ (map (x: "-I${x.dev or x}/include") extraCPPDeps));
extraLibSpec =
if libpthreadCross != null
then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}"
@@ -347,8 +347,8 @@ stdenv.mkDerivation ({
else ""}
${if javaAwtGtk then "--enable-java-awt=gtk" else ""}
${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr}" else ""}
- --with-gmp=${gmp}
- --with-mpfr=${mpfr}
+ --with-gmp=${gmp.dev}
+ --with-mpfr=${mpfr.dev}
--with-mpc=${libmpc}
${if libelf != null then "--with-libelf=${libelf}" else ""}
--disable-libstdcxx-pch
@@ -469,7 +469,7 @@ stdenv.mkDerivation ({
# Likewise, the LTO code doesn't find zlib.
CPATH = concatStrings
- (intersperse ":" (map (x: x + "/include")
+ (intersperse ":" (map (x: "${x.dev or x}/include")
(optionals (zlib != null) [ zlib ]
++ optionals langJava [ boehmgc ]
++ optionals javaAwtGtk xlibs
diff --git a/pkgs/development/compilers/gcc/5/default.nix b/pkgs/development/compilers/gcc/5/default.nix
index fe48cdfd485..c1db238a89f 100644
--- a/pkgs/development/compilers/gcc/5/default.nix
+++ b/pkgs/development/compilers/gcc/5/default.nix
@@ -245,7 +245,7 @@ stdenv.mkDerivation ({
++ stdenv.lib.optional (libpthread != null) libpthread;
extraCPPSpec =
concatStrings (intersperse " "
- (map (x: "-I${x}/include") extraCPPDeps));
+ (map (x: "-I${x.dev or x}/include") extraCPPDeps));
extraLibSpec =
if libpthreadCross != null
then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}"
@@ -342,8 +342,8 @@ stdenv.mkDerivation ({
else ""}
${if javaAwtGtk then "--enable-java-awt=gtk" else ""}
${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr}" else ""}
- --with-gmp=${gmp}
- --with-mpfr=${mpfr}
+ --with-gmp=${gmp.dev}
+ --with-mpfr=${mpfr.dev}
--with-mpc=${libmpc}
${if libelf != null then "--with-libelf=${libelf}" else ""}
--disable-libstdcxx-pch
@@ -463,7 +463,7 @@ stdenv.mkDerivation ({
# Likewise, the LTO code doesn't find zlib.
CPATH = concatStrings
- (intersperse ":" (map (x: x + "/include")
+ (intersperse ":" (map (x: "${x.dev or x}/include")
(optionals (zlib != null) [ zlib ]
++ optionals langJava [ boehmgc ]
++ optionals javaAwtGtk xlibs
diff --git a/pkgs/development/compilers/gcc/builder.sh b/pkgs/development/compilers/gcc/builder.sh
index 5b206a63daa..22107e72ef7 100644
--- a/pkgs/development/compilers/gcc/builder.sh
+++ b/pkgs/development/compilers/gcc/builder.sh
@@ -201,23 +201,20 @@ postConfigure() {
preInstall() {
- # Make ‘lib64’ a symlink to ‘lib’.
+ # Make ‘lib64’ symlinks to ‘lib’.
if [ -n "$is64bit" -a -z "$enableMultilib" ]; then
- mkdir -p $out/lib
- ln -s lib $out/lib64
+ mkdir -p "$out/lib"
+ ln -s lib "$out/lib64"
+ mkdir -p "$lib/lib"
+ ln -s lib "$lib/lib64"
fi
}
postInstall() {
- mkdir -p "$lib" # some configs don't have anything to put into $lib
-
# Move runtime libraries to $lib.
moveToOutput "lib/lib*.so*" "$lib"
moveToOutput "lib/lib*.la" "$lib"
- if [ -d "$lib/lib" ]; then
- ln -s lib "$lib/lib64" # for *.la
- fi
moveToOutput "share/gcc-*/python" "$lib"
for i in "$lib"/lib/*.{la,py}; do
diff --git a/pkgs/development/compilers/gcc/gfortran-darwin.nix b/pkgs/development/compilers/gcc/gfortran-darwin.nix
index 5162f311e4e..48caeea5f1f 100644
--- a/pkgs/development/compilers/gcc/gfortran-darwin.nix
+++ b/pkgs/development/compilers/gcc/gfortran-darwin.nix
@@ -27,10 +27,10 @@ stdenv.mkDerivation rec {
--enable-checking=release
--enable-languages=fortran
--with-cloog=${cloog}
- --with-gmp=${gmp}
+ --with-gmp=${gmp.dev}
--with-isl=${isl_0_14}
--with-mpc=${libmpc}
- --with-mpfr=${mpfr}
+ --with-mpfr=${mpfr.dev}
--with-native-system-header-dir=${Libsystem}/include
--with-system-zlib
'';
diff --git a/pkgs/development/compilers/ghc/7.0.4-binary.nix b/pkgs/development/compilers/ghc/7.0.4-binary.nix
index 77e5229a2a0..f0f54252b3f 100644
--- a/pkgs/development/compilers/ghc/7.0.4-binary.nix
+++ b/pkgs/development/compilers/ghc/7.0.4-binary.nix
@@ -89,7 +89,7 @@ stdenv.mkDerivation rec {
configurePhase = ''
./configure --prefix=$out \
- --with-gmp-libraries=${gmp.out}/lib --with-gmp-includes=${gmp}/include \
+ --with-gmp-libraries=${gmp.out or gmp}/lib --with-gmp-includes=${gmp.dev or gmp}/include \
${stdenv.lib.optionalString stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}"}
'';
diff --git a/pkgs/development/compilers/ghc/7.4.2-binary.nix b/pkgs/development/compilers/ghc/7.4.2-binary.nix
index c9f281980d9..07137578585 100644
--- a/pkgs/development/compilers/ghc/7.4.2-binary.nix
+++ b/pkgs/development/compilers/ghc/7.4.2-binary.nix
@@ -91,7 +91,7 @@ stdenv.mkDerivation rec {
configurePhase = ''
./configure --prefix=$out \
- --with-gmp-libraries=${gmp.out}/lib --with-gmp-includes=${gmp}/include \
+ --with-gmp-libraries=${gmp.out or gmp}/lib --with-gmp-includes=${gmp.dev or gmp}/include \
${stdenv.lib.optionalString stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}"}
'';
diff --git a/pkgs/development/compilers/ghc/8.0.1.nix b/pkgs/development/compilers/ghc/8.0.1.nix
index dcbdee46da8..612c237735c 100644
--- a/pkgs/development/compilers/ghc/8.0.1.nix
+++ b/pkgs/development/compilers/ghc/8.0.1.nix
@@ -5,7 +5,7 @@
let
inherit (bootPkgs) ghc;
-in
+in
stdenv.mkDerivation rec {
version = "8.0.1";
name = "ghc-${version}";
@@ -33,8 +33,8 @@ stdenv.mkDerivation rec {
configureFlags = [
"--with-gcc=${stdenv.cc}/bin/cc"
- "--with-gmp-includes=${gmp}/include" "--with-gmp-libraries=${gmp.out}/lib"
- "--with-curses-includes=${ncurses}/include" "--with-curses-libraries=${ncurses.out}/lib"
+ "--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
+ "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
] ++ stdenv.lib.optional stdenv.isDarwin [
"--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
];
diff --git a/pkgs/development/compilers/hhvm/default.nix b/pkgs/development/compilers/hhvm/default.nix
index 23f0484e8ea..eb9e5f7d362 100644
--- a/pkgs/development/compilers/hhvm/default.nix
+++ b/pkgs/development/compilers/hhvm/default.nix
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
MYSQL_DIR=mariadb;
# work around broken build system
- NIX_CFLAGS_COMPILE = "-I${freetype}/include/freetype2";
+ NIX_CFLAGS_COMPILE = "-I${freetype.dev}/include/freetype2";
prePatch = ''
substituteInPlace hphp/util/generate-buildinfo.sh \
diff --git a/pkgs/development/compilers/jsonnet/default.nix b/pkgs/development/compilers/jsonnet/default.nix
index 3489d03c5cc..da91bd3a547 100644
--- a/pkgs/development/compilers/jsonnet/default.nix
+++ b/pkgs/development/compilers/jsonnet/default.nix
@@ -31,5 +31,6 @@ stdenv.mkDerivation {
maintainers = [ lib.maintainers.benley ];
license = lib.licenses.asl20;
homepage = https://github.com/google/jsonnet;
+ platforms = lib.platforms.unix;
};
}
diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix
index 185dd278fba..871d4d568cd 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre, unzip }:
stdenv.mkDerivation rec {
- version = "1.0.1-2";
+ version = "1.0.2";
name = "kotlin-${version}";
src = fetchurl {
url = "https://github.com/JetBrains/kotlin/releases/download/${version}/kotlin-compiler-${version}.zip";
- sha256 = "0kdfvkb7qh3icchxswai24ifsiw25y3mq1xxcsp8nd3jn9krnj87";
+ sha256 = "1m3j1ca0kvryqarvpscrb9mvmsscd1sc8vfjsz03br6h2hwmnr3z";
};
propagatedBuildInputs = [ jre ] ;
diff --git a/pkgs/development/compilers/llvm/3.4/llvm.nix b/pkgs/development/compilers/llvm/3.4/llvm.nix
index 59e8055efb2..7471974d00a 100644
--- a/pkgs/development/compilers/llvm/3.4/llvm.nix
+++ b/pkgs/development/compilers/llvm/3.4/llvm.nix
@@ -46,7 +46,7 @@ in stdenv.mkDerivation rec {
"-DLLVM_BUILD_TESTS=ON"
"-DLLVM_ENABLE_FFI=ON"
"-DLLVM_REQUIRES_RTTI=1"
- "-DLLVM_BINUTILS_INCDIR=${binutils}/include"
+ "-DLLVM_BINUTILS_INCDIR=${binutils.dev or binutils}/include"
"-DCMAKE_CXX_FLAGS=-std=c++11"
] ++ stdenv.lib.optional (!isDarwin) "-DBUILD_SHARED_LIBS=ON";
diff --git a/pkgs/development/compilers/llvm/3.5/llvm.nix b/pkgs/development/compilers/llvm/3.5/llvm.nix
index f16b6981dea..64df30dc23f 100644
--- a/pkgs/development/compilers/llvm/3.5/llvm.nix
+++ b/pkgs/development/compilers/llvm/3.5/llvm.nix
@@ -47,7 +47,7 @@ in stdenv.mkDerivation rec {
] ++ stdenv.lib.optional enableSharedLibraries
"-DBUILD_SHARED_LIBS=ON"
++ stdenv.lib.optional (!isDarwin)
- "-DLLVM_BINUTILS_INCDIR=${binutils}/include"
+ "-DLLVM_BINUTILS_INCDIR=${binutils.dev}/include"
++ stdenv.lib.optionals ( isDarwin) [
"-DCMAKE_CXX_FLAGS=-stdlib=libc++"
"-DCAN_TARGET_i386=false"
diff --git a/pkgs/development/compilers/llvm/3.6/llvm.nix b/pkgs/development/compilers/llvm/3.6/llvm.nix
index 2ccf9d1ed71..5941d788356 100644
--- a/pkgs/development/compilers/llvm/3.6/llvm.nix
+++ b/pkgs/development/compilers/llvm/3.6/llvm.nix
@@ -47,7 +47,7 @@ in stdenv.mkDerivation rec {
] ++ stdenv.lib.optional enableSharedLibraries
"-DBUILD_SHARED_LIBS=ON"
++ stdenv.lib.optional (!isDarwin)
- "-DLLVM_BINUTILS_INCDIR=${binutils}/include"
+ "-DLLVM_BINUTILS_INCDIR=${binutils.dev}/include"
++ stdenv.lib.optionals ( isDarwin) [
"-DCMAKE_CXX_FLAGS=-stdlib=libc++"
"-DCAN_TARGET_i386=false"
diff --git a/pkgs/development/compilers/llvm/3.7/llvm.nix b/pkgs/development/compilers/llvm/3.7/llvm.nix
index be527d87375..3a7829eca6d 100644
--- a/pkgs/development/compilers/llvm/3.7/llvm.nix
+++ b/pkgs/development/compilers/llvm/3.7/llvm.nix
@@ -50,7 +50,7 @@ in stdenv.mkDerivation rec {
] ++ stdenv.lib.optional enableSharedLibraries
"-DBUILD_SHARED_LIBS=ON"
++ stdenv.lib.optional (!isDarwin)
- "-DLLVM_BINUTILS_INCDIR=${binutils}/include"
+ "-DLLVM_BINUTILS_INCDIR=${binutils.dev}/include"
++ stdenv.lib.optionals ( isDarwin) [
"-DLLVM_ENABLE_LIBCXX=ON"
"-DCAN_TARGET_i386=false"
diff --git a/pkgs/development/compilers/llvm/3.8/libc++/default.nix b/pkgs/development/compilers/llvm/3.8/libc++/default.nix
index 00bfb3518b1..e4da582857a 100644
--- a/pkgs/development/compilers/llvm/3.8/libc++/default.nix
+++ b/pkgs/development/compilers/llvm/3.8/libc++/default.nix
@@ -3,7 +3,7 @@
stdenv.mkDerivation rec {
name = "libc++-${version}";
- src = fetch "libcxx" "0i7iyzk024krda5spfpfi8jksh83yp3bxqkal0xp76ffi11bszrm";
+ src = fetch "libcxx" "0yr3fh8vj38289b9cwk37zsy7x98dcd3kjy7xxy8mg20p48lb01n";
postUnpack = ''
unpackFile ${libcxxabi.src}
diff --git a/pkgs/development/compilers/llvm/3.8/libc++abi.nix b/pkgs/development/compilers/llvm/3.8/libc++abi.nix
index ec0be51a11c..fdbc002688e 100644
--- a/pkgs/development/compilers/llvm/3.8/libc++abi.nix
+++ b/pkgs/development/compilers/llvm/3.8/libc++abi.nix
@@ -3,7 +3,7 @@
stdenv.mkDerivation {
name = "libc++abi-${version}";
- src = fetch "libcxxabi" "0ambfcmr2nh88hx000xb7yjm9lsqjjz49w5mlf6dlxzmj3nslzx4";
+ src = fetch "libcxxabi" "0175rv2ynkklbg96kpw13iwhnzyrlw3r12f4h09p9v7nmxqhivn5";
buildInputs = [ cmake ] ++ stdenv.lib.optional (!stdenv.isDarwin && !stdenv.isFreeBSD) libunwind;
diff --git a/pkgs/development/compilers/llvm/3.8/llvm.nix b/pkgs/development/compilers/llvm/3.8/llvm.nix
index db73999719d..ef929dec68b 100644
--- a/pkgs/development/compilers/llvm/3.8/llvm.nix
+++ b/pkgs/development/compilers/llvm/3.8/llvm.nix
@@ -35,6 +35,13 @@ in stdenv.mkDerivation rec {
propagatedBuildInputs = [ ncurses zlib ];
+ # hacky fix: New LLVM releases require a newer OS X SDK than
+ # 10.9. This is a temporary measure until nixpkgs darwin support is
+ # updated.
+ patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
+ sed -i 's/os_trace(\(.*\)");$/printf(\1\\n");/g' ./projects/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
+ '';
+
# hacky fix: created binaries need to be run before installation
preBuild = ''
mkdir -p $out/
@@ -50,7 +57,7 @@ in stdenv.mkDerivation rec {
] ++ stdenv.lib.optional enableSharedLibraries [
"-DLLVM_LINK_LLVM_DYLIB=ON"
] ++ stdenv.lib.optional (!isDarwin)
- "-DLLVM_BINUTILS_INCDIR=${binutils}/include"
+ "-DLLVM_BINUTILS_INCDIR=${binutils.dev}/include"
++ stdenv.lib.optionals ( isDarwin) [
"-DLLVM_ENABLE_LIBCXX=ON"
"-DCAN_TARGET_i386=false"
diff --git a/pkgs/development/compilers/mono/llvm.nix b/pkgs/development/compilers/mono/llvm.nix
index 74f85b1519c..de9339bb8a2 100644
--- a/pkgs/development/compilers/mono/llvm.nix
+++ b/pkgs/development/compilers/mono/llvm.nix
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
cmakeFlags = with stdenv; [
"-DCMAKE_BUILD_TYPE=Release"
"-DLLVM_ENABLE_FFI=ON"
- "-DLLVM_BINUTILS_INCDIR=${binutils}/include"
+ "-DLLVM_BINUTILS_INCDIR=${binutils.dev}/include"
"-DCMAKE_CXX_FLAGS=-std=c++11"
] ++ stdenv.lib.optional (!isDarwin) "-DBUILD_SHARED_LIBS=ON";
diff --git a/pkgs/development/compilers/opendylan/default.nix b/pkgs/development/compilers/opendylan/default.nix
index 66e62f8965e..0e26526ba16 100644
--- a/pkgs/development/compilers/opendylan/default.nix
+++ b/pkgs/development/compilers/opendylan/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
./autogen.sh
'';
- configureFlags = if stdenv.system == "i686-linux" then "--with-mps=$(TMPDIR)/mps" else "--with-gc=${boehmgc}";
+ configureFlags = if stdenv.system == "i686-linux" then "--with-mps=$(TMPDIR)/mps" else "--with-gc=${boehmgc.dev}";
buildPhase = "make 3-stage-bootstrap";
postInstall = "wrapProgram $out/bin/dylan-compiler --suffix PATH : ${gcc}/bin";
diff --git a/pkgs/development/compilers/oraclejdk/jdk8-linux.nix b/pkgs/development/compilers/oraclejdk/jdk8-linux.nix
index d6d783b8a30..0a9792f2b4a 100644
--- a/pkgs/development/compilers/oraclejdk/jdk8-linux.nix
+++ b/pkgs/development/compilers/oraclejdk/jdk8-linux.nix
@@ -1,9 +1,9 @@
import ./jdk-linux-base.nix {
productVersion = "8";
- patchVersion = "92";
+ patchVersion = "91";
downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html;
- sha256_i686 = "095j2hh2xas05jajy4qdj9hxq3k460x4m12rcaxkaxw754imj0vj";
- sha256_x86_64 = "11wrqd3qbkhimbw9n4g9i0635pjhhnijwxyid7lvjv26kdgg58vr";
+ sha256_i686 = "0lndni81vfpz2l6zb8zsshaavk0483q5jc8yzj4fdjv6wnshbkay";
+ sha256_x86_64 = "0lkm3fz1vdi69f34sysavvh3abx603j1frc9hxvr08pwvmm536vg";
jceName = "jce_policy-8.zip";
jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html;
sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk";
diff --git a/pkgs/development/compilers/picat/default.nix b/pkgs/development/compilers/picat/default.nix
new file mode 100644
index 00000000000..7f2f6158dd8
--- /dev/null
+++ b/pkgs/development/compilers/picat/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation {
+ name = "picat-1.9-4";
+
+ src = fetchurl {
+ url = http://picat-lang.org/download/picat19_src.tar.gz;
+ sha256 = "0wvl95gf4pjs93632g4wi0mw1glzzhjp9g4xg93ll2zxggbxibli";
+ };
+
+ ARCH = if stdenv.system == "i686-linux" then "linux32"
+ else if stdenv.system == "x86_64-linux" then "linux64"
+ else throw "Unsupported system";
+
+ buildPhase = ''
+ cd emu
+ make -f Makefile.picat.$ARCH
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp picat_$ARCH $out/bin/picat
+ '';
+
+ meta = {
+ description = "Logic-based programming langage";
+ longDescription = ''
+ Picat is a simple, and yet powerful, logic-based multi-paradigm
+ programming language aimed for general-purpose applications.
+ '';
+ homepage = http://picat-lang.org/;
+ license = stdenv.lib.licenses.mpl20;
+ platforms = stdenv.lib.platforms.linux;
+ };
+}
diff --git a/pkgs/development/compilers/rgbds/default.nix b/pkgs/development/compilers/rgbds/default.nix
index 827dd774e78..7233cceca05 100644
--- a/pkgs/development/compilers/rgbds/default.nix
+++ b/pkgs/development/compilers/rgbds/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
homepage = "https://www.anjbe.name/rgbds/";
description = "An assembler/linker package that produces Game Boy programs";
license = licenses.free;
- maintainers = with maintainers; [ mbauer ];
+ maintainers = with maintainers; [ matthewbauer ];
platforms = platforms.all;
};
}
diff --git a/pkgs/development/compilers/rustc/default.nix b/pkgs/development/compilers/rustc/default.nix
index 38d6cb0b6e7..6c5aa04d707 100644
--- a/pkgs/development/compilers/rustc/default.nix
+++ b/pkgs/development/compilers/rustc/default.nix
@@ -1,11 +1,11 @@
{ stdenv, callPackage }:
callPackage ./generic.nix {
- shortVersion = "1.8.0";
+ shortVersion = "1.9.0";
isRelease = true;
forceBundledLLVM = false;
configureFlags = [ "--release-channel=stable" ];
- srcSha = "1s03aymmhhrndq29sv9cs8s4p1sg8qvq8ds6lyp6s4ny8nyvdpzy";
+ srcSha = "0yg5admbypqld0gmxbhrh2yag5kxjklpjgldrp3pd5vczkl13aml";
/* Rust is bootstrapped from an earlier built version. We need
to fetch these earlier versions, which vary per platform.
@@ -15,12 +15,12 @@ callPackage ./generic.nix {
for the tagged release and not a snapshot in the current HEAD.
*/
- snapshotHashLinux686 = "5f194aa7628c0703f0fd48adc4ec7f3cc64b98c7";
- snapshotHashLinux64 = "d29b7607d13d64078b6324aec82926fb493f59ba";
- snapshotHashDarwin686 = "4c8e42dd649e247f3576bf9dfa273327b4907f9c";
- snapshotHashDarwin64 = "411a41363f922d1d93fa62ff2fedf5c35e9cccb2";
- snapshotDate = "2016-02-17";
- snapshotRev = "4d3eebf";
+ 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/urweb/default.nix b/pkgs/development/compilers/urweb/default.nix
index 5fbfd8a96ac..eebc8a56765 100644
--- a/pkgs/development/compilers/urweb/default.nix
+++ b/pkgs/development/compilers/urweb/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
sed -e 's@/usr/bin/file@${file}/bin/file@g' -i configure
'';
- configureFlags = "--with-openssl=${openssl}";
+ configureFlags = "--with-openssl=${openssl.dev}";
preConfigure = ''
export PGHEADER="${postgresql}/include/libpq-fe.h";
diff --git a/pkgs/development/compilers/wla-dx/default.nix b/pkgs/development/compilers/wla-dx/default.nix
index f91c555b6b9..13a48aaaa30 100644
--- a/pkgs/development/compilers/wla-dx/default.nix
+++ b/pkgs/development/compilers/wla-dx/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
homepage = "http://www.villehelin.com/wla.html";
description = "Yet Another GB-Z80/Z80/6502/65C02/6510/65816/HUC6280/SPC-700 Multi Platform Cross Assembler Package";
license = licenses.gpl2;
- maintainers = with maintainers; [ mbauer ];
+ maintainers = with maintainers; [ matthewbauer ];
platforms = platforms.all;
};
}
diff --git a/pkgs/development/compilers/yosys/default.nix b/pkgs/development/compilers/yosys/default.nix
index cfaabb0a71a..7c44e03d701 100644
--- a/pkgs/development/compilers/yosys/default.nix
+++ b/pkgs/development/compilers/yosys/default.nix
@@ -2,21 +2,21 @@
stdenv.mkDerivation rec {
name = "yosys-${version}";
- version = "2015.12.29";
+ version = "2016.05.21";
srcs = [
(fetchFromGitHub {
owner = "cliffordwolf";
repo = "yosys";
- rev = "1d62f8710f04fec405ef79b9e9a4a031afcf7d42";
- sha256 = "0q1dk9in3gmrihb58pjckncx56lj7y4b6y34jgb68f0fh91fdvfx";
+ rev = "8e9e793126a2772eed4b041bc60415943c71d5ee";
+ sha256 = "1s0x7n7qh2qbfc0d7p4q10fvkr61jdqgyqzijr422rabh9zl4val";
name = "yosys";
})
(fetchFromBitbucket {
owner = "alanmi";
repo = "abc";
- rev = "c3698e053a7a";
- sha256 = "05p0fvbr7xvb6w3d7j2r6gynr3ljb6r5q6jvn2zs3ysn2b003qwd";
+ rev = "d9559ab";
+ sha256 = "08far669khb65kfpqvjqmqln473j949ak07xibfdjdmiikcy533i";
name = "abc";
})
];
@@ -37,7 +37,6 @@ stdenv.mkDerivation rec {
Yosys is a framework for RTL synthesis tools. It currently has
extensive Verilog-2005 support and provides a basic set of
synthesis algorithms for various application domains.
-
Yosys can be adapted to perform any synthesis job by combining
the existing passes (algorithms) using synthesis scripts and
adding additional passes as needed by extending the yosys C++
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 b7195ac60c7..761e339cdb9 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
@@ -96,7 +96,7 @@ self: super: {
src = pkgs.fetchgit {
url = https://github.com/ekmett/linear.git;
rev = "8da21dc72714441cb34d6eabd6c224819787365c";
- sha256 = "08l0z6zrlbals2bwc2abbh31j9gf90vgp8sy3dcrp0knc98bgaa1";
+ sha256 = "0f4r7ww8aygxv0mqdsn9d7fjvrvr66f04v004kh2v5d01dp8d7f9";
};
});
@@ -161,4 +161,6 @@ self: super: {
buildDepends = [ primitive ];
license = pkgs.stdenv.lib.licenses.bsd3;
}) {};
+
+ MonadCatchIO-transformers = doJailbreak super.MonadCatchIO-transformers;
}
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix
index 650cbd38e6e..e510b06f195 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1117,6 +1118,7 @@ self: super: {
"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";
@@ -1445,6 +1447,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1753,6 +1756,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2173,6 +2177,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2314,6 +2319,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2337,6 +2343,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2462,6 +2469,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2579,6 +2587,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3015,6 +3024,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3030,6 +3040,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3114,6 +3125,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3175,6 +3187,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3507,6 +3520,7 @@ self: super: {
"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";
@@ -3536,6 +3550,7 @@ self: super: {
"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";
@@ -3543,6 +3558,8 @@ 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";
@@ -3576,6 +3593,7 @@ 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,9 +3622,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3620,6 +3640,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3959,6 +3980,7 @@ self: super: {
"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";
@@ -4033,6 +4055,8 @@ self: super: {
"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";
@@ -4113,6 +4137,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5040,6 +5065,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5101,6 +5127,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5111,6 +5138,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5121,6 +5149,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5147,6 +5176,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5274,6 +5304,7 @@ self: super: {
"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";
@@ -5737,6 +5768,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6274,6 +6306,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6316,6 +6349,7 @@ self: super: {
"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";
@@ -6366,6 +6400,7 @@ self: super: {
"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";
@@ -6380,6 +6415,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6482,6 +6518,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6500,6 +6537,7 @@ self: super: {
"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";
@@ -6924,6 +6962,7 @@ self: super: {
"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";
@@ -7017,6 +7056,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7026,6 +7066,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7057,6 +7098,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
@@ -7220,8 +7262,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7407,6 +7451,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7603,6 +7648,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7627,6 +7673,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7817,6 +7864,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7839,6 +7887,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_5";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7989,6 +8038,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8088,6 +8138,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8134,6 +8185,7 @@ self: super: {
"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";
@@ -8147,6 +8199,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8345,6 +8398,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework" = doDistribute super."test-framework_0_8_0_3";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
@@ -8365,6 +8419,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8377,6 +8432,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8416,6 +8472,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8462,6 +8519,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8558,6 +8616,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8625,6 +8684,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8947,6 +9007,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9061,6 +9122,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9115,6 +9177,7 @@ self: super: {
"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";
@@ -9139,6 +9202,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9263,6 +9327,7 @@ self: super: {
"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";
@@ -9347,6 +9412,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix
index 4cafbf175bc..d42231c5687 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1117,6 +1118,7 @@ self: super: {
"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";
@@ -1445,6 +1447,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1753,6 +1756,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2173,6 +2177,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2314,6 +2319,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2337,6 +2343,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2462,6 +2469,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2579,6 +2587,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3015,6 +3024,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3030,6 +3040,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3114,6 +3125,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3175,6 +3187,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3507,6 +3520,7 @@ self: super: {
"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";
@@ -3536,6 +3550,7 @@ self: super: {
"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";
@@ -3543,6 +3558,8 @@ 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";
@@ -3576,6 +3593,7 @@ 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,9 +3622,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3620,6 +3640,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3959,6 +3980,7 @@ self: super: {
"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";
@@ -4033,6 +4055,8 @@ self: super: {
"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";
@@ -4113,6 +4137,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5040,6 +5065,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5101,6 +5127,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5111,6 +5138,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5121,6 +5149,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5147,6 +5176,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5274,6 +5304,7 @@ self: super: {
"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";
@@ -5737,6 +5768,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6274,6 +6306,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6316,6 +6349,7 @@ self: super: {
"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";
@@ -6366,6 +6400,7 @@ self: super: {
"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";
@@ -6380,6 +6415,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6482,6 +6518,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6500,6 +6537,7 @@ self: super: {
"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";
@@ -6924,6 +6962,7 @@ self: super: {
"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";
@@ -7017,6 +7056,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7026,6 +7066,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7057,6 +7098,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
@@ -7220,8 +7262,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7407,6 +7451,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7603,6 +7648,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7627,6 +7673,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7817,6 +7864,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7839,6 +7887,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_5";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7989,6 +8038,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8088,6 +8138,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8134,6 +8185,7 @@ self: super: {
"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";
@@ -8147,6 +8199,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8345,6 +8398,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework" = doDistribute super."test-framework_0_8_0_3";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
@@ -8365,6 +8419,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8377,6 +8432,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8416,6 +8472,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8462,6 +8519,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8558,6 +8616,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8625,6 +8684,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8947,6 +9007,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9061,6 +9122,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9115,6 +9177,7 @@ self: super: {
"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";
@@ -9139,6 +9202,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9263,6 +9327,7 @@ self: super: {
"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";
@@ -9347,6 +9412,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix
index 443563ba934..f02675f360f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1117,6 +1118,7 @@ self: super: {
"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";
@@ -1445,6 +1447,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1753,6 +1756,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2173,6 +2177,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2314,6 +2319,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2337,6 +2343,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2462,6 +2469,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2579,6 +2587,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3015,6 +3024,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3030,6 +3040,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3114,6 +3125,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3175,6 +3187,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3507,6 +3520,7 @@ self: super: {
"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";
@@ -3536,6 +3550,7 @@ self: super: {
"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";
@@ -3543,6 +3558,8 @@ 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";
@@ -3576,6 +3593,7 @@ 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,9 +3622,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3620,6 +3640,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3959,6 +3980,7 @@ self: super: {
"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";
@@ -4033,6 +4055,8 @@ self: super: {
"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";
@@ -4113,6 +4137,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5040,6 +5065,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5101,6 +5127,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5111,6 +5138,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5121,6 +5149,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5147,6 +5176,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5274,6 +5304,7 @@ self: super: {
"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";
@@ -5737,6 +5768,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6274,6 +6306,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6316,6 +6349,7 @@ self: super: {
"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";
@@ -6366,6 +6400,7 @@ self: super: {
"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";
@@ -6380,6 +6415,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6482,6 +6518,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6500,6 +6537,7 @@ self: super: {
"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";
@@ -6924,6 +6962,7 @@ self: super: {
"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";
@@ -7017,6 +7056,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7026,6 +7066,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7057,6 +7098,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
@@ -7220,8 +7262,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7407,6 +7451,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7603,6 +7648,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7627,6 +7673,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7817,6 +7864,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7839,6 +7887,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_5";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7989,6 +8038,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8088,6 +8138,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8134,6 +8185,7 @@ self: super: {
"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";
@@ -8147,6 +8199,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8345,6 +8398,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework" = doDistribute super."test-framework_0_8_0_3";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
@@ -8365,6 +8419,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8377,6 +8432,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8416,6 +8472,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8462,6 +8519,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8558,6 +8616,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8625,6 +8684,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8947,6 +9007,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9061,6 +9122,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9115,6 +9177,7 @@ self: super: {
"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";
@@ -9139,6 +9202,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9263,6 +9327,7 @@ self: super: {
"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";
@@ -9347,6 +9412,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix
index 480526af9a2..cee02bac22f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1117,6 +1118,7 @@ self: super: {
"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";
@@ -1445,6 +1447,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1753,6 +1756,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2173,6 +2177,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2314,6 +2319,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2337,6 +2343,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2462,6 +2469,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2579,6 +2587,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3015,6 +3024,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3030,6 +3040,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3114,6 +3125,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3175,6 +3187,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3507,6 +3520,7 @@ self: super: {
"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";
@@ -3536,6 +3550,7 @@ self: super: {
"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";
@@ -3543,6 +3558,8 @@ 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";
@@ -3576,6 +3593,7 @@ 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,9 +3622,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3620,6 +3640,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3959,6 +3980,7 @@ self: super: {
"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";
@@ -4033,6 +4055,8 @@ self: super: {
"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";
@@ -4113,6 +4137,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5040,6 +5065,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5101,6 +5127,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5111,6 +5138,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5121,6 +5149,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5147,6 +5176,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5274,6 +5304,7 @@ self: super: {
"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";
@@ -5737,6 +5768,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6274,6 +6306,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6316,6 +6349,7 @@ self: super: {
"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";
@@ -6366,6 +6400,7 @@ self: super: {
"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";
@@ -6380,6 +6415,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6482,6 +6518,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6500,6 +6537,7 @@ self: super: {
"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";
@@ -6924,6 +6962,7 @@ self: super: {
"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";
@@ -7017,6 +7056,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7026,6 +7066,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7057,6 +7098,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
@@ -7220,8 +7262,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7407,6 +7451,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7603,6 +7648,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7627,6 +7673,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7817,6 +7864,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7839,6 +7887,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_5";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7989,6 +8038,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8088,6 +8138,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8134,6 +8185,7 @@ self: super: {
"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";
@@ -8147,6 +8199,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8345,6 +8398,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework" = doDistribute super."test-framework_0_8_0_3";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
@@ -8365,6 +8419,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8377,6 +8432,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8416,6 +8472,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8462,6 +8519,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8558,6 +8616,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8625,6 +8684,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8947,6 +9007,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9061,6 +9122,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9115,6 +9177,7 @@ self: super: {
"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";
@@ -9139,6 +9202,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9263,6 +9327,7 @@ self: super: {
"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";
@@ -9347,6 +9412,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix
index 4083103c25d..74ccbda2caa 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1117,6 +1118,7 @@ self: super: {
"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";
@@ -1445,6 +1447,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1753,6 +1756,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2173,6 +2177,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2314,6 +2319,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2337,6 +2343,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2462,6 +2469,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2579,6 +2587,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3014,6 +3023,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3029,6 +3039,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3113,6 +3124,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3174,6 +3186,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3506,6 +3519,7 @@ self: super: {
"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";
@@ -3535,6 +3549,7 @@ self: super: {
"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";
@@ -3542,6 +3557,8 @@ 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,6 +3592,7 @@ 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,9 +3621,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3619,6 +3639,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3956,6 +3977,7 @@ self: super: {
"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";
@@ -4030,6 +4052,8 @@ self: super: {
"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";
@@ -4110,6 +4134,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5037,6 +5062,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5098,6 +5124,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5108,6 +5135,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5118,6 +5146,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5144,6 +5173,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5271,6 +5301,7 @@ self: super: {
"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";
@@ -5734,6 +5765,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6271,6 +6303,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6313,6 +6346,7 @@ self: super: {
"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";
@@ -6363,6 +6397,7 @@ self: super: {
"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";
@@ -6377,6 +6412,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6479,6 +6515,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6497,6 +6534,7 @@ self: super: {
"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";
@@ -6921,6 +6959,7 @@ self: super: {
"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";
@@ -7014,6 +7053,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7023,6 +7063,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7054,6 +7095,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
@@ -7217,8 +7259,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7403,6 +7447,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7599,6 +7644,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7623,6 +7669,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7813,6 +7860,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7835,6 +7883,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_5";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7985,6 +8034,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8084,6 +8134,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8130,6 +8181,7 @@ self: super: {
"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";
@@ -8143,6 +8195,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8341,6 +8394,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework" = doDistribute super."test-framework_0_8_0_3";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
@@ -8361,6 +8415,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8373,6 +8428,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8412,6 +8468,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8458,6 +8515,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8554,6 +8612,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8621,6 +8680,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8943,6 +9003,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9057,6 +9118,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9111,6 +9173,7 @@ self: super: {
"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";
@@ -9135,6 +9198,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9259,6 +9323,7 @@ self: super: {
"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";
@@ -9343,6 +9408,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix
index 46d0d2119f8..6454037b422 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1117,6 +1118,7 @@ self: super: {
"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";
@@ -1445,6 +1447,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1753,6 +1756,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2173,6 +2177,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2314,6 +2319,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2337,6 +2343,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2462,6 +2469,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2579,6 +2587,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3014,6 +3023,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3029,6 +3039,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3113,6 +3124,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3174,6 +3186,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3506,6 +3519,7 @@ self: super: {
"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";
@@ -3535,6 +3549,7 @@ self: super: {
"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";
@@ -3542,6 +3557,8 @@ 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,6 +3592,7 @@ 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,9 +3621,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3619,6 +3639,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3956,6 +3977,7 @@ self: super: {
"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";
@@ -4030,6 +4052,8 @@ self: super: {
"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";
@@ -4110,6 +4134,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5037,6 +5062,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5098,6 +5124,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5108,6 +5135,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5118,6 +5146,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5144,6 +5173,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5271,6 +5301,7 @@ self: super: {
"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";
@@ -5734,6 +5765,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6271,6 +6303,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6313,6 +6346,7 @@ self: super: {
"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";
@@ -6363,6 +6397,7 @@ self: super: {
"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";
@@ -6377,6 +6412,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6479,6 +6515,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6497,6 +6534,7 @@ self: super: {
"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";
@@ -6921,6 +6959,7 @@ self: super: {
"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";
@@ -7014,6 +7053,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7023,6 +7063,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7054,6 +7095,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
@@ -7217,8 +7259,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7403,6 +7447,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7599,6 +7644,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7623,6 +7669,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7813,6 +7860,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7835,6 +7883,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_5";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7985,6 +8034,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8084,6 +8134,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8130,6 +8181,7 @@ self: super: {
"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";
@@ -8143,6 +8195,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8341,6 +8394,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework" = doDistribute super."test-framework_0_8_1_0";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
@@ -8361,6 +8415,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8373,6 +8428,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8412,6 +8468,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8458,6 +8515,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8554,6 +8612,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8621,6 +8680,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8943,6 +9003,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9057,6 +9118,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9111,6 +9173,7 @@ self: super: {
"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";
@@ -9135,6 +9198,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9259,6 +9323,7 @@ self: super: {
"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";
@@ -9343,6 +9408,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix
index ace7afaccec..4192ec9ea09 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1116,6 +1117,7 @@ self: super: {
"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";
@@ -1444,6 +1446,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1752,6 +1755,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2172,6 +2176,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2313,6 +2318,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2336,6 +2342,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2461,6 +2468,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2578,6 +2586,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3013,6 +3022,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3028,6 +3038,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3112,6 +3123,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3173,6 +3185,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3505,6 +3518,7 @@ self: super: {
"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";
@@ -3534,6 +3548,7 @@ self: super: {
"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";
@@ -3541,6 +3556,8 @@ 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,6 +3591,7 @@ 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";
@@ -3602,9 +3620,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3618,6 +3638,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3955,6 +3976,7 @@ self: super: {
"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";
@@ -4029,6 +4051,8 @@ self: super: {
"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";
@@ -4109,6 +4133,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5035,6 +5060,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5096,6 +5122,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5106,6 +5133,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5116,6 +5144,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5142,6 +5171,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5269,6 +5299,7 @@ self: super: {
"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";
@@ -5732,6 +5763,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6269,6 +6301,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6311,6 +6344,7 @@ self: super: {
"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";
@@ -6361,6 +6395,7 @@ self: super: {
"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";
@@ -6375,6 +6410,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6477,6 +6513,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6495,6 +6532,7 @@ self: super: {
"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";
@@ -6919,6 +6957,7 @@ self: super: {
"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";
@@ -7012,6 +7051,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7021,6 +7061,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7052,6 +7093,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7215,8 +7257,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7400,6 +7444,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7596,6 +7641,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7620,6 +7666,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7810,6 +7857,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7832,6 +7880,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7982,6 +8031,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8081,6 +8131,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8127,6 +8178,7 @@ self: super: {
"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";
@@ -8140,6 +8192,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8338,6 +8391,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework" = doDistribute super."test-framework_0_8_1_0";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
@@ -8358,6 +8412,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8370,6 +8425,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8409,6 +8465,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8455,6 +8512,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8551,6 +8609,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8618,6 +8677,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8940,6 +9000,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9054,6 +9115,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9108,6 +9170,7 @@ self: super: {
"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";
@@ -9132,6 +9195,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9255,6 +9319,7 @@ self: super: {
"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";
@@ -9338,6 +9403,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix
index dd0c62bb142..5cbc6eddaeb 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1116,6 +1117,7 @@ self: super: {
"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";
@@ -1444,6 +1446,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1752,6 +1755,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2172,6 +2176,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2313,6 +2318,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2336,6 +2342,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2461,6 +2468,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2578,6 +2586,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3013,6 +3022,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3028,6 +3038,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3112,6 +3123,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3173,6 +3185,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3505,6 +3518,7 @@ self: super: {
"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";
@@ -3534,6 +3548,7 @@ self: super: {
"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";
@@ -3541,6 +3556,8 @@ 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,6 +3591,7 @@ 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";
@@ -3602,9 +3620,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3618,6 +3638,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3955,6 +3976,7 @@ self: super: {
"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";
@@ -4029,6 +4051,8 @@ self: super: {
"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";
@@ -4109,6 +4133,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5035,6 +5060,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5096,6 +5122,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5106,6 +5133,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5116,6 +5144,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5142,6 +5171,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5269,6 +5299,7 @@ self: super: {
"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";
@@ -5732,6 +5763,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6269,6 +6301,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6311,6 +6344,7 @@ self: super: {
"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";
@@ -6361,6 +6395,7 @@ self: super: {
"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";
@@ -6375,6 +6410,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6477,6 +6513,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6495,6 +6532,7 @@ self: super: {
"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";
@@ -6919,6 +6957,7 @@ self: super: {
"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";
@@ -7012,6 +7051,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7021,6 +7061,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7052,6 +7093,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7215,8 +7257,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7400,6 +7444,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7596,6 +7641,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7620,6 +7666,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7810,6 +7857,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7832,6 +7880,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7982,6 +8031,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8081,6 +8131,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8127,6 +8178,7 @@ self: super: {
"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";
@@ -8140,6 +8192,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8338,6 +8391,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework" = doDistribute super."test-framework_0_8_1_0";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
@@ -8358,6 +8412,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8370,6 +8425,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8409,6 +8465,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8455,6 +8512,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8551,6 +8609,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8618,6 +8677,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8940,6 +9000,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9054,6 +9115,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9108,6 +9170,7 @@ self: super: {
"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";
@@ -9132,6 +9195,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9255,6 +9319,7 @@ self: super: {
"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";
@@ -9338,6 +9403,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix
index 65d6fb97672..d786912d7ed 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix
@@ -679,6 +679,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1113,6 +1114,7 @@ self: super: {
"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";
@@ -1441,6 +1443,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1748,6 +1751,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2166,6 +2170,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2307,6 +2312,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2330,6 +2336,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2454,6 +2461,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2571,6 +2579,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3004,6 +3013,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3019,6 +3029,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3103,6 +3114,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3165,6 +3177,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3497,6 +3510,7 @@ self: super: {
"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";
@@ -3526,6 +3540,7 @@ self: super: {
"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";
@@ -3533,6 +3548,8 @@ 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";
@@ -3566,6 +3583,7 @@ 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";
@@ -3594,9 +3612,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3610,6 +3630,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3946,6 +3967,7 @@ self: super: {
"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";
@@ -4020,6 +4042,8 @@ self: super: {
"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";
@@ -4101,6 +4125,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5026,6 +5051,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5087,6 +5113,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5097,6 +5124,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5107,6 +5135,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5133,6 +5162,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5260,6 +5290,7 @@ self: super: {
"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";
@@ -5723,6 +5754,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6260,6 +6292,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6302,6 +6335,7 @@ self: super: {
"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";
@@ -6352,6 +6386,7 @@ self: super: {
"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";
@@ -6366,6 +6401,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6468,6 +6504,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6486,6 +6523,7 @@ self: super: {
"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";
@@ -6910,6 +6948,7 @@ self: super: {
"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";
@@ -7003,6 +7042,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7012,6 +7052,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7043,6 +7084,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7206,8 +7248,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7390,6 +7434,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7586,6 +7631,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7610,6 +7656,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7800,6 +7847,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7822,6 +7870,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7971,6 +8020,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8070,6 +8120,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8116,6 +8167,7 @@ self: super: {
"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";
@@ -8129,6 +8181,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8327,6 +8380,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework" = doDistribute super."test-framework_0_8_1_0";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
@@ -8347,6 +8401,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8359,6 +8414,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8398,6 +8454,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8444,6 +8501,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8540,6 +8598,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8607,6 +8666,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8928,6 +8988,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9042,6 +9103,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9096,6 +9158,7 @@ self: super: {
"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";
@@ -9120,6 +9183,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9243,6 +9307,7 @@ self: super: {
"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";
@@ -9326,6 +9391,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix
index a4f9f8619ce..dc5b496eaad 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix
@@ -679,6 +679,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1113,6 +1114,7 @@ self: super: {
"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";
@@ -1441,6 +1443,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1748,6 +1751,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2165,6 +2169,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2306,6 +2311,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2329,6 +2335,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2452,6 +2459,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2569,6 +2577,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3001,6 +3010,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3016,6 +3026,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3100,6 +3111,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3162,6 +3174,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3494,6 +3507,7 @@ self: super: {
"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";
@@ -3523,6 +3537,7 @@ self: super: {
"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";
@@ -3530,6 +3545,8 @@ 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,6 +3580,7 @@ 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";
@@ -3591,9 +3609,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3607,6 +3627,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3943,6 +3964,7 @@ self: super: {
"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";
@@ -4017,6 +4039,8 @@ self: super: {
"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";
@@ -4097,6 +4121,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5020,6 +5045,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5081,6 +5107,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5091,6 +5118,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5101,6 +5129,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5127,6 +5156,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5254,6 +5284,7 @@ self: super: {
"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";
@@ -5717,6 +5748,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6253,6 +6285,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6295,6 +6328,7 @@ self: super: {
"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";
@@ -6345,6 +6379,7 @@ self: super: {
"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";
@@ -6359,6 +6394,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6461,6 +6497,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6479,6 +6516,7 @@ self: super: {
"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";
@@ -6903,6 +6941,7 @@ self: super: {
"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";
@@ -6996,6 +7035,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7005,6 +7045,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7036,6 +7077,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7199,8 +7241,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7383,6 +7427,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7579,6 +7624,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7603,6 +7649,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7792,6 +7839,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7814,6 +7862,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7963,6 +8012,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8061,6 +8111,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8107,6 +8158,7 @@ self: super: {
"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";
@@ -8120,6 +8172,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8318,6 +8371,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8337,6 +8391,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8349,6 +8404,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8387,6 +8443,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8432,6 +8489,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8528,6 +8586,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8595,6 +8654,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8915,6 +8975,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9029,6 +9090,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9083,6 +9145,7 @@ self: super: {
"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";
@@ -9107,6 +9170,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9230,6 +9294,7 @@ self: super: {
"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";
@@ -9313,6 +9378,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix
index 18f9863b7cf..7b7afcd41e8 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"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";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3486,6 +3499,7 @@ self: super: {
"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";
@@ -3515,6 +3529,7 @@ self: super: {
"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";
@@ -3522,6 +3537,8 @@ 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";
@@ -3554,6 +3571,7 @@ 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";
@@ -3582,9 +3600,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3598,6 +3618,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3933,6 +3954,7 @@ self: super: {
"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";
@@ -4007,6 +4029,8 @@ self: super: {
"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";
@@ -4087,6 +4111,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5004,6 +5029,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5065,6 +5091,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5075,6 +5102,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5085,6 +5113,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5111,6 +5140,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5238,6 +5268,7 @@ self: super: {
"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";
@@ -5700,6 +5731,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6235,6 +6267,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6276,6 +6309,7 @@ self: super: {
"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";
@@ -6326,6 +6360,7 @@ self: super: {
"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";
@@ -6340,6 +6375,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6441,6 +6477,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6459,6 +6496,7 @@ self: super: {
"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";
@@ -6883,6 +6921,7 @@ self: super: {
"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";
@@ -6976,6 +7015,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6985,6 +7025,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7016,6 +7057,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7178,8 +7220,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7362,6 +7406,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7557,6 +7602,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7581,6 +7627,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7769,6 +7816,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7791,6 +7839,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7940,6 +7989,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8038,6 +8088,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8084,6 +8135,7 @@ self: super: {
"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";
@@ -8097,6 +8149,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8293,6 +8346,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8312,6 +8366,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8324,6 +8379,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8362,6 +8418,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8407,6 +8464,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8502,6 +8560,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8568,6 +8627,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8887,6 +8947,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9001,6 +9062,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9055,6 +9117,7 @@ self: super: {
"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";
@@ -9079,6 +9142,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9200,6 +9264,7 @@ self: super: {
"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";
@@ -9283,6 +9348,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix
index d695840afc3..b3eef1cd640 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"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";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3485,6 +3498,7 @@ self: super: {
"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";
@@ -3514,6 +3528,7 @@ self: super: {
"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";
@@ -3521,6 +3536,8 @@ 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";
@@ -3553,6 +3570,7 @@ 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";
@@ -3581,9 +3599,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3597,6 +3617,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3932,6 +3953,7 @@ self: super: {
"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";
@@ -4006,6 +4028,8 @@ self: super: {
"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";
@@ -4086,6 +4110,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5002,6 +5027,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5063,6 +5089,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5073,6 +5100,7 @@ self: super: {
"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";
@@ -5082,6 +5110,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5108,6 +5137,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5235,6 +5265,7 @@ self: super: {
"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";
@@ -5696,6 +5727,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6231,6 +6263,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6272,6 +6305,7 @@ self: super: {
"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";
@@ -6322,6 +6356,7 @@ self: super: {
"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";
@@ -6336,6 +6371,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6437,6 +6473,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6455,6 +6492,7 @@ self: super: {
"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";
@@ -6879,6 +6917,7 @@ self: super: {
"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";
@@ -6972,6 +7011,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6981,6 +7021,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7012,6 +7053,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7174,8 +7216,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7358,6 +7402,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7553,6 +7598,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7577,6 +7623,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7765,6 +7812,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7787,6 +7835,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7936,6 +7985,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8034,6 +8084,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8080,6 +8131,7 @@ self: super: {
"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";
@@ -8093,6 +8145,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8289,6 +8342,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8308,6 +8362,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8320,6 +8375,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8358,6 +8414,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8403,6 +8460,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8498,6 +8556,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8564,6 +8623,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8883,6 +8943,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8997,6 +9058,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9051,6 +9113,7 @@ self: super: {
"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";
@@ -9075,6 +9138,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9196,6 +9260,7 @@ self: super: {
"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";
@@ -9279,6 +9344,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix
index 1da893c7adb..d51a2aaa3d6 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"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";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3485,6 +3498,7 @@ self: super: {
"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";
@@ -3514,6 +3528,7 @@ self: super: {
"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";
@@ -3521,6 +3536,8 @@ 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";
@@ -3553,6 +3570,7 @@ 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";
@@ -3581,9 +3599,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3597,6 +3617,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3932,6 +3953,7 @@ self: super: {
"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";
@@ -4006,6 +4028,8 @@ self: super: {
"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";
@@ -4086,6 +4110,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5001,6 +5026,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5062,6 +5088,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5072,6 +5099,7 @@ self: super: {
"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";
@@ -5081,6 +5109,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5107,6 +5136,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5234,6 +5264,7 @@ self: super: {
"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";
@@ -5695,6 +5726,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6230,6 +6262,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6271,6 +6304,7 @@ self: super: {
"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";
@@ -6321,6 +6355,7 @@ self: super: {
"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";
@@ -6335,6 +6370,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6436,6 +6472,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6454,6 +6491,7 @@ self: super: {
"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";
@@ -6878,6 +6916,7 @@ self: super: {
"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";
@@ -6971,6 +7010,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6980,6 +7020,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7011,6 +7052,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7173,8 +7215,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7357,6 +7401,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7552,6 +7597,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7576,6 +7622,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7764,6 +7811,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7786,6 +7834,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7935,6 +7984,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8033,6 +8083,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8079,6 +8130,7 @@ self: super: {
"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";
@@ -8092,6 +8144,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8288,6 +8341,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8307,6 +8361,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8319,6 +8374,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8357,6 +8413,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8402,6 +8459,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8497,6 +8555,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8563,6 +8622,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8882,6 +8942,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8996,6 +9057,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9050,6 +9112,7 @@ self: super: {
"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";
@@ -9074,6 +9137,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9195,6 +9259,7 @@ self: super: {
"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";
@@ -9278,6 +9343,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix
index f40adc27b44..022b32d0e8e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"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";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3485,6 +3498,7 @@ self: super: {
"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";
@@ -3514,6 +3528,7 @@ self: super: {
"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";
@@ -3521,6 +3536,8 @@ 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";
@@ -3553,6 +3570,7 @@ 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";
@@ -3581,9 +3599,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3597,6 +3617,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3931,6 +3952,7 @@ self: super: {
"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";
@@ -4005,6 +4027,8 @@ self: super: {
"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";
@@ -4085,6 +4109,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5000,6 +5025,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5061,6 +5087,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5071,6 +5098,7 @@ self: super: {
"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";
@@ -5080,6 +5108,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5106,6 +5135,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5233,6 +5263,7 @@ self: super: {
"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";
@@ -5694,6 +5725,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6229,6 +6261,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6270,6 +6303,7 @@ self: super: {
"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";
@@ -6320,6 +6354,7 @@ self: super: {
"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";
@@ -6334,6 +6369,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6435,6 +6471,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6453,6 +6490,7 @@ self: super: {
"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";
@@ -6877,6 +6915,7 @@ self: super: {
"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";
@@ -6970,6 +7009,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6979,6 +7019,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7010,6 +7051,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7172,8 +7214,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7356,6 +7400,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7551,6 +7596,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7575,6 +7621,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7763,6 +7810,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7785,6 +7833,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7934,6 +7983,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8032,6 +8082,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8078,6 +8129,7 @@ self: super: {
"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";
@@ -8091,6 +8143,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8286,6 +8339,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8305,6 +8359,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8317,6 +8372,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8355,6 +8411,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8400,6 +8457,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8495,6 +8553,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8561,6 +8620,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8880,6 +8940,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8994,6 +9055,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9048,6 +9110,7 @@ self: super: {
"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";
@@ -9072,6 +9135,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9193,6 +9257,7 @@ self: super: {
"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";
@@ -9276,6 +9341,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix
index 503f9fbc5ba..18230ecb142 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix
@@ -677,6 +677,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1111,6 +1112,7 @@ self: super: {
"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";
@@ -1439,6 +1441,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1745,6 +1748,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2160,6 +2164,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2301,6 +2306,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2324,6 +2330,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2445,6 +2452,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2562,6 +2570,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2994,6 +3003,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3009,6 +3019,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3093,6 +3104,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3155,6 +3167,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3482,6 +3495,7 @@ self: super: {
"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";
@@ -3511,6 +3525,7 @@ self: super: {
"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";
@@ -3518,6 +3533,8 @@ 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,6 +3567,7 @@ 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,9 +3596,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3594,6 +3614,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3928,6 +3949,7 @@ self: super: {
"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";
@@ -4002,6 +4024,8 @@ self: super: {
"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";
@@ -4082,6 +4106,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4997,6 +5022,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5058,6 +5084,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5068,6 +5095,7 @@ self: super: {
"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";
@@ -5077,6 +5105,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5103,6 +5132,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5230,6 +5260,7 @@ self: super: {
"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";
@@ -5691,6 +5722,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6226,6 +6258,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6267,6 +6300,7 @@ self: super: {
"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";
@@ -6317,6 +6351,7 @@ self: super: {
"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";
@@ -6331,6 +6366,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6432,6 +6468,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6450,6 +6487,7 @@ self: super: {
"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";
@@ -6874,6 +6912,7 @@ self: super: {
"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";
@@ -6967,6 +7006,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6976,6 +7016,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7007,6 +7048,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7168,8 +7210,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7352,6 +7396,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7547,6 +7592,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7571,6 +7617,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7759,6 +7806,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7781,6 +7829,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7930,6 +7979,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8028,6 +8078,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8074,6 +8125,7 @@ self: super: {
"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";
@@ -8087,6 +8139,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8282,6 +8335,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8301,6 +8355,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8313,6 +8368,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8351,6 +8407,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8396,6 +8453,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8491,6 +8549,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8557,6 +8616,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8876,6 +8936,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8990,6 +9051,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9044,6 +9106,7 @@ self: super: {
"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";
@@ -9068,6 +9131,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9189,6 +9253,7 @@ self: super: {
"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";
@@ -9272,6 +9337,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix
index c8579330df6..644c5d4ea7f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix
@@ -677,6 +677,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1110,6 +1111,7 @@ self: super: {
"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";
@@ -1438,6 +1440,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1744,6 +1747,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2158,6 +2162,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2299,6 +2304,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2322,6 +2328,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2443,6 +2450,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2559,6 +2567,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2991,6 +3000,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3006,6 +3016,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3089,6 +3100,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3151,6 +3163,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3478,6 +3491,7 @@ self: super: {
"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";
@@ -3507,6 +3521,7 @@ self: super: {
"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";
@@ -3514,6 +3529,8 @@ 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,6 +3563,7 @@ 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,9 +3592,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3590,6 +3610,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3924,6 +3945,7 @@ self: super: {
"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";
@@ -3998,6 +4020,8 @@ self: super: {
"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";
@@ -4078,6 +4102,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4993,6 +5018,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5054,6 +5080,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5064,6 +5091,7 @@ self: super: {
"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";
@@ -5073,6 +5101,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5099,6 +5128,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5226,6 +5256,7 @@ self: super: {
"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";
@@ -5687,6 +5718,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6220,6 +6252,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6261,6 +6294,7 @@ self: super: {
"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";
@@ -6311,6 +6345,7 @@ self: super: {
"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";
@@ -6325,6 +6360,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6426,6 +6462,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6444,6 +6481,7 @@ self: super: {
"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";
@@ -6868,6 +6906,7 @@ self: super: {
"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";
@@ -6961,6 +7000,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6970,6 +7010,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7001,6 +7042,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
@@ -7161,8 +7203,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7345,6 +7389,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7540,6 +7585,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7564,6 +7610,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7752,6 +7799,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7774,6 +7822,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7923,6 +7972,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8020,6 +8070,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8065,6 +8116,7 @@ self: super: {
"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";
@@ -8078,6 +8130,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8273,6 +8326,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8292,6 +8346,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8304,6 +8359,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8342,6 +8398,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8387,6 +8444,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8482,6 +8540,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8548,6 +8607,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8867,6 +8927,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8981,6 +9042,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9035,6 +9097,7 @@ self: super: {
"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";
@@ -9058,6 +9121,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9179,6 +9243,7 @@ self: super: {
"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";
@@ -9262,6 +9327,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix
index 91ea67ba52b..5d8751bdcdb 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix
@@ -679,6 +679,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1113,6 +1114,7 @@ self: super: {
"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";
@@ -1441,6 +1443,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1748,6 +1751,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2164,6 +2168,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2305,6 +2310,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2328,6 +2334,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2450,6 +2457,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2567,6 +2575,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2999,6 +3008,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3014,6 +3024,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3098,6 +3109,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3160,6 +3172,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3492,6 +3505,7 @@ self: super: {
"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";
@@ -3521,6 +3535,7 @@ self: super: {
"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";
@@ -3528,6 +3543,8 @@ 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";
@@ -3560,6 +3577,7 @@ 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";
@@ -3588,9 +3606,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3604,6 +3624,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3940,6 +3961,7 @@ self: super: {
"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";
@@ -4014,6 +4036,8 @@ self: super: {
"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";
@@ -4094,6 +4118,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5017,6 +5042,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5078,6 +5104,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5088,6 +5115,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5098,6 +5126,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5124,6 +5153,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5251,6 +5281,7 @@ self: super: {
"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";
@@ -5714,6 +5745,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6250,6 +6282,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6292,6 +6325,7 @@ self: super: {
"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";
@@ -6342,6 +6376,7 @@ self: super: {
"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";
@@ -6356,6 +6391,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6457,6 +6493,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6475,6 +6512,7 @@ self: super: {
"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";
@@ -6899,6 +6937,7 @@ self: super: {
"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";
@@ -6992,6 +7031,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7001,6 +7041,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7032,6 +7073,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7194,8 +7236,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7378,6 +7422,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7573,6 +7618,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7597,6 +7643,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7786,6 +7833,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7808,6 +7856,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7957,6 +8006,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8055,6 +8105,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8101,6 +8152,7 @@ self: super: {
"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";
@@ -8114,6 +8166,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8312,6 +8365,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8331,6 +8385,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8343,6 +8398,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8381,6 +8437,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8426,6 +8483,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8522,6 +8580,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8589,6 +8648,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8909,6 +8969,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9023,6 +9084,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9077,6 +9139,7 @@ self: super: {
"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";
@@ -9101,6 +9164,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9224,6 +9288,7 @@ self: super: {
"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";
@@ -9307,6 +9372,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix
index 63e9fcbaad2..3a7b0040c7e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"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";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2163,6 +2167,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2304,6 +2309,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2327,6 +2333,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2449,6 +2456,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2566,6 +2574,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2998,6 +3007,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3013,6 +3023,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3097,6 +3108,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3159,6 +3171,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3490,6 +3503,7 @@ self: super: {
"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";
@@ -3519,6 +3533,7 @@ self: super: {
"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";
@@ -3526,6 +3541,8 @@ 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";
@@ -3558,6 +3575,7 @@ 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";
@@ -3586,9 +3604,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3602,6 +3622,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3938,6 +3959,7 @@ self: super: {
"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";
@@ -4012,6 +4034,8 @@ self: super: {
"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";
@@ -4092,6 +4116,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5014,6 +5039,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5075,6 +5101,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5085,6 +5112,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5095,6 +5123,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5121,6 +5150,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5248,6 +5278,7 @@ self: super: {
"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";
@@ -5711,6 +5742,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6246,6 +6278,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6288,6 +6321,7 @@ self: super: {
"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";
@@ -6338,6 +6372,7 @@ self: super: {
"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";
@@ -6352,6 +6387,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6453,6 +6489,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6471,6 +6508,7 @@ self: super: {
"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";
@@ -6895,6 +6933,7 @@ self: super: {
"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";
@@ -6988,6 +7027,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6997,6 +7037,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7028,6 +7069,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7190,8 +7232,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7374,6 +7418,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7569,6 +7614,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7593,6 +7639,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7782,6 +7829,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7804,6 +7852,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7953,6 +8002,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8051,6 +8101,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8097,6 +8148,7 @@ self: super: {
"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";
@@ -8110,6 +8162,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8307,6 +8360,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8326,6 +8380,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8338,6 +8393,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8376,6 +8432,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8421,6 +8478,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8517,6 +8575,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8584,6 +8643,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8904,6 +8964,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9018,6 +9079,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9072,6 +9134,7 @@ self: super: {
"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";
@@ -9096,6 +9159,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9219,6 +9283,7 @@ self: super: {
"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";
@@ -9302,6 +9367,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix
index 023ec7a4d25..73b2395fc54 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"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";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3489,6 +3502,7 @@ self: super: {
"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";
@@ -3518,6 +3532,7 @@ self: super: {
"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";
@@ -3525,6 +3540,8 @@ 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";
@@ -3557,6 +3574,7 @@ 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";
@@ -3585,9 +3603,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3601,6 +3621,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3937,6 +3958,7 @@ self: super: {
"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";
@@ -4011,6 +4033,8 @@ self: super: {
"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";
@@ -4091,6 +4115,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5013,6 +5038,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5074,6 +5100,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5084,6 +5111,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5094,6 +5122,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5120,6 +5149,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5247,6 +5277,7 @@ self: super: {
"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";
@@ -5710,6 +5741,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6245,6 +6277,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6287,6 +6320,7 @@ self: super: {
"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";
@@ -6337,6 +6371,7 @@ self: super: {
"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";
@@ -6351,6 +6386,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6452,6 +6488,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6470,6 +6507,7 @@ self: super: {
"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";
@@ -6894,6 +6932,7 @@ self: super: {
"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";
@@ -6987,6 +7026,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6996,6 +7036,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7027,6 +7068,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7189,8 +7231,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7373,6 +7417,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7568,6 +7613,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7592,6 +7638,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7781,6 +7828,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7803,6 +7851,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7952,6 +8001,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8050,6 +8100,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8096,6 +8147,7 @@ self: super: {
"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";
@@ -8109,6 +8161,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8306,6 +8359,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8325,6 +8379,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8337,6 +8392,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8375,6 +8431,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8420,6 +8477,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8515,6 +8573,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8582,6 +8641,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8901,6 +8961,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9015,6 +9076,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9069,6 +9131,7 @@ self: super: {
"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";
@@ -9093,6 +9156,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9216,6 +9280,7 @@ self: super: {
"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";
@@ -9299,6 +9364,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix
index c6753374f64..b223d014881 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"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";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3489,6 +3502,7 @@ self: super: {
"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";
@@ -3518,6 +3532,7 @@ self: super: {
"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";
@@ -3525,6 +3540,8 @@ 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";
@@ -3557,6 +3574,7 @@ 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";
@@ -3585,9 +3603,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3601,6 +3621,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3937,6 +3958,7 @@ self: super: {
"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";
@@ -4011,6 +4033,8 @@ self: super: {
"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";
@@ -4091,6 +4115,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5008,6 +5033,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5069,6 +5095,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5079,6 +5106,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5089,6 +5117,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5115,6 +5144,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5242,6 +5272,7 @@ self: super: {
"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";
@@ -5705,6 +5736,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6240,6 +6272,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6282,6 +6315,7 @@ self: super: {
"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";
@@ -6332,6 +6366,7 @@ self: super: {
"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";
@@ -6346,6 +6381,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6447,6 +6483,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6465,6 +6502,7 @@ self: super: {
"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";
@@ -6889,6 +6927,7 @@ self: super: {
"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";
@@ -6982,6 +7021,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6991,6 +7031,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7022,6 +7063,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7184,8 +7226,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7368,6 +7412,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7563,6 +7608,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7587,6 +7633,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7776,6 +7823,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7798,6 +7846,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7947,6 +7996,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8045,6 +8095,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8091,6 +8142,7 @@ self: super: {
"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";
@@ -8104,6 +8156,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8301,6 +8354,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8320,6 +8374,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8332,6 +8387,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8370,6 +8426,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8415,6 +8472,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8510,6 +8568,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8577,6 +8636,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8896,6 +8956,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9010,6 +9071,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9064,6 +9126,7 @@ self: super: {
"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";
@@ -9088,6 +9151,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9211,6 +9275,7 @@ self: super: {
"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";
@@ -9294,6 +9359,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix
index b0673b6d1f5..8326bfcbe72 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"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";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3487,6 +3500,7 @@ self: super: {
"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";
@@ -3516,6 +3530,7 @@ self: super: {
"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";
@@ -3523,6 +3538,8 @@ 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";
@@ -3555,6 +3572,7 @@ 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";
@@ -3583,9 +3601,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3599,6 +3619,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3934,6 +3955,7 @@ self: super: {
"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";
@@ -4008,6 +4030,8 @@ self: super: {
"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";
@@ -4088,6 +4112,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5005,6 +5030,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5066,6 +5092,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5076,6 +5103,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5086,6 +5114,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5112,6 +5141,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5239,6 +5269,7 @@ self: super: {
"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";
@@ -5701,6 +5732,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6236,6 +6268,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6278,6 +6311,7 @@ self: super: {
"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";
@@ -6328,6 +6362,7 @@ self: super: {
"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";
@@ -6342,6 +6377,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6443,6 +6479,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6461,6 +6498,7 @@ self: super: {
"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";
@@ -6885,6 +6923,7 @@ self: super: {
"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";
@@ -6978,6 +7017,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6987,6 +7027,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7018,6 +7059,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7180,8 +7222,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7364,6 +7408,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7559,6 +7604,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7583,6 +7629,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7772,6 +7819,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7794,6 +7842,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7943,6 +7992,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8041,6 +8091,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8087,6 +8138,7 @@ self: super: {
"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";
@@ -8100,6 +8152,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8297,6 +8350,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8316,6 +8370,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8328,6 +8383,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8366,6 +8422,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8411,6 +8468,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8506,6 +8564,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8572,6 +8631,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8891,6 +8951,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9005,6 +9066,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9059,6 +9121,7 @@ self: super: {
"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";
@@ -9083,6 +9146,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9206,6 +9270,7 @@ self: super: {
"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";
@@ -9289,6 +9354,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix
index 41d9848ebbc..a53d75fac5b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"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";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"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";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3486,6 +3499,7 @@ self: super: {
"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";
@@ -3515,6 +3529,7 @@ self: super: {
"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";
@@ -3522,6 +3537,8 @@ 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";
@@ -3554,6 +3571,7 @@ 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";
@@ -3582,9 +3600,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3598,6 +3618,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3933,6 +3954,7 @@ self: super: {
"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";
@@ -4007,6 +4029,8 @@ self: super: {
"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";
@@ -4087,6 +4111,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5004,6 +5029,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5065,6 +5091,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5075,6 +5102,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -5085,6 +5113,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5111,6 +5140,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5238,6 +5268,7 @@ self: super: {
"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";
@@ -5700,6 +5731,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6235,6 +6267,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6277,6 +6310,7 @@ self: super: {
"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";
@@ -6327,6 +6361,7 @@ self: super: {
"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";
@@ -6341,6 +6376,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6442,6 +6478,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6460,6 +6497,7 @@ self: super: {
"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";
@@ -6884,6 +6922,7 @@ self: super: {
"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";
@@ -6977,6 +7016,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6986,6 +7026,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7017,6 +7058,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7179,8 +7221,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7363,6 +7407,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7558,6 +7603,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7582,6 +7628,7 @@ self: super: {
"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-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7771,6 +7818,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7793,6 +7841,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7942,6 +7991,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"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";
@@ -8040,6 +8090,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8086,6 +8137,7 @@ self: super: {
"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";
@@ -8099,6 +8151,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8296,6 +8349,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8315,6 +8369,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8327,6 +8382,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8365,6 +8421,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8410,6 +8467,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8505,6 +8563,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8571,6 +8630,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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" = dontDistribute super."turtle";
@@ -8890,6 +8950,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -9004,6 +9065,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -9058,6 +9120,7 @@ self: super: {
"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";
@@ -9082,6 +9145,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9205,6 +9269,7 @@ self: super: {
"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";
@@ -9288,6 +9353,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix
index ecdf00390c3..0d799e8ae5a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1104,6 +1105,7 @@ self: super: {
"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";
@@ -1430,6 +1432,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1736,6 +1739,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2148,6 +2152,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2289,6 +2294,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2312,6 +2318,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2431,6 +2438,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_1";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2547,6 +2555,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2980,6 +2989,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2995,6 +3005,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3077,6 +3088,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3140,6 +3152,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3298,6 +3311,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3464,6 +3478,7 @@ self: super: {
"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";
@@ -3493,6 +3508,7 @@ self: super: {
"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";
@@ -3500,6 +3516,8 @@ 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,6 +3550,7 @@ 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";
@@ -3560,9 +3579,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3576,6 +3597,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3908,6 +3930,7 @@ self: super: {
"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";
@@ -3982,6 +4005,8 @@ self: super: {
"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";
@@ -4062,6 +4087,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4971,6 +4997,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5031,6 +5058,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5041,6 +5069,7 @@ self: super: {
"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";
@@ -5050,6 +5079,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5076,6 +5106,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5201,6 +5232,7 @@ self: super: {
"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";
@@ -5656,6 +5688,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6180,6 +6213,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6221,6 +6255,7 @@ self: super: {
"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";
@@ -6271,6 +6306,7 @@ self: super: {
"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";
@@ -6285,6 +6321,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6386,6 +6423,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6404,6 +6442,7 @@ self: super: {
"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";
@@ -6463,6 +6502,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6722,6 +6762,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6825,6 +6866,7 @@ self: super: {
"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";
@@ -6919,6 +6961,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6928,6 +6971,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6959,6 +7003,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7119,8 +7164,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7303,6 +7350,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7497,6 +7545,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7521,6 +7570,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7708,6 +7758,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7730,6 +7781,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7876,6 +7928,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7973,6 +8026,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8018,6 +8072,7 @@ self: super: {
"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";
@@ -8031,6 +8086,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8224,6 +8280,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8243,6 +8300,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8255,6 +8313,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8293,6 +8352,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8338,6 +8398,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8433,6 +8494,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8499,6 +8561,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8816,6 +8879,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8929,6 +8993,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8983,6 +9048,7 @@ self: super: {
"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";
@@ -9006,6 +9072,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9123,6 +9190,7 @@ self: super: {
"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";
@@ -9206,6 +9274,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix
index c5fa05bdec2..01bc7cbc620 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1104,6 +1105,7 @@ self: super: {
"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";
@@ -1430,6 +1432,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1736,6 +1739,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2147,6 +2151,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2288,6 +2293,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2311,6 +2317,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2430,6 +2437,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_1";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2546,6 +2554,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2979,6 +2988,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2994,6 +3004,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3076,6 +3087,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3139,6 +3151,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3297,6 +3310,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3463,6 +3477,7 @@ self: super: {
"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";
@@ -3492,6 +3507,7 @@ self: super: {
"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";
@@ -3499,6 +3515,8 @@ 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";
@@ -3531,6 +3549,7 @@ 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,9 +3578,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3575,6 +3596,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3907,6 +3929,7 @@ self: super: {
"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";
@@ -3981,6 +4004,8 @@ self: super: {
"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";
@@ -4061,6 +4086,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4970,6 +4996,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5030,6 +5057,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5040,6 +5068,7 @@ self: super: {
"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";
@@ -5049,6 +5078,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5075,6 +5105,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5200,6 +5231,7 @@ self: super: {
"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";
@@ -5655,6 +5687,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6179,6 +6212,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6220,6 +6254,7 @@ self: super: {
"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";
@@ -6270,6 +6305,7 @@ self: super: {
"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";
@@ -6284,6 +6320,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6385,6 +6422,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6403,6 +6441,7 @@ self: super: {
"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";
@@ -6462,6 +6501,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6721,6 +6761,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6824,6 +6865,7 @@ self: super: {
"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";
@@ -6918,6 +6960,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6927,6 +6970,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6958,6 +7002,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7118,8 +7163,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7302,6 +7349,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7496,6 +7544,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7520,6 +7569,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7707,6 +7757,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7729,6 +7780,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7875,6 +7927,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7972,6 +8025,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8017,6 +8071,7 @@ self: super: {
"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";
@@ -8030,6 +8085,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8223,6 +8279,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8242,6 +8299,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8254,6 +8312,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8292,6 +8351,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8337,6 +8397,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8432,6 +8493,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8498,6 +8560,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8796,6 +8859,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8814,6 +8878,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8927,6 +8992,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8981,6 +9047,7 @@ self: super: {
"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";
@@ -9004,6 +9071,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9121,6 +9189,7 @@ self: super: {
"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";
@@ -9204,6 +9273,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix
index 94d2f684701..ad2dff1697e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1425,6 +1427,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1727,6 +1730,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2136,6 +2140,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2277,6 +2282,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2300,6 +2306,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2418,6 +2425,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2534,6 +2542,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2965,6 +2974,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2980,6 +2990,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3061,6 +3072,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3124,6 +3136,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3280,6 +3293,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_10";
@@ -3446,6 +3460,7 @@ self: super: {
"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";
@@ -3475,6 +3490,7 @@ self: super: {
"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";
@@ -3482,6 +3498,8 @@ 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";
@@ -3514,6 +3532,7 @@ 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";
@@ -3542,9 +3561,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3558,6 +3579,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3888,6 +3910,7 @@ self: super: {
"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";
@@ -3962,6 +3985,8 @@ self: super: {
"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";
@@ -4042,6 +4067,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4948,6 +4974,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5008,6 +5035,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5018,6 +5046,7 @@ self: super: {
"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";
@@ -5027,6 +5056,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5053,6 +5083,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5176,6 +5207,7 @@ self: super: {
"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";
@@ -5630,6 +5662,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6154,6 +6187,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6195,6 +6229,7 @@ self: super: {
"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";
@@ -6245,6 +6280,7 @@ self: super: {
"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";
@@ -6259,6 +6295,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6360,6 +6397,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = doDistribute super."optparse-simple_0_0_2";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6378,6 +6416,7 @@ self: super: {
"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";
@@ -6437,6 +6476,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6694,6 +6734,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6797,6 +6838,7 @@ self: super: {
"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";
@@ -6891,6 +6933,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6900,6 +6943,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6930,6 +6974,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7090,8 +7135,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7273,6 +7320,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7466,6 +7514,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7490,6 +7539,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7677,6 +7727,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7699,6 +7750,7 @@ self: super: {
"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";
@@ -7844,6 +7896,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7936,6 +7989,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7981,6 +8035,7 @@ self: super: {
"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";
@@ -7994,6 +8049,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8185,6 +8241,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8204,6 +8261,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8216,6 +8274,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8254,6 +8313,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8299,6 +8359,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8392,6 +8453,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8458,6 +8520,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8756,6 +8819,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8774,6 +8838,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8887,6 +8952,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8941,6 +9007,7 @@ self: super: {
"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";
@@ -8963,6 +9030,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9079,6 +9147,7 @@ self: super: {
"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";
@@ -9162,6 +9231,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix
index 61d31f0ad61..78498fe3b03 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1424,6 +1426,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1726,6 +1729,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2135,6 +2139,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2276,6 +2281,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2299,6 +2305,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2417,6 +2424,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2533,6 +2541,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2964,6 +2973,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2979,6 +2989,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3060,6 +3071,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3123,6 +3135,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3279,6 +3292,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_10";
@@ -3445,6 +3459,7 @@ self: super: {
"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";
@@ -3474,6 +3489,7 @@ self: super: {
"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";
@@ -3481,6 +3497,8 @@ 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";
@@ -3512,6 +3530,7 @@ 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";
@@ -3540,9 +3559,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3556,6 +3577,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3886,6 +3908,7 @@ self: super: {
"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";
@@ -3960,6 +3983,8 @@ self: super: {
"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";
@@ -4040,6 +4065,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4945,6 +4971,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5005,6 +5032,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5015,6 +5043,7 @@ self: super: {
"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";
@@ -5024,6 +5053,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5050,6 +5080,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5172,6 +5203,7 @@ self: super: {
"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";
@@ -5626,6 +5658,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5888,6 +5921,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6149,6 +6183,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_6";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6190,6 +6225,7 @@ self: super: {
"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";
@@ -6240,6 +6276,7 @@ self: super: {
"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";
@@ -6254,6 +6291,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6355,6 +6393,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6372,6 +6411,7 @@ self: super: {
"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";
@@ -6431,6 +6471,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6688,6 +6729,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6791,6 +6833,7 @@ self: super: {
"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";
@@ -6885,6 +6928,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6894,6 +6938,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6924,6 +6969,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7084,8 +7130,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7266,6 +7314,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7459,6 +7508,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7483,6 +7533,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7670,6 +7721,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7692,6 +7744,7 @@ self: super: {
"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";
@@ -7837,6 +7890,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7928,6 +7982,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7973,6 +8028,7 @@ self: super: {
"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";
@@ -7986,6 +8042,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8176,6 +8233,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8195,6 +8253,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8207,6 +8266,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8245,6 +8305,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8290,6 +8351,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8383,6 +8445,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8449,6 +8512,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8747,6 +8811,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8765,6 +8830,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8878,6 +8944,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8932,6 +8999,7 @@ self: super: {
"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";
@@ -8954,6 +9022,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9070,6 +9139,7 @@ self: super: {
"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";
@@ -9153,6 +9223,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix
index d351d001355..fe7e4bdb993 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1424,6 +1426,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1726,6 +1729,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2135,6 +2139,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2276,6 +2281,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2299,6 +2305,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2417,6 +2424,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2533,6 +2541,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2964,6 +2973,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2979,6 +2989,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3060,6 +3071,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3123,6 +3135,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3279,6 +3292,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_10";
@@ -3445,6 +3459,7 @@ self: super: {
"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";
@@ -3474,6 +3489,7 @@ self: super: {
"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";
@@ -3481,6 +3497,8 @@ 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";
@@ -3512,6 +3530,7 @@ 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";
@@ -3540,9 +3559,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3556,6 +3577,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3886,6 +3908,7 @@ self: super: {
"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";
@@ -3960,6 +3983,8 @@ self: super: {
"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";
@@ -4040,6 +4065,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4945,6 +4971,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5005,6 +5032,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5015,6 +5043,7 @@ self: super: {
"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";
@@ -5024,6 +5053,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5050,6 +5080,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5172,6 +5203,7 @@ self: super: {
"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";
@@ -5626,6 +5658,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5888,6 +5921,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6149,6 +6183,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_6";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6190,6 +6225,7 @@ self: super: {
"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";
@@ -6240,6 +6276,7 @@ self: super: {
"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";
@@ -6254,6 +6291,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6355,6 +6393,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6372,6 +6411,7 @@ self: super: {
"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";
@@ -6431,6 +6471,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6688,6 +6729,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6791,6 +6833,7 @@ self: super: {
"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";
@@ -6885,6 +6928,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6894,6 +6938,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6924,6 +6969,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7084,8 +7130,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7266,6 +7314,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7458,6 +7507,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7482,6 +7532,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7669,6 +7720,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7691,6 +7743,7 @@ self: super: {
"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";
@@ -7836,6 +7889,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7927,6 +7981,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7972,6 +8027,7 @@ self: super: {
"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";
@@ -7985,6 +8041,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8175,6 +8232,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8194,6 +8252,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8206,6 +8265,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8244,6 +8304,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8289,6 +8350,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8382,6 +8444,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8448,6 +8511,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8746,6 +8810,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8764,6 +8829,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8877,6 +8943,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8931,6 +8998,7 @@ self: super: {
"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";
@@ -8953,6 +9021,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9069,6 +9138,7 @@ self: super: {
"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";
@@ -9152,6 +9222,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix
index 3dac4d96229..075deba8858 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1424,6 +1426,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1726,6 +1729,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2135,6 +2139,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2276,6 +2281,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2299,6 +2305,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2417,6 +2424,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2533,6 +2541,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2964,6 +2973,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2979,6 +2989,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3060,6 +3071,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3123,6 +3135,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3279,6 +3292,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3445,6 +3459,7 @@ self: super: {
"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";
@@ -3474,6 +3489,7 @@ self: super: {
"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";
@@ -3481,6 +3497,8 @@ 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";
@@ -3512,6 +3530,7 @@ 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";
@@ -3540,9 +3559,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3556,6 +3577,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3885,6 +3907,7 @@ self: super: {
"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";
@@ -3959,6 +3982,8 @@ self: super: {
"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";
@@ -4039,6 +4064,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4943,6 +4969,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5003,6 +5030,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5013,6 +5041,7 @@ self: super: {
"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";
@@ -5022,6 +5051,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5048,6 +5078,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5170,6 +5201,7 @@ self: super: {
"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";
@@ -5624,6 +5656,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5886,6 +5919,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6147,6 +6181,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_6";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6188,6 +6223,7 @@ self: super: {
"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";
@@ -6238,6 +6274,7 @@ self: super: {
"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";
@@ -6252,6 +6289,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6353,6 +6391,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6370,6 +6409,7 @@ self: super: {
"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";
@@ -6429,6 +6469,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6686,6 +6727,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6789,6 +6831,7 @@ self: super: {
"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";
@@ -6883,6 +6926,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6892,6 +6936,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6922,6 +6967,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7082,8 +7128,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7264,6 +7312,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7456,6 +7505,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7480,6 +7530,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7667,6 +7718,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7689,6 +7741,7 @@ self: super: {
"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";
@@ -7834,6 +7887,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7925,6 +7979,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7970,6 +8025,7 @@ self: super: {
"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";
@@ -7983,6 +8039,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8173,6 +8230,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8192,6 +8250,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8204,6 +8263,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8242,6 +8302,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8287,6 +8348,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8380,6 +8442,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8446,6 +8509,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8744,6 +8808,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8762,6 +8827,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8875,6 +8941,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8929,6 +8996,7 @@ self: super: {
"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";
@@ -8951,6 +9019,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9067,6 +9136,7 @@ self: super: {
"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";
@@ -9150,6 +9220,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix
index 704a1ce1cd2..e8be3fd66e5 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1424,6 +1426,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1726,6 +1729,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2135,6 +2139,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2276,6 +2281,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2299,6 +2305,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2417,6 +2424,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2533,6 +2541,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2964,6 +2973,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2979,6 +2989,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3060,6 +3071,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3123,6 +3135,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3278,6 +3291,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3444,6 +3458,7 @@ self: super: {
"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";
@@ -3473,6 +3488,7 @@ self: super: {
"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";
@@ -3480,6 +3496,8 @@ 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";
@@ -3511,6 +3529,7 @@ 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";
@@ -3539,9 +3558,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3555,6 +3576,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3884,6 +3906,7 @@ self: super: {
"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";
@@ -3958,6 +3981,8 @@ self: super: {
"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";
@@ -4038,6 +4063,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4941,6 +4967,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5001,6 +5028,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5011,6 +5039,7 @@ self: super: {
"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";
@@ -5020,6 +5049,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5046,6 +5076,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5168,6 +5199,7 @@ self: super: {
"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";
@@ -5622,6 +5654,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5884,6 +5917,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6145,6 +6179,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_6";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6186,6 +6221,7 @@ self: super: {
"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";
@@ -6236,6 +6272,7 @@ self: super: {
"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";
@@ -6250,6 +6287,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6351,6 +6389,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6368,6 +6407,7 @@ self: super: {
"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";
@@ -6427,6 +6467,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6684,6 +6725,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6787,6 +6829,7 @@ self: super: {
"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";
@@ -6881,6 +6924,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6890,6 +6934,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6920,6 +6965,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7080,8 +7126,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7262,6 +7310,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7454,6 +7503,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7478,6 +7528,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7597,6 +7648,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7664,6 +7716,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7686,6 +7739,7 @@ self: super: {
"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";
@@ -7831,6 +7885,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7922,6 +7977,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7967,6 +8023,7 @@ self: super: {
"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";
@@ -7980,6 +8037,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8170,6 +8228,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8189,6 +8248,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8201,6 +8261,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8239,6 +8300,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8284,6 +8346,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8377,6 +8440,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8443,6 +8507,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8741,6 +8806,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8759,6 +8825,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8872,6 +8939,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8926,6 +8994,7 @@ self: super: {
"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";
@@ -8947,6 +9016,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9063,6 +9133,7 @@ self: super: {
"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";
@@ -9146,6 +9217,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix
index a31c927ce60..aae8971f934 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1424,6 +1426,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1726,6 +1729,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2135,6 +2139,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2276,6 +2281,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2299,6 +2305,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2417,6 +2424,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2533,6 +2541,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2964,6 +2973,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2979,6 +2989,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3059,6 +3070,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3122,6 +3134,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3277,6 +3290,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3443,6 +3457,7 @@ self: super: {
"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";
@@ -3472,6 +3487,7 @@ self: super: {
"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";
@@ -3479,6 +3495,8 @@ 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";
@@ -3510,6 +3528,7 @@ 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";
@@ -3538,9 +3557,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3554,6 +3575,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3883,6 +3905,7 @@ self: super: {
"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";
@@ -3957,6 +3980,8 @@ self: super: {
"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";
@@ -4037,6 +4062,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4940,6 +4966,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5000,6 +5027,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5010,6 +5038,7 @@ self: super: {
"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";
@@ -5019,6 +5048,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5045,6 +5075,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5167,6 +5198,7 @@ self: super: {
"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";
@@ -5621,6 +5653,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5883,6 +5916,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6143,6 +6177,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_6";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6184,6 +6219,7 @@ self: super: {
"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";
@@ -6234,6 +6270,7 @@ self: super: {
"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";
@@ -6248,6 +6285,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6349,6 +6387,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6366,6 +6405,7 @@ self: super: {
"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";
@@ -6425,6 +6465,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6682,6 +6723,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6785,6 +6827,7 @@ self: super: {
"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";
@@ -6879,6 +6922,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6888,6 +6932,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6918,6 +6963,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7078,8 +7124,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7260,6 +7308,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7452,6 +7501,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7476,6 +7526,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7595,6 +7646,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7662,6 +7714,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7684,6 +7737,7 @@ self: super: {
"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";
@@ -7828,6 +7882,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7919,6 +7974,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7964,6 +8020,7 @@ self: super: {
"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";
@@ -7977,6 +8034,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8167,6 +8225,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8186,6 +8245,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8198,6 +8258,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8236,6 +8297,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8281,6 +8343,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8374,6 +8437,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8440,6 +8504,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8738,6 +8803,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8756,6 +8822,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8869,6 +8936,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8923,6 +8991,7 @@ self: super: {
"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";
@@ -8944,6 +9013,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9060,6 +9130,7 @@ self: super: {
"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";
@@ -9143,6 +9214,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix
index d9da0c1d9ef..73ec4965970 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1424,6 +1426,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1726,6 +1729,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2134,6 +2138,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2275,6 +2280,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2298,6 +2304,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2416,6 +2423,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2532,6 +2540,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2962,6 +2971,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2977,6 +2987,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3057,6 +3068,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3120,6 +3132,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3274,6 +3287,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3440,6 +3454,7 @@ self: super: {
"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";
@@ -3469,6 +3484,7 @@ self: super: {
"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";
@@ -3476,6 +3492,8 @@ 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";
@@ -3507,6 +3525,7 @@ 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";
@@ -3535,9 +3554,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3551,6 +3572,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3880,6 +3902,7 @@ self: super: {
"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";
@@ -3954,6 +3977,8 @@ self: super: {
"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";
@@ -4034,6 +4059,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4937,6 +4963,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -4997,6 +5024,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5007,6 +5035,7 @@ self: super: {
"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";
@@ -5016,6 +5045,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5042,6 +5072,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5164,6 +5195,7 @@ self: super: {
"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";
@@ -5617,6 +5649,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5879,6 +5912,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6139,6 +6173,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_6";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6180,6 +6215,7 @@ self: super: {
"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";
@@ -6230,6 +6266,7 @@ self: super: {
"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";
@@ -6244,6 +6281,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6345,6 +6383,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6362,6 +6401,7 @@ self: super: {
"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";
@@ -6421,6 +6461,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6678,6 +6719,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6781,6 +6823,7 @@ self: super: {
"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";
@@ -6875,6 +6918,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6884,6 +6928,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6914,6 +6959,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7074,8 +7120,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7256,6 +7304,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7448,6 +7497,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7472,6 +7522,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7591,6 +7642,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7658,6 +7710,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7680,6 +7733,7 @@ self: super: {
"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";
@@ -7824,6 +7878,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7915,6 +7970,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7960,6 +8016,7 @@ self: super: {
"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";
@@ -7973,6 +8030,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8163,6 +8221,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8182,6 +8241,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8194,6 +8254,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8232,6 +8293,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8277,6 +8339,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8370,6 +8433,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8436,6 +8500,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8734,6 +8799,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8752,6 +8818,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8865,6 +8932,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8919,6 +8987,7 @@ self: super: {
"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";
@@ -8940,6 +9009,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9056,6 +9126,7 @@ self: super: {
"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";
@@ -9139,6 +9210,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix
index 930f92194ab..ea7b3316a3c 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1423,6 +1425,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1725,6 +1728,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2132,6 +2136,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2273,6 +2278,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2296,6 +2302,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2414,6 +2421,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2530,6 +2538,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2960,6 +2969,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2975,6 +2985,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3055,6 +3066,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3117,6 +3129,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3270,6 +3283,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3436,6 +3450,7 @@ self: super: {
"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";
@@ -3465,6 +3480,7 @@ self: super: {
"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";
@@ -3472,6 +3488,8 @@ 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";
@@ -3503,6 +3521,7 @@ 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";
@@ -3531,9 +3550,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3547,6 +3568,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3876,6 +3898,7 @@ self: super: {
"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";
@@ -3950,6 +3973,8 @@ self: super: {
"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";
@@ -4030,6 +4055,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4933,6 +4959,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -4993,6 +5020,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5003,6 +5031,7 @@ self: super: {
"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";
@@ -5012,6 +5041,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5038,6 +5068,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5160,6 +5191,7 @@ self: super: {
"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";
@@ -5613,6 +5645,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5875,6 +5908,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6135,6 +6169,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6176,6 +6211,7 @@ self: super: {
"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";
@@ -6225,6 +6261,7 @@ self: super: {
"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";
@@ -6239,6 +6276,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6340,6 +6378,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6357,6 +6396,7 @@ self: super: {
"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";
@@ -6416,6 +6456,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6673,6 +6714,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6776,6 +6818,7 @@ self: super: {
"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";
@@ -6870,6 +6913,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6879,6 +6923,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6909,6 +6954,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7069,8 +7115,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7251,6 +7299,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7443,6 +7492,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7467,6 +7517,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7586,6 +7637,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7653,6 +7705,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7675,6 +7728,7 @@ self: super: {
"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";
@@ -7819,6 +7873,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7910,6 +7965,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7955,6 +8011,7 @@ self: super: {
"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";
@@ -7968,6 +8025,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8158,6 +8216,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8177,6 +8236,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8189,6 +8249,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8227,6 +8288,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8272,6 +8334,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8365,6 +8428,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8431,6 +8495,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8729,6 +8794,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8747,6 +8813,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8860,6 +8927,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8914,6 +8982,7 @@ self: super: {
"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";
@@ -8935,6 +9004,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9051,6 +9121,7 @@ self: super: {
"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";
@@ -9134,6 +9205,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix
index 76dc598d9a2..7986d2a0c43 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1423,6 +1425,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1725,6 +1728,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2131,6 +2135,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2272,6 +2277,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2295,6 +2301,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2413,6 +2420,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2529,6 +2537,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2958,6 +2967,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2973,6 +2983,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3053,6 +3064,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3115,6 +3127,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3268,6 +3281,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3434,6 +3448,7 @@ self: super: {
"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";
@@ -3463,6 +3478,7 @@ self: super: {
"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";
@@ -3470,6 +3486,8 @@ 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";
@@ -3501,6 +3519,7 @@ 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";
@@ -3529,9 +3548,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3545,6 +3566,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3874,6 +3896,7 @@ self: super: {
"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";
@@ -3948,6 +3971,8 @@ self: super: {
"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";
@@ -4028,6 +4053,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4931,6 +4957,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -4991,6 +5018,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5001,6 +5029,7 @@ self: super: {
"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";
@@ -5010,6 +5039,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5036,6 +5066,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5158,6 +5189,7 @@ self: super: {
"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";
@@ -5611,6 +5643,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5873,6 +5906,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -6132,6 +6166,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6173,6 +6208,7 @@ self: super: {
"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";
@@ -6222,6 +6258,7 @@ self: super: {
"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";
@@ -6236,6 +6273,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6337,6 +6375,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6354,6 +6393,7 @@ self: super: {
"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";
@@ -6413,6 +6453,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6670,6 +6711,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6773,6 +6815,7 @@ self: super: {
"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";
@@ -6867,6 +6910,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6876,6 +6920,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6906,6 +6951,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7066,8 +7112,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7248,6 +7296,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7440,6 +7489,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7464,6 +7514,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7583,6 +7634,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7650,6 +7702,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7672,6 +7725,7 @@ self: super: {
"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";
@@ -7816,6 +7870,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7907,6 +7962,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7951,6 +8007,7 @@ self: super: {
"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";
@@ -7964,6 +8021,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8154,6 +8212,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8173,6 +8232,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8185,6 +8245,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8223,6 +8284,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8268,6 +8330,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8361,6 +8424,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8427,6 +8491,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8725,6 +8790,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8743,6 +8809,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8856,6 +8923,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8910,6 +8978,7 @@ self: super: {
"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";
@@ -8931,6 +9000,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9046,6 +9116,7 @@ self: super: {
"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";
@@ -9129,6 +9200,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix
index 91f1c3b9155..64b46db9721 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1423,6 +1425,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1725,6 +1728,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2131,6 +2135,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2272,6 +2277,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2295,6 +2301,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2413,6 +2420,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2529,6 +2537,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2958,6 +2967,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2973,6 +2983,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3053,6 +3064,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3115,6 +3127,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3268,6 +3281,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3433,6 +3447,7 @@ self: super: {
"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";
@@ -3462,6 +3477,7 @@ self: super: {
"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";
@@ -3469,6 +3485,8 @@ 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";
@@ -3500,6 +3518,7 @@ 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";
@@ -3528,9 +3547,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3544,6 +3565,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3873,6 +3895,7 @@ self: super: {
"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";
@@ -3947,6 +3970,8 @@ self: super: {
"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";
@@ -4027,6 +4052,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4930,6 +4956,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -4990,6 +5017,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5000,6 +5028,7 @@ self: super: {
"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";
@@ -5009,6 +5038,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5035,6 +5065,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5157,6 +5188,7 @@ self: super: {
"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";
@@ -5610,6 +5642,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5871,6 +5904,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -6130,6 +6164,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6171,6 +6206,7 @@ self: super: {
"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";
@@ -6220,6 +6256,7 @@ self: super: {
"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";
@@ -6234,6 +6271,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6335,6 +6373,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6352,6 +6391,7 @@ self: super: {
"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";
@@ -6411,6 +6451,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6668,6 +6709,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6771,6 +6813,7 @@ self: super: {
"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";
@@ -6865,6 +6908,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6874,6 +6918,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6904,6 +6949,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7064,8 +7110,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7246,6 +7294,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7438,6 +7487,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7462,6 +7512,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7581,6 +7632,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7648,6 +7700,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7670,6 +7723,7 @@ self: super: {
"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";
@@ -7814,6 +7868,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7905,6 +7960,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7949,6 +8005,7 @@ self: super: {
"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";
@@ -7962,6 +8019,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8152,6 +8210,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8171,6 +8230,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8183,6 +8243,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8221,6 +8282,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8266,6 +8328,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8359,6 +8422,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8425,6 +8489,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8723,6 +8788,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8741,6 +8807,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8854,6 +8921,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8908,6 +8976,7 @@ self: super: {
"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";
@@ -8929,6 +8998,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9043,6 +9113,7 @@ self: super: {
"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";
@@ -9126,6 +9197,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix
index 6ef69d35e0c..e0e4bbb13b1 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1103,6 +1104,7 @@ self: super: {
"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";
@@ -1429,6 +1431,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1735,6 +1738,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2144,6 +2148,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2285,6 +2290,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2308,6 +2314,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2427,6 +2434,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_1";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2543,6 +2551,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2976,6 +2985,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2991,6 +3001,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3073,6 +3084,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3136,6 +3148,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3294,6 +3307,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3460,6 +3474,7 @@ self: super: {
"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";
@@ -3489,6 +3504,7 @@ self: super: {
"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";
@@ -3496,6 +3512,8 @@ 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,6 +3546,7 @@ 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";
@@ -3556,9 +3575,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3572,6 +3593,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3904,6 +3926,7 @@ self: super: {
"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";
@@ -3978,6 +4001,8 @@ self: super: {
"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";
@@ -4058,6 +4083,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4967,6 +4993,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5027,6 +5054,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5037,6 +5065,7 @@ self: super: {
"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";
@@ -5046,6 +5075,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5072,6 +5102,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5197,6 +5228,7 @@ self: super: {
"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";
@@ -5652,6 +5684,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6176,6 +6209,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6217,6 +6251,7 @@ self: super: {
"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";
@@ -6267,6 +6302,7 @@ self: super: {
"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";
@@ -6281,6 +6317,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6382,6 +6419,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6400,6 +6438,7 @@ self: super: {
"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";
@@ -6459,6 +6498,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6718,6 +6758,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6821,6 +6862,7 @@ self: super: {
"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";
@@ -6915,6 +6957,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6924,6 +6967,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6955,6 +6999,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7115,8 +7160,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7299,6 +7346,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7493,6 +7541,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7517,6 +7566,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7704,6 +7754,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7726,6 +7777,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7872,6 +7924,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7969,6 +8022,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8014,6 +8068,7 @@ self: super: {
"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";
@@ -8027,6 +8082,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8220,6 +8276,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8239,6 +8296,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8251,6 +8309,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8289,6 +8348,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8334,6 +8394,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8429,6 +8490,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8495,6 +8557,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8793,6 +8856,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8811,6 +8875,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8924,6 +8989,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8978,6 +9044,7 @@ self: super: {
"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";
@@ -9000,6 +9067,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9117,6 +9185,7 @@ self: super: {
"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";
@@ -9200,6 +9269,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix
index 32a6decd73c..6f01eacd3a6 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1423,6 +1425,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1725,6 +1728,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2131,6 +2135,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2271,6 +2276,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2294,6 +2300,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2412,6 +2419,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2528,6 +2536,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2957,6 +2966,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2972,6 +2982,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3052,6 +3063,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3114,6 +3126,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3267,6 +3280,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3432,6 +3446,7 @@ self: super: {
"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";
@@ -3461,6 +3476,7 @@ self: super: {
"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";
@@ -3468,6 +3484,8 @@ 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";
@@ -3499,6 +3517,7 @@ 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";
@@ -3527,9 +3546,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3543,6 +3564,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3872,6 +3894,7 @@ self: super: {
"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";
@@ -3946,6 +3969,8 @@ self: super: {
"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";
@@ -4026,6 +4051,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4929,6 +4955,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -4989,6 +5016,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4999,6 +5027,7 @@ self: super: {
"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";
@@ -5008,6 +5037,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5034,6 +5064,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5156,6 +5187,7 @@ self: super: {
"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";
@@ -5609,6 +5641,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5870,6 +5903,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -6129,6 +6163,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6170,6 +6205,7 @@ self: super: {
"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";
@@ -6219,6 +6255,7 @@ self: super: {
"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";
@@ -6233,6 +6270,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6334,6 +6372,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6351,6 +6390,7 @@ self: super: {
"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";
@@ -6410,6 +6450,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6666,6 +6707,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6769,6 +6811,7 @@ self: super: {
"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";
@@ -6863,6 +6906,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6872,6 +6916,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6902,6 +6947,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7062,8 +7108,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7244,6 +7292,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7436,6 +7485,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7460,6 +7510,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7578,6 +7629,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7645,6 +7697,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7667,6 +7720,7 @@ self: super: {
"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";
@@ -7811,6 +7865,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7902,6 +7957,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7946,6 +8002,7 @@ self: super: {
"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";
@@ -7959,6 +8016,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8149,6 +8207,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8168,6 +8227,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8180,6 +8240,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8218,6 +8279,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8263,6 +8325,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8356,6 +8419,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8422,6 +8486,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8720,6 +8785,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8738,6 +8804,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8851,6 +8918,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8905,6 +8973,7 @@ self: super: {
"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";
@@ -8926,6 +8995,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9040,6 +9110,7 @@ self: super: {
"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";
@@ -9123,6 +9194,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix
index e0ada6ea378..aa5514cdc83 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1423,6 +1425,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1725,6 +1728,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2131,6 +2135,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2271,6 +2276,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2294,6 +2300,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2412,6 +2419,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2528,6 +2536,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2957,6 +2966,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2972,6 +2982,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3052,6 +3063,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3114,6 +3126,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3267,6 +3280,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3432,6 +3446,7 @@ self: super: {
"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";
@@ -3461,6 +3476,7 @@ self: super: {
"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";
@@ -3468,6 +3484,8 @@ 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";
@@ -3499,6 +3517,7 @@ 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";
@@ -3527,9 +3546,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3543,6 +3564,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3872,6 +3894,7 @@ self: super: {
"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";
@@ -3946,6 +3969,8 @@ self: super: {
"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";
@@ -4026,6 +4051,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4929,6 +4955,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -4989,6 +5016,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4999,6 +5027,7 @@ self: super: {
"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";
@@ -5008,6 +5037,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5034,6 +5064,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5156,6 +5187,7 @@ self: super: {
"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";
@@ -5609,6 +5641,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5870,6 +5903,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -6129,6 +6163,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6170,6 +6205,7 @@ self: super: {
"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";
@@ -6219,6 +6255,7 @@ self: super: {
"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";
@@ -6233,6 +6270,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6334,6 +6372,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6351,6 +6390,7 @@ self: super: {
"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";
@@ -6410,6 +6450,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6666,6 +6707,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6768,6 +6810,7 @@ self: super: {
"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";
@@ -6862,6 +6905,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6871,6 +6915,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6901,6 +6946,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7061,8 +7107,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7243,6 +7291,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7435,6 +7484,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7459,6 +7509,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7577,6 +7628,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7644,6 +7696,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7666,6 +7719,7 @@ self: super: {
"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";
@@ -7810,6 +7864,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7901,6 +7956,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7945,6 +8001,7 @@ self: super: {
"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";
@@ -7958,6 +8015,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8148,6 +8206,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8167,6 +8226,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8179,6 +8239,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8217,6 +8278,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8262,6 +8324,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8355,6 +8418,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8421,6 +8485,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8719,6 +8784,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8737,6 +8803,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8850,6 +8917,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8904,6 +8972,7 @@ self: super: {
"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";
@@ -8925,6 +8994,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9039,6 +9109,7 @@ self: super: {
"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";
@@ -9122,6 +9193,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix
index 6620cd55c72..0976d65611e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1423,6 +1425,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1725,6 +1728,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2131,6 +2135,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2271,6 +2276,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2294,6 +2300,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2412,6 +2419,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2528,6 +2536,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2957,6 +2966,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2972,6 +2982,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3052,6 +3063,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3114,6 +3126,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3267,6 +3280,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3432,6 +3446,7 @@ self: super: {
"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";
@@ -3461,6 +3476,7 @@ self: super: {
"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";
@@ -3468,6 +3484,8 @@ 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";
@@ -3499,6 +3517,7 @@ 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";
@@ -3527,9 +3546,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3543,6 +3564,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3872,6 +3894,7 @@ self: super: {
"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";
@@ -3946,6 +3969,8 @@ self: super: {
"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";
@@ -4026,6 +4051,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4928,6 +4954,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -4988,6 +5015,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4998,6 +5026,7 @@ self: super: {
"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";
@@ -5007,6 +5036,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5033,6 +5063,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5155,6 +5186,7 @@ self: super: {
"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";
@@ -5608,6 +5640,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5869,6 +5902,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -6128,6 +6162,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6169,6 +6204,7 @@ self: super: {
"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";
@@ -6218,6 +6254,7 @@ self: super: {
"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";
@@ -6232,6 +6269,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6333,6 +6371,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6350,6 +6389,7 @@ self: super: {
"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";
@@ -6409,6 +6449,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6665,6 +6706,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6767,6 +6809,7 @@ self: super: {
"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";
@@ -6861,6 +6904,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6870,6 +6914,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6900,6 +6945,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7060,8 +7106,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7242,6 +7290,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7434,6 +7483,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7458,6 +7508,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7576,6 +7627,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7643,6 +7695,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7665,6 +7718,7 @@ self: super: {
"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";
@@ -7809,6 +7863,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7900,6 +7955,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7944,6 +8000,7 @@ self: super: {
"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";
@@ -7957,6 +8014,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8147,6 +8205,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8166,6 +8225,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8178,6 +8238,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8216,6 +8277,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8261,6 +8323,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8354,6 +8417,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8420,6 +8484,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8718,6 +8783,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8736,6 +8802,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8849,6 +8916,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8903,6 +8971,7 @@ self: super: {
"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";
@@ -8924,6 +8993,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9038,6 +9108,7 @@ self: super: {
"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";
@@ -9121,6 +9192,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix
index a44268a4474..3d10d578f40 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1103,6 +1104,7 @@ self: super: {
"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";
@@ -1429,6 +1431,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1735,6 +1738,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2144,6 +2148,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2285,6 +2290,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2308,6 +2314,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2427,6 +2434,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2543,6 +2551,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2976,6 +2985,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2991,6 +3001,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3073,6 +3084,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3136,6 +3148,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3293,6 +3306,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3459,6 +3473,7 @@ self: super: {
"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";
@@ -3488,6 +3503,7 @@ self: super: {
"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";
@@ -3495,6 +3511,8 @@ 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";
@@ -3527,6 +3545,7 @@ 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";
@@ -3555,9 +3574,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3571,6 +3592,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3903,6 +3925,7 @@ self: super: {
"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";
@@ -3977,6 +4000,8 @@ self: super: {
"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";
@@ -4057,6 +4082,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4965,6 +4991,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5025,6 +5052,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5035,6 +5063,7 @@ self: super: {
"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";
@@ -5044,6 +5073,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5070,6 +5100,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5195,6 +5226,7 @@ self: super: {
"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";
@@ -5650,6 +5682,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6174,6 +6207,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6215,6 +6249,7 @@ self: super: {
"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";
@@ -6265,6 +6300,7 @@ self: super: {
"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";
@@ -6279,6 +6315,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6380,6 +6417,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6398,6 +6436,7 @@ self: super: {
"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";
@@ -6457,6 +6496,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6716,6 +6756,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6819,6 +6860,7 @@ self: super: {
"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";
@@ -6913,6 +6955,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6922,6 +6965,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6953,6 +6997,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7113,8 +7158,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7297,6 +7344,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7491,6 +7539,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7515,6 +7564,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7702,6 +7752,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7724,6 +7775,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7870,6 +7922,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7967,6 +8020,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8012,6 +8066,7 @@ self: super: {
"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";
@@ -8025,6 +8080,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8218,6 +8274,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8237,6 +8294,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8249,6 +8307,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8287,6 +8346,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8332,6 +8392,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8427,6 +8488,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8493,6 +8555,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8791,6 +8854,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8809,6 +8873,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8922,6 +8987,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8976,6 +9042,7 @@ self: super: {
"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";
@@ -8998,6 +9065,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9115,6 +9183,7 @@ self: super: {
"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";
@@ -9198,6 +9267,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix
index ba79b7ba72b..7fd44e3ea81 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1103,6 +1104,7 @@ self: super: {
"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";
@@ -1429,6 +1431,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1734,6 +1737,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2143,6 +2147,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2284,6 +2289,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2307,6 +2313,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2426,6 +2433,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2542,6 +2550,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2975,6 +2984,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2990,6 +3000,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3072,6 +3083,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3135,6 +3147,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3292,6 +3305,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3458,6 +3472,7 @@ self: super: {
"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";
@@ -3487,6 +3502,7 @@ self: super: {
"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";
@@ -3494,6 +3510,8 @@ 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";
@@ -3526,6 +3544,7 @@ 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,9 +3573,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3570,6 +3591,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3902,6 +3924,7 @@ self: super: {
"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";
@@ -3976,6 +3999,8 @@ self: super: {
"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";
@@ -4056,6 +4081,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4964,6 +4990,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5024,6 +5051,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5034,6 +5062,7 @@ self: super: {
"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";
@@ -5043,6 +5072,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5069,6 +5099,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5194,6 +5225,7 @@ self: super: {
"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";
@@ -5649,6 +5681,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6173,6 +6206,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6214,6 +6248,7 @@ self: super: {
"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";
@@ -6264,6 +6299,7 @@ self: super: {
"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";
@@ -6278,6 +6314,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6379,6 +6416,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6397,6 +6435,7 @@ self: super: {
"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";
@@ -6456,6 +6495,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6714,6 +6754,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6817,6 +6858,7 @@ self: super: {
"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";
@@ -6911,6 +6953,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6920,6 +6963,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6951,6 +6995,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7111,8 +7156,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7294,6 +7341,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7488,6 +7536,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7512,6 +7561,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7699,6 +7749,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7721,6 +7772,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7867,6 +7919,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7964,6 +8017,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8009,6 +8063,7 @@ self: super: {
"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";
@@ -8022,6 +8077,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8215,6 +8271,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8234,6 +8291,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8246,6 +8304,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8284,6 +8343,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8329,6 +8389,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8424,6 +8485,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8490,6 +8552,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8788,6 +8851,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8806,6 +8870,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8919,6 +8984,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8973,6 +9039,7 @@ self: super: {
"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";
@@ -8995,6 +9062,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9112,6 +9180,7 @@ self: super: {
"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";
@@ -9195,6 +9264,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix
index 6a56682de17..33b8ee13c9a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1103,6 +1104,7 @@ self: super: {
"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";
@@ -1429,6 +1431,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1734,6 +1737,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2143,6 +2147,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_5_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2284,6 +2289,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2307,6 +2313,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2425,6 +2432,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2541,6 +2549,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2974,6 +2983,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2989,6 +2999,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3071,6 +3082,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3134,6 +3146,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3291,6 +3304,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3457,6 +3471,7 @@ self: super: {
"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";
@@ -3486,6 +3501,7 @@ self: super: {
"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";
@@ -3493,6 +3509,8 @@ 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,6 +3543,7 @@ 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";
@@ -3553,9 +3572,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3569,6 +3590,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3901,6 +3923,7 @@ self: super: {
"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";
@@ -3975,6 +3998,8 @@ self: super: {
"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";
@@ -4055,6 +4080,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4963,6 +4989,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5023,6 +5050,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5033,6 +5061,7 @@ self: super: {
"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";
@@ -5042,6 +5071,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5068,6 +5098,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5193,6 +5224,7 @@ self: super: {
"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";
@@ -5648,6 +5680,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6172,6 +6205,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6213,6 +6247,7 @@ self: super: {
"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";
@@ -6263,6 +6298,7 @@ self: super: {
"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";
@@ -6277,6 +6313,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6378,6 +6415,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6396,6 +6434,7 @@ self: super: {
"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";
@@ -6455,6 +6494,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6713,6 +6753,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6816,6 +6857,7 @@ self: super: {
"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";
@@ -6910,6 +6952,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6919,6 +6962,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6950,6 +6994,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7110,8 +7155,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7293,6 +7340,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7487,6 +7535,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7511,6 +7560,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7698,6 +7748,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7720,6 +7771,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7866,6 +7918,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7963,6 +8016,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8008,6 +8062,7 @@ self: super: {
"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";
@@ -8021,6 +8076,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8214,6 +8270,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8233,6 +8290,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8245,6 +8303,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8283,6 +8342,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8328,6 +8388,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8423,6 +8484,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8489,6 +8551,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8787,6 +8850,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8805,6 +8869,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8918,6 +8983,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8972,6 +9038,7 @@ self: super: {
"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";
@@ -8994,6 +9061,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9111,6 +9179,7 @@ self: super: {
"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";
@@ -9194,6 +9263,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix
index 718c30f3c89..5674cea7156 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1101,6 +1102,7 @@ self: super: {
"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";
@@ -1427,6 +1429,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1731,6 +1734,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2140,6 +2144,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_5_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2281,6 +2286,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2304,6 +2310,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2422,6 +2429,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2538,6 +2546,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2971,6 +2980,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2986,6 +2996,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3068,6 +3079,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3131,6 +3143,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3288,6 +3301,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3454,6 +3468,7 @@ self: super: {
"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";
@@ -3483,6 +3498,7 @@ self: super: {
"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";
@@ -3490,6 +3506,8 @@ 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";
@@ -3522,6 +3540,7 @@ 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,9 +3569,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3566,6 +3587,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3896,6 +3918,7 @@ self: super: {
"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";
@@ -3970,6 +3993,8 @@ self: super: {
"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";
@@ -4050,6 +4075,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4958,6 +4984,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5018,6 +5045,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5028,6 +5056,7 @@ self: super: {
"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";
@@ -5037,6 +5066,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5063,6 +5093,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5188,6 +5219,7 @@ self: super: {
"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";
@@ -5643,6 +5675,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6166,6 +6199,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6207,6 +6241,7 @@ self: super: {
"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";
@@ -6257,6 +6292,7 @@ self: super: {
"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";
@@ -6271,6 +6307,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6372,6 +6409,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6390,6 +6428,7 @@ self: super: {
"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";
@@ -6449,6 +6488,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6707,6 +6747,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6810,6 +6851,7 @@ self: super: {
"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";
@@ -6904,6 +6946,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6913,6 +6956,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6944,6 +6988,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7104,8 +7149,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7287,6 +7334,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7481,6 +7529,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7505,6 +7554,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7692,6 +7742,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7714,6 +7765,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7860,6 +7912,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7957,6 +8010,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8002,6 +8056,7 @@ self: super: {
"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";
@@ -8015,6 +8070,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8208,6 +8264,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8227,6 +8284,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8239,6 +8297,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8277,6 +8336,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8322,6 +8382,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8415,6 +8476,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8481,6 +8543,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8779,6 +8842,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8797,6 +8861,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8910,6 +8975,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8964,6 +9030,7 @@ self: super: {
"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";
@@ -8986,6 +9053,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9103,6 +9171,7 @@ self: super: {
"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";
@@ -9186,6 +9255,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix
index 77112a4f118..9d6628a57c8 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1100,6 +1101,7 @@ self: super: {
"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";
@@ -1426,6 +1428,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1730,6 +1733,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2139,6 +2143,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_5_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2280,6 +2285,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2303,6 +2309,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2421,6 +2428,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2537,6 +2545,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2970,6 +2979,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2985,6 +2995,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3067,6 +3078,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3130,6 +3142,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3287,6 +3300,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3453,6 +3467,7 @@ self: super: {
"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";
@@ -3482,6 +3497,7 @@ self: super: {
"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";
@@ -3489,6 +3505,8 @@ 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,6 +3539,7 @@ 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";
@@ -3549,9 +3568,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3565,6 +3586,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3895,6 +3917,7 @@ self: super: {
"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";
@@ -3969,6 +3992,8 @@ self: super: {
"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";
@@ -4049,6 +4074,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4957,6 +4983,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5017,6 +5044,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5027,6 +5055,7 @@ self: super: {
"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";
@@ -5036,6 +5065,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5062,6 +5092,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5187,6 +5218,7 @@ self: super: {
"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";
@@ -5642,6 +5674,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6166,6 +6199,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6207,6 +6241,7 @@ self: super: {
"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";
@@ -6257,6 +6292,7 @@ self: super: {
"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";
@@ -6271,6 +6307,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6372,6 +6409,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6390,6 +6428,7 @@ self: super: {
"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";
@@ -6449,6 +6488,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6707,6 +6747,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6810,6 +6851,7 @@ self: super: {
"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";
@@ -6904,6 +6946,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6913,6 +6956,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6944,6 +6988,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7104,8 +7149,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7287,6 +7334,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7481,6 +7529,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7505,6 +7554,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7692,6 +7742,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7714,6 +7765,7 @@ self: super: {
"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-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7860,6 +7912,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7957,6 +8010,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8002,6 +8056,7 @@ self: super: {
"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";
@@ -8015,6 +8070,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8208,6 +8264,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8227,6 +8284,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8239,6 +8297,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8277,6 +8336,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8322,6 +8382,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8415,6 +8476,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8481,6 +8543,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8779,6 +8842,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8797,6 +8861,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8910,6 +8975,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8964,6 +9030,7 @@ self: super: {
"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";
@@ -8986,6 +9053,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9103,6 +9171,7 @@ self: super: {
"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";
@@ -9186,6 +9255,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix
index 153aa7dad0d..dd7d230aa11 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1425,6 +1427,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1729,6 +1732,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2138,6 +2142,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2279,6 +2284,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2302,6 +2308,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2420,6 +2427,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2536,6 +2544,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2969,6 +2978,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2984,6 +2994,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3066,6 +3077,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3129,6 +3141,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3285,6 +3298,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_10";
@@ -3451,6 +3465,7 @@ self: super: {
"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";
@@ -3480,6 +3495,7 @@ self: super: {
"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";
@@ -3487,6 +3503,8 @@ 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,6 +3537,7 @@ 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,9 +3566,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3563,6 +3584,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3893,6 +3915,7 @@ self: super: {
"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";
@@ -3967,6 +3990,8 @@ self: super: {
"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";
@@ -4047,6 +4072,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4955,6 +4981,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5015,6 +5042,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5025,6 +5053,7 @@ self: super: {
"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";
@@ -5034,6 +5063,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5060,6 +5090,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5185,6 +5216,7 @@ self: super: {
"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";
@@ -5640,6 +5672,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6164,6 +6197,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6205,6 +6239,7 @@ self: super: {
"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";
@@ -6255,6 +6290,7 @@ self: super: {
"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";
@@ -6269,6 +6305,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6370,6 +6407,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = doDistribute super."optparse-simple_0_0_2";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6388,6 +6426,7 @@ self: super: {
"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";
@@ -6447,6 +6486,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6705,6 +6745,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6808,6 +6849,7 @@ self: super: {
"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";
@@ -6902,6 +6944,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6911,6 +6954,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6942,6 +6986,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7102,8 +7147,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7285,6 +7332,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7478,6 +7526,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7502,6 +7551,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7689,6 +7739,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7711,6 +7762,7 @@ self: super: {
"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";
@@ -7856,6 +7908,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7951,6 +8004,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7996,6 +8050,7 @@ self: super: {
"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";
@@ -8009,6 +8064,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8202,6 +8258,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8221,6 +8278,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8233,6 +8291,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8271,6 +8330,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8316,6 +8376,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8409,6 +8470,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8475,6 +8537,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8773,6 +8836,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8791,6 +8855,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8904,6 +8969,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8958,6 +9024,7 @@ self: super: {
"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";
@@ -8980,6 +9047,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9097,6 +9165,7 @@ self: super: {
"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";
@@ -9180,6 +9249,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix
index 24d6823fe67..83d57b18f94 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"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";
@@ -1425,6 +1427,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1727,6 +1730,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2136,6 +2140,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2277,6 +2282,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2300,6 +2306,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"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";
@@ -2418,6 +2425,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2534,6 +2542,7 @@ self: super: {
"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-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2966,6 +2975,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2981,6 +2991,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3062,6 +3073,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3125,6 +3137,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3281,6 +3294,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_10";
@@ -3447,6 +3461,7 @@ self: super: {
"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";
@@ -3476,6 +3491,7 @@ self: super: {
"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";
@@ -3483,6 +3499,8 @@ 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";
@@ -3515,6 +3533,7 @@ 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";
@@ -3543,9 +3562,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3559,6 +3580,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3889,6 +3911,7 @@ self: super: {
"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";
@@ -3963,6 +3986,8 @@ self: super: {
"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";
@@ -4043,6 +4068,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4949,6 +4975,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"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";
@@ -5009,6 +5036,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -5019,6 +5047,7 @@ self: super: {
"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";
@@ -5028,6 +5057,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5054,6 +5084,7 @@ self: super: {
"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" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5179,6 +5210,7 @@ self: super: {
"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";
@@ -5633,6 +5665,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6157,6 +6190,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6198,6 +6232,7 @@ self: super: {
"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";
@@ -6248,6 +6283,7 @@ self: super: {
"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";
@@ -6262,6 +6298,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6363,6 +6400,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = doDistribute super."optparse-simple_0_0_2";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6381,6 +6419,7 @@ self: super: {
"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";
@@ -6440,6 +6479,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6698,6 +6738,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6801,6 +6842,7 @@ self: super: {
"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";
@@ -6895,6 +6937,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6904,6 +6947,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6935,6 +6979,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7095,8 +7140,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7278,6 +7325,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7471,6 +7519,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7495,6 +7544,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7682,6 +7732,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7704,6 +7755,7 @@ self: super: {
"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";
@@ -7849,6 +7901,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"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";
@@ -7942,6 +7995,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7987,6 +8041,7 @@ self: super: {
"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";
@@ -8000,6 +8055,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8191,6 +8247,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -8210,6 +8267,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8222,6 +8280,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "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";
@@ -8260,6 +8319,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8305,6 +8365,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8398,6 +8459,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8464,6 +8526,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"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_0_2";
@@ -8762,6 +8825,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8780,6 +8844,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8893,6 +8958,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8947,6 +9013,7 @@ self: super: {
"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";
@@ -8969,6 +9036,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9085,6 +9153,7 @@ self: super: {
"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";
@@ -9168,6 +9237,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix
index 96c627d8488..0570da6a939 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix
@@ -662,6 +662,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1012,7 +1013,6 @@ 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";
@@ -1079,6 +1079,7 @@ self: super: {
"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";
@@ -1390,6 +1391,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1684,6 +1686,7 @@ self: super: {
"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";
@@ -2079,6 +2082,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2217,6 +2221,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2239,6 +2244,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2356,6 +2362,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2472,6 +2479,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2600,6 +2608,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2868,6 +2877,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2888,6 +2898,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2903,6 +2914,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2982,6 +2994,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2993,6 +3006,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3041,6 +3055,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3188,6 +3203,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3352,6 +3368,7 @@ self: super: {
"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";
@@ -3381,6 +3398,7 @@ self: super: {
"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";
@@ -3388,6 +3406,8 @@ 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,6 +3439,7 @@ 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";
@@ -3447,9 +3468,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3463,6 +3486,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3789,6 +3813,7 @@ self: super: {
"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";
@@ -3860,6 +3885,8 @@ self: super: {
"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";
@@ -3939,6 +3966,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4824,6 +4852,7 @@ self: super: {
"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";
@@ -4883,6 +4912,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4893,6 +4923,7 @@ self: super: {
"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";
@@ -4902,6 +4933,7 @@ self: super: {
"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";
@@ -4927,6 +4959,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5045,6 +5078,7 @@ self: super: {
"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";
@@ -5478,6 +5512,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5732,6 +5767,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5744,6 +5780,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5986,6 +6023,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -5993,6 +6031,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6024,6 +6063,7 @@ self: super: {
"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";
@@ -6072,6 +6112,7 @@ self: super: {
"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";
@@ -6086,6 +6127,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6184,6 +6226,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6201,6 +6244,7 @@ self: super: {
"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";
@@ -6259,6 +6303,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6506,6 +6551,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6607,6 +6653,7 @@ self: super: {
"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";
@@ -6700,6 +6747,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_2_0";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6709,6 +6757,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6739,6 +6788,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -6882,6 +6932,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6897,8 +6948,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7081,6 +7134,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7271,6 +7325,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4";
@@ -7295,6 +7350,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7408,6 +7464,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7475,6 +7532,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7496,6 +7554,7 @@ self: super: {
"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";
@@ -7640,6 +7699,7 @@ self: super: {
"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";
@@ -7725,6 +7785,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7767,6 +7828,7 @@ self: super: {
"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";
@@ -7780,6 +7842,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7969,6 +8032,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -7988,6 +8052,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8000,6 +8065,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -8037,6 +8103,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8080,6 +8147,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8169,6 +8237,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8233,6 +8302,7 @@ self: super: {
"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_1";
@@ -8526,6 +8596,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8544,6 +8615,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8655,6 +8727,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8708,6 +8781,7 @@ self: super: {
"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";
@@ -8728,6 +8802,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8841,6 +8916,7 @@ self: super: {
"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";
@@ -8917,6 +8993,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix
index 3613b6eb41e..9f1d101b960 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix
@@ -662,6 +662,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1012,7 +1013,6 @@ 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";
@@ -1079,6 +1079,7 @@ self: super: {
"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";
@@ -1389,6 +1390,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1683,6 +1685,7 @@ self: super: {
"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";
@@ -2078,6 +2081,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2216,6 +2220,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2238,6 +2243,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2355,6 +2361,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2471,6 +2478,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2599,6 +2607,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2867,6 +2876,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2887,6 +2897,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2902,6 +2913,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2981,6 +2993,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2992,6 +3005,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3040,6 +3054,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3186,6 +3201,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3350,6 +3366,7 @@ self: super: {
"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";
@@ -3379,6 +3396,7 @@ self: super: {
"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";
@@ -3386,6 +3404,8 @@ 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";
@@ -3417,6 +3437,7 @@ 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";
@@ -3445,9 +3466,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3461,6 +3484,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3787,6 +3811,7 @@ self: super: {
"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";
@@ -3858,6 +3883,8 @@ self: super: {
"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";
@@ -3937,6 +3964,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4822,6 +4850,7 @@ self: super: {
"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";
@@ -4881,6 +4910,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4891,6 +4921,7 @@ self: super: {
"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";
@@ -4900,6 +4931,7 @@ self: super: {
"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";
@@ -4925,6 +4957,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5043,6 +5076,7 @@ self: super: {
"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";
@@ -5476,6 +5510,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5729,6 +5764,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5741,6 +5777,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5983,6 +6020,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -5990,6 +6028,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6021,6 +6060,7 @@ self: super: {
"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";
@@ -6069,6 +6109,7 @@ self: super: {
"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";
@@ -6083,6 +6124,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6181,6 +6223,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6198,6 +6241,7 @@ self: super: {
"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";
@@ -6256,6 +6300,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6502,6 +6547,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6603,6 +6649,7 @@ self: super: {
"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";
@@ -6696,6 +6743,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_3_0";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6705,6 +6753,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6735,6 +6784,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -6878,6 +6928,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6893,8 +6944,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7076,6 +7129,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7266,6 +7320,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4";
@@ -7290,6 +7345,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7403,6 +7459,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7470,6 +7527,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7491,6 +7549,7 @@ self: super: {
"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";
@@ -7635,6 +7694,7 @@ self: super: {
"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";
@@ -7720,6 +7780,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7762,6 +7823,7 @@ self: super: {
"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";
@@ -7775,6 +7837,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7964,6 +8027,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -7983,6 +8047,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7995,6 +8060,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -8032,6 +8098,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8075,6 +8142,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8164,6 +8232,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8228,6 +8297,7 @@ self: super: {
"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_1";
@@ -8520,6 +8590,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8538,6 +8609,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8649,6 +8721,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8702,6 +8775,7 @@ self: super: {
"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";
@@ -8722,6 +8796,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8835,6 +8910,7 @@ self: super: {
"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";
@@ -8911,6 +8987,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix
index a570288bbf2..01cc9c230d3 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ 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";
@@ -1076,6 +1077,7 @@ self: super: {
"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";
@@ -1384,6 +1386,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1675,6 +1678,7 @@ self: super: {
"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";
@@ -2068,6 +2072,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2206,6 +2211,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2228,6 +2234,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2344,6 +2351,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2460,6 +2468,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2588,6 +2597,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2853,6 +2863,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2873,6 +2884,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2888,6 +2900,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2967,6 +2980,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2978,6 +2992,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3026,6 +3041,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3170,6 +3186,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3334,6 +3351,7 @@ self: super: {
"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";
@@ -3363,6 +3381,7 @@ self: super: {
"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";
@@ -3370,6 +3389,8 @@ 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";
@@ -3400,6 +3421,7 @@ 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";
@@ -3428,9 +3450,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3444,6 +3468,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3768,6 +3793,7 @@ self: super: {
"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";
@@ -3839,6 +3865,8 @@ self: super: {
"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";
@@ -3918,6 +3946,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4797,6 +4826,7 @@ self: super: {
"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";
@@ -4856,6 +4886,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4866,6 +4897,7 @@ self: super: {
"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";
@@ -4875,6 +4907,7 @@ self: super: {
"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";
@@ -4900,6 +4933,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5018,6 +5052,7 @@ self: super: {
"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";
@@ -5447,6 +5482,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5699,6 +5735,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_14";
@@ -5711,6 +5748,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5951,12 +5989,14 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5988,6 +6028,7 @@ self: super: {
"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";
@@ -6036,6 +6077,7 @@ self: super: {
"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";
@@ -6050,6 +6092,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6147,6 +6190,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6164,6 +6208,7 @@ self: super: {
"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";
@@ -6222,6 +6267,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6466,6 +6512,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6527,6 +6574,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6563,6 +6611,7 @@ self: super: {
"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";
@@ -6656,6 +6705,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6665,6 +6715,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6695,6 +6746,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6837,6 +6889,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6852,8 +6905,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6871,6 +6926,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7034,6 +7090,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7224,6 +7281,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7248,6 +7306,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7361,6 +7420,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7428,6 +7488,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7448,6 +7509,7 @@ self: super: {
"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";
@@ -7590,6 +7652,7 @@ self: super: {
"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";
@@ -7674,6 +7737,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7716,6 +7780,7 @@ self: super: {
"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";
@@ -7729,6 +7794,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7915,6 +7981,7 @@ self: super: {
"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";
@@ -7933,6 +8000,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7945,6 +8013,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -7982,6 +8051,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8025,6 +8095,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8114,6 +8185,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8177,6 +8249,7 @@ self: super: {
"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_2";
@@ -8467,6 +8540,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8485,6 +8559,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8594,6 +8669,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8646,6 +8722,7 @@ self: super: {
"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";
@@ -8666,6 +8743,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8776,6 +8854,7 @@ self: super: {
"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";
@@ -8852,6 +8931,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix
index e48f30b3afb..f539ba6f6cd 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ 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";
@@ -1076,6 +1077,7 @@ self: super: {
"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";
@@ -1384,6 +1386,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1675,6 +1678,7 @@ self: super: {
"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";
@@ -2067,6 +2071,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2205,6 +2210,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2227,6 +2233,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2343,6 +2350,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2459,6 +2467,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2587,6 +2596,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2852,6 +2862,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2872,6 +2883,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2887,6 +2899,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2966,6 +2979,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2977,6 +2991,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3024,6 +3039,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3168,6 +3184,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3332,6 +3349,7 @@ self: super: {
"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";
@@ -3361,6 +3379,7 @@ self: super: {
"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";
@@ -3368,6 +3387,8 @@ 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";
@@ -3398,6 +3419,7 @@ 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";
@@ -3426,9 +3448,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3442,6 +3466,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3766,6 +3791,7 @@ self: super: {
"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";
@@ -3837,6 +3863,8 @@ self: super: {
"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";
@@ -3916,6 +3944,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4795,6 +4824,7 @@ self: super: {
"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";
@@ -4854,6 +4884,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4864,6 +4895,7 @@ self: super: {
"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";
@@ -4873,6 +4905,7 @@ self: super: {
"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";
@@ -4898,6 +4931,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5016,6 +5050,7 @@ self: super: {
"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";
@@ -5445,6 +5480,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5697,6 +5733,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_14";
@@ -5709,6 +5746,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5949,12 +5987,14 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5986,6 +6026,7 @@ self: super: {
"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";
@@ -6034,6 +6075,7 @@ self: super: {
"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";
@@ -6048,6 +6090,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6145,6 +6188,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6162,6 +6206,7 @@ self: super: {
"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";
@@ -6220,6 +6265,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6463,6 +6509,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6524,6 +6571,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6560,6 +6608,7 @@ self: super: {
"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";
@@ -6653,6 +6702,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6662,6 +6712,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6692,6 +6743,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6834,6 +6886,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6849,8 +6902,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6868,6 +6923,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7031,6 +7087,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7221,6 +7278,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7245,6 +7303,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7358,6 +7417,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7425,6 +7485,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7445,6 +7506,7 @@ self: super: {
"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";
@@ -7587,6 +7649,7 @@ self: super: {
"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";
@@ -7671,6 +7734,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7713,6 +7777,7 @@ self: super: {
"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";
@@ -7726,6 +7791,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7912,6 +7978,7 @@ self: super: {
"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";
@@ -7930,6 +7997,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7942,6 +8010,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -7979,6 +8048,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8022,6 +8092,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8111,6 +8182,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8174,6 +8246,7 @@ self: super: {
"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_2";
@@ -8464,6 +8537,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8482,6 +8556,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8591,6 +8666,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8643,6 +8719,7 @@ self: super: {
"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";
@@ -8663,6 +8740,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8773,6 +8851,7 @@ self: super: {
"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";
@@ -8849,6 +8928,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix
index 95e073eb8ad..973b779e782 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ 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";
@@ -1076,6 +1077,7 @@ self: super: {
"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";
@@ -1384,6 +1386,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1675,6 +1678,7 @@ self: super: {
"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";
@@ -2066,6 +2070,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2204,6 +2209,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2226,6 +2232,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2342,6 +2349,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2458,6 +2466,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2586,6 +2595,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2851,6 +2861,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2871,6 +2882,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2886,6 +2898,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2965,6 +2978,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2976,6 +2990,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3023,6 +3038,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3167,6 +3183,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3331,6 +3348,7 @@ self: super: {
"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";
@@ -3360,6 +3378,7 @@ self: super: {
"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";
@@ -3367,6 +3386,8 @@ 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";
@@ -3397,6 +3418,7 @@ 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";
@@ -3425,9 +3447,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3441,6 +3465,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3764,6 +3789,7 @@ self: super: {
"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";
@@ -3835,6 +3861,8 @@ self: super: {
"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";
@@ -3914,6 +3942,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4793,6 +4822,7 @@ self: super: {
"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";
@@ -4852,6 +4882,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4862,6 +4893,7 @@ self: super: {
"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";
@@ -4871,6 +4903,7 @@ self: super: {
"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";
@@ -4896,6 +4929,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5014,6 +5048,7 @@ self: super: {
"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";
@@ -5443,6 +5478,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5695,6 +5731,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
@@ -5707,6 +5744,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5947,12 +5985,14 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5984,6 +6024,7 @@ self: super: {
"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";
@@ -6032,6 +6073,7 @@ self: super: {
"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";
@@ -6046,6 +6088,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6143,6 +6186,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6160,6 +6204,7 @@ self: super: {
"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";
@@ -6218,6 +6263,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6460,6 +6506,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6521,6 +6568,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6557,6 +6605,7 @@ self: super: {
"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";
@@ -6650,6 +6699,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_5_3";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6659,6 +6709,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6689,6 +6740,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6831,6 +6883,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6846,8 +6899,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6865,6 +6920,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7028,6 +7084,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7218,6 +7275,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7242,6 +7300,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7355,6 +7414,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7422,6 +7482,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7442,6 +7503,7 @@ self: super: {
"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";
@@ -7584,6 +7646,7 @@ self: super: {
"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";
@@ -7668,6 +7731,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7710,6 +7774,7 @@ self: super: {
"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";
@@ -7723,6 +7788,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7908,6 +7974,7 @@ self: super: {
"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";
@@ -7926,6 +7993,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7938,6 +8006,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -7974,6 +8043,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8017,6 +8087,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8106,6 +8177,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8169,6 +8241,7 @@ self: super: {
"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_2";
@@ -8459,6 +8532,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8477,6 +8551,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8586,6 +8661,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8638,6 +8714,7 @@ self: super: {
"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";
@@ -8658,6 +8735,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8768,6 +8846,7 @@ self: super: {
"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";
@@ -8844,6 +8923,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix
index 0bba76b79b3..a312e098f72 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ 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";
@@ -1076,6 +1077,7 @@ self: super: {
"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";
@@ -1384,6 +1386,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1675,6 +1678,7 @@ self: super: {
"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";
@@ -2066,6 +2070,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2204,6 +2209,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2226,6 +2232,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2342,6 +2349,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2458,6 +2466,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2586,6 +2595,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2851,6 +2861,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2871,6 +2882,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2886,6 +2898,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2965,6 +2978,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2976,6 +2990,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3023,6 +3038,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3167,6 +3183,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3331,6 +3348,7 @@ self: super: {
"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";
@@ -3360,6 +3378,7 @@ self: super: {
"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";
@@ -3367,6 +3386,8 @@ 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";
@@ -3397,6 +3418,7 @@ 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";
@@ -3425,9 +3447,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3441,6 +3465,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3764,6 +3789,7 @@ self: super: {
"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";
@@ -3835,6 +3861,8 @@ self: super: {
"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";
@@ -3914,6 +3942,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4792,6 +4821,7 @@ self: super: {
"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";
@@ -4851,6 +4881,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4861,6 +4892,7 @@ self: super: {
"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";
@@ -4870,6 +4902,7 @@ self: super: {
"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";
@@ -4895,6 +4928,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5013,6 +5047,7 @@ self: super: {
"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";
@@ -5441,6 +5476,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5693,6 +5729,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
@@ -5705,6 +5742,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5945,12 +5983,14 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5982,6 +6022,7 @@ self: super: {
"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";
@@ -6030,6 +6071,7 @@ self: super: {
"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";
@@ -6044,6 +6086,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6141,6 +6184,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6158,6 +6202,7 @@ self: super: {
"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";
@@ -6216,6 +6261,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6457,6 +6503,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6518,6 +6565,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6554,6 +6602,7 @@ self: super: {
"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";
@@ -6647,6 +6696,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_5_4";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6656,6 +6706,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6686,6 +6737,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6828,6 +6880,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6843,8 +6896,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6862,6 +6917,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7025,6 +7081,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7215,6 +7272,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7239,6 +7297,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7352,6 +7411,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7419,6 +7479,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7439,6 +7500,7 @@ self: super: {
"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";
@@ -7581,6 +7643,7 @@ self: super: {
"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";
@@ -7665,6 +7728,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7707,6 +7771,7 @@ self: super: {
"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";
@@ -7720,6 +7785,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7905,6 +7971,7 @@ self: super: {
"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";
@@ -7923,6 +7990,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7935,6 +8003,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -7971,6 +8040,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8014,6 +8084,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8103,6 +8174,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8166,6 +8238,7 @@ self: super: {
"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_2";
@@ -8456,6 +8529,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8474,6 +8548,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8582,6 +8657,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8634,6 +8710,7 @@ self: super: {
"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";
@@ -8654,6 +8731,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8764,6 +8842,7 @@ self: super: {
"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";
@@ -8840,6 +8919,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix
index c3766276b0c..ea5f74d187d 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ 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";
@@ -1042,6 +1043,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1075,6 +1077,7 @@ self: super: {
"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";
@@ -1383,6 +1386,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1674,6 +1678,7 @@ self: super: {
"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";
@@ -2064,6 +2069,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2202,6 +2208,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2224,6 +2231,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2339,6 +2347,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2455,6 +2464,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2583,6 +2593,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2848,6 +2859,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2868,6 +2880,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2883,6 +2896,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2962,6 +2976,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2973,6 +2988,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3020,6 +3036,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3164,6 +3181,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3328,6 +3346,7 @@ self: super: {
"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";
@@ -3357,6 +3376,7 @@ self: super: {
"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";
@@ -3364,6 +3384,8 @@ 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";
@@ -3394,6 +3416,7 @@ 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";
@@ -3422,9 +3445,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3438,6 +3463,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3761,6 +3787,7 @@ self: super: {
"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";
@@ -3832,6 +3859,8 @@ self: super: {
"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";
@@ -3911,6 +3940,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4788,6 +4818,7 @@ self: super: {
"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";
@@ -4847,6 +4878,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4857,6 +4889,7 @@ self: super: {
"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";
@@ -4866,6 +4899,7 @@ self: super: {
"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";
@@ -4891,6 +4925,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5009,6 +5044,7 @@ self: super: {
"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";
@@ -5437,6 +5473,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5689,6 +5726,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
@@ -5701,6 +5739,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5941,12 +5980,14 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5978,6 +6019,7 @@ self: super: {
"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";
@@ -6026,6 +6068,7 @@ self: super: {
"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";
@@ -6040,6 +6083,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6137,6 +6181,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6154,6 +6199,7 @@ self: super: {
"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";
@@ -6212,6 +6258,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6453,6 +6500,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6514,6 +6562,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6550,6 +6599,7 @@ self: super: {
"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";
@@ -6643,6 +6693,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_5_4";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6652,6 +6703,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6682,6 +6734,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6824,6 +6877,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6839,8 +6893,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6858,6 +6914,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7021,6 +7078,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7211,6 +7269,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7235,6 +7294,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7348,6 +7408,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7415,6 +7476,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7435,6 +7497,7 @@ self: super: {
"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";
@@ -7577,6 +7640,7 @@ self: super: {
"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";
@@ -7661,6 +7725,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7703,6 +7768,7 @@ self: super: {
"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";
@@ -7716,6 +7782,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7901,6 +7968,7 @@ self: super: {
"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";
@@ -7919,6 +7987,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7931,6 +8000,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -7967,6 +8037,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8010,6 +8081,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8099,6 +8171,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8162,6 +8235,7 @@ self: super: {
"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_3";
@@ -8452,6 +8526,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8470,6 +8545,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8578,6 +8654,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8629,6 +8706,7 @@ self: super: {
"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";
@@ -8649,6 +8727,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8759,6 +8838,7 @@ self: super: {
"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";
@@ -8835,6 +8915,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix
index 1476133f99b..af06a3ce0b4 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ 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";
@@ -1042,6 +1043,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1075,6 +1077,7 @@ self: super: {
"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";
@@ -1383,6 +1386,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1674,6 +1678,7 @@ self: super: {
"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";
@@ -2064,6 +2069,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2202,6 +2208,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2224,6 +2231,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2339,6 +2347,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2455,6 +2464,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2583,6 +2593,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2848,6 +2859,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2868,6 +2880,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2883,6 +2896,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2962,6 +2976,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2973,6 +2988,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3020,6 +3036,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3164,6 +3181,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3328,6 +3346,7 @@ self: super: {
"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";
@@ -3357,6 +3376,7 @@ self: super: {
"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";
@@ -3364,6 +3384,8 @@ 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";
@@ -3394,6 +3416,7 @@ 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";
@@ -3422,9 +3445,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3438,6 +3463,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3761,6 +3787,7 @@ self: super: {
"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";
@@ -3832,6 +3859,8 @@ self: super: {
"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";
@@ -3911,6 +3940,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4785,6 +4815,7 @@ self: super: {
"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";
@@ -4844,6 +4875,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4854,6 +4886,7 @@ self: super: {
"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";
@@ -4863,6 +4896,7 @@ self: super: {
"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";
@@ -4888,6 +4922,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5006,6 +5041,7 @@ self: super: {
"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";
@@ -5434,6 +5470,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5686,6 +5723,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
@@ -5698,6 +5736,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5938,12 +5977,14 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5975,6 +6016,7 @@ self: super: {
"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";
@@ -6023,6 +6065,7 @@ self: super: {
"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";
@@ -6037,6 +6080,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6134,6 +6178,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6151,6 +6196,7 @@ self: super: {
"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";
@@ -6209,6 +6255,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6450,6 +6497,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6511,6 +6559,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6547,6 +6596,7 @@ self: super: {
"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";
@@ -6640,6 +6690,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6649,6 +6700,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6679,6 +6731,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6821,6 +6874,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6836,8 +6890,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6855,6 +6911,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7018,6 +7075,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7208,6 +7266,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7231,6 +7290,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7344,6 +7404,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7411,6 +7472,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7431,6 +7493,7 @@ self: super: {
"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";
@@ -7573,6 +7636,7 @@ self: super: {
"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";
@@ -7657,6 +7721,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7699,6 +7764,7 @@ self: super: {
"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";
@@ -7712,6 +7778,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7897,6 +7964,7 @@ self: super: {
"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";
@@ -7915,6 +7983,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7927,6 +7996,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -7963,6 +8033,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8006,6 +8077,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8095,6 +8167,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8158,6 +8231,7 @@ self: super: {
"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_3";
@@ -8448,6 +8522,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8466,6 +8541,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8574,6 +8650,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8625,6 +8702,7 @@ self: super: {
"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";
@@ -8645,6 +8723,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8755,6 +8834,7 @@ self: super: {
"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";
@@ -8831,6 +8911,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix
index f3651a2cee2..2afef4539ee 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -658,6 +659,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1008,7 +1010,6 @@ 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";
@@ -1041,6 +1042,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1074,6 +1076,7 @@ self: super: {
"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";
@@ -1382,6 +1385,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1673,6 +1677,7 @@ self: super: {
"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";
@@ -2063,6 +2068,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2201,6 +2207,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2223,6 +2230,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2338,6 +2346,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2454,6 +2463,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2582,6 +2592,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2847,6 +2858,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2867,6 +2879,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2882,6 +2895,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2960,6 +2974,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2971,6 +2986,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3018,6 +3034,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3162,6 +3179,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3326,6 +3344,7 @@ self: super: {
"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";
@@ -3355,6 +3374,7 @@ self: super: {
"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";
@@ -3362,6 +3382,8 @@ 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";
@@ -3392,6 +3414,7 @@ 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";
@@ -3420,9 +3443,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3436,6 +3461,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3758,6 +3784,7 @@ self: super: {
"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";
@@ -3829,6 +3856,8 @@ self: super: {
"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";
@@ -3908,6 +3937,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4782,6 +4812,7 @@ self: super: {
"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";
@@ -4841,6 +4872,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4851,6 +4883,7 @@ self: super: {
"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";
@@ -4860,6 +4893,7 @@ self: super: {
"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";
@@ -4885,6 +4919,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5003,6 +5038,7 @@ self: super: {
"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";
@@ -5430,6 +5466,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5681,6 +5718,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
@@ -5693,6 +5731,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5933,12 +5972,14 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5970,6 +6011,7 @@ self: super: {
"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";
@@ -6018,6 +6060,7 @@ self: super: {
"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";
@@ -6032,6 +6075,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6129,6 +6173,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6146,6 +6191,7 @@ self: super: {
"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";
@@ -6204,6 +6250,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6445,6 +6492,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6505,6 +6553,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6541,6 +6590,7 @@ self: super: {
"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";
@@ -6634,6 +6684,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6643,6 +6694,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6673,6 +6725,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6815,6 +6868,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6829,8 +6883,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6848,6 +6904,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7011,6 +7068,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7201,6 +7259,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7224,6 +7283,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7337,6 +7397,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7404,6 +7465,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7424,6 +7486,7 @@ self: super: {
"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";
@@ -7566,6 +7629,7 @@ self: super: {
"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";
@@ -7650,6 +7714,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7692,6 +7757,7 @@ self: super: {
"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";
@@ -7705,6 +7771,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7888,6 +7955,7 @@ self: super: {
"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";
@@ -7906,6 +7974,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7918,6 +7987,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -7954,6 +8024,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7997,6 +8068,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8085,6 +8157,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8148,6 +8221,7 @@ self: super: {
"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_3";
@@ -8438,6 +8512,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8456,6 +8531,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8564,6 +8640,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8615,6 +8692,7 @@ self: super: {
"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";
@@ -8635,6 +8713,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8745,6 +8824,7 @@ self: super: {
"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";
@@ -8821,6 +8901,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix
index 275e5e5d2e7..fcd5b4c24e0 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -658,6 +659,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1008,7 +1010,6 @@ 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";
@@ -1041,6 +1042,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1074,6 +1076,7 @@ self: super: {
"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";
@@ -1381,6 +1384,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1672,6 +1676,7 @@ self: super: {
"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";
@@ -2062,6 +2067,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2200,6 +2206,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2222,6 +2229,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2337,6 +2345,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2453,6 +2462,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2581,6 +2591,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2846,6 +2857,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2866,6 +2878,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2881,6 +2894,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2959,6 +2973,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2970,6 +2985,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3017,6 +3033,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3161,6 +3178,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3325,6 +3343,7 @@ self: super: {
"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";
@@ -3354,6 +3373,7 @@ self: super: {
"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";
@@ -3361,6 +3381,8 @@ 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";
@@ -3391,6 +3413,7 @@ 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";
@@ -3419,9 +3442,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3435,6 +3460,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3757,6 +3783,7 @@ self: super: {
"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";
@@ -3827,6 +3854,8 @@ self: super: {
"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";
@@ -3906,6 +3935,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4780,6 +4810,7 @@ self: super: {
"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";
@@ -4838,6 +4869,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4848,6 +4880,7 @@ self: super: {
"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";
@@ -4857,6 +4890,7 @@ self: super: {
"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";
@@ -4882,6 +4916,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5000,6 +5035,7 @@ self: super: {
"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";
@@ -5426,6 +5462,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5677,6 +5714,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
@@ -5689,6 +5727,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5928,12 +5967,14 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5965,6 +6006,7 @@ self: super: {
"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";
@@ -6013,6 +6055,7 @@ self: super: {
"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";
@@ -6027,6 +6070,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6124,6 +6168,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6141,6 +6186,7 @@ self: super: {
"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";
@@ -6199,6 +6245,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6440,6 +6487,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6500,6 +6548,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6536,6 +6585,7 @@ self: super: {
"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";
@@ -6629,6 +6679,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6638,6 +6689,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6668,6 +6720,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6810,6 +6863,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6824,8 +6878,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6843,6 +6899,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7006,6 +7063,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7196,6 +7254,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7219,6 +7278,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7332,6 +7392,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7399,6 +7460,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7419,6 +7481,7 @@ self: super: {
"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";
@@ -7561,6 +7624,7 @@ self: super: {
"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";
@@ -7645,6 +7709,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7687,6 +7752,7 @@ self: super: {
"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";
@@ -7700,6 +7766,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7883,6 +7950,7 @@ self: super: {
"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";
@@ -7901,6 +7969,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7913,6 +7982,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -7949,6 +8019,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7992,6 +8063,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8080,6 +8152,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8143,6 +8216,7 @@ self: super: {
"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_3";
@@ -8433,6 +8507,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8451,6 +8526,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8559,6 +8635,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8610,6 +8687,7 @@ self: super: {
"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";
@@ -8630,6 +8708,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8740,6 +8819,7 @@ self: super: {
"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";
@@ -8816,6 +8896,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix
index e9f3015c0b9..fdff43e5337 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -658,6 +659,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1008,7 +1010,6 @@ 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";
@@ -1041,6 +1042,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1074,6 +1076,7 @@ self: super: {
"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";
@@ -1381,6 +1384,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1672,6 +1676,7 @@ self: super: {
"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";
@@ -2061,6 +2066,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2199,6 +2205,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2221,6 +2228,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2336,6 +2344,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2452,6 +2461,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2580,6 +2590,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2845,6 +2856,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2865,6 +2877,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2880,6 +2893,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2958,6 +2972,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2969,6 +2984,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3016,6 +3032,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3160,6 +3177,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3324,6 +3342,7 @@ self: super: {
"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";
@@ -3353,6 +3372,7 @@ self: super: {
"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";
@@ -3360,6 +3380,8 @@ 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";
@@ -3390,6 +3412,7 @@ 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";
@@ -3418,9 +3441,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3433,6 +3458,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3753,6 +3779,7 @@ self: super: {
"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";
@@ -3823,6 +3850,8 @@ self: super: {
"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";
@@ -3902,6 +3931,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4775,6 +4805,7 @@ self: super: {
"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";
@@ -4833,6 +4864,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4843,6 +4875,7 @@ self: super: {
"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";
@@ -4852,6 +4885,7 @@ self: super: {
"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";
@@ -4877,6 +4911,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4995,6 +5030,7 @@ self: super: {
"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";
@@ -5421,6 +5457,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5672,6 +5709,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5684,6 +5722,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5923,12 +5962,14 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5960,6 +6001,7 @@ self: super: {
"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";
@@ -6008,6 +6050,7 @@ self: super: {
"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";
@@ -6022,6 +6065,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6119,6 +6163,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6136,6 +6181,7 @@ self: super: {
"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";
@@ -6193,6 +6239,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6434,6 +6481,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6494,6 +6542,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6530,6 +6579,7 @@ self: super: {
"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";
@@ -6623,6 +6673,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6632,6 +6683,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6662,6 +6714,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6804,6 +6857,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6818,8 +6872,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6837,6 +6893,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7000,6 +7057,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7190,6 +7248,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7213,6 +7272,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7326,6 +7386,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7393,6 +7454,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7413,6 +7475,7 @@ self: super: {
"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";
@@ -7555,6 +7618,7 @@ self: super: {
"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";
@@ -7639,6 +7703,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7681,6 +7746,7 @@ self: super: {
"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";
@@ -7694,6 +7760,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7877,6 +7944,7 @@ self: super: {
"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";
@@ -7895,6 +7963,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7907,6 +7976,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -7943,6 +8013,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7986,6 +8057,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8074,6 +8146,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8137,6 +8210,7 @@ self: super: {
"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_3";
@@ -8427,6 +8501,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8445,6 +8520,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8553,6 +8629,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8604,6 +8681,7 @@ self: super: {
"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";
@@ -8624,6 +8702,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8734,6 +8813,7 @@ self: super: {
"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";
@@ -8810,6 +8890,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix
index aa17b0ea8f7..4ad408e7819 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -658,6 +659,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1008,7 +1010,6 @@ 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";
@@ -1041,6 +1042,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1074,6 +1076,7 @@ self: super: {
"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";
@@ -1381,6 +1384,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1671,6 +1675,7 @@ self: super: {
"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";
@@ -1772,6 +1777,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -2058,6 +2064,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2195,6 +2202,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2217,6 +2225,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2332,6 +2341,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2448,6 +2458,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2576,6 +2587,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2841,6 +2853,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2861,6 +2874,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2876,6 +2890,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2954,6 +2969,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2965,6 +2981,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3012,6 +3029,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3156,6 +3174,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3320,6 +3339,7 @@ self: super: {
"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";
@@ -3349,6 +3369,7 @@ self: super: {
"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";
@@ -3356,6 +3377,8 @@ 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";
@@ -3386,6 +3409,7 @@ 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";
@@ -3414,9 +3438,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3429,6 +3455,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3749,6 +3776,7 @@ self: super: {
"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";
@@ -3819,6 +3847,8 @@ self: super: {
"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";
@@ -3898,6 +3928,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4769,6 +4800,7 @@ self: super: {
"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";
@@ -4827,6 +4859,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4837,6 +4870,7 @@ self: super: {
"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";
@@ -4846,6 +4880,7 @@ self: super: {
"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";
@@ -4871,6 +4906,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4989,6 +5025,7 @@ self: super: {
"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";
@@ -5413,6 +5450,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5664,6 +5702,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5676,6 +5715,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5914,12 +5954,14 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5951,6 +5993,7 @@ self: super: {
"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";
@@ -5999,6 +6042,7 @@ self: super: {
"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";
@@ -6013,6 +6057,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6110,6 +6155,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6127,6 +6173,7 @@ self: super: {
"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";
@@ -6184,6 +6231,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6425,6 +6473,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6485,6 +6534,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6521,6 +6571,7 @@ self: super: {
"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";
@@ -6614,6 +6665,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6623,6 +6675,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6653,6 +6706,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6795,6 +6849,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6809,8 +6864,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6828,6 +6885,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -6991,6 +7049,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7181,6 +7240,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7204,6 +7264,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7317,6 +7378,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7384,6 +7446,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7404,6 +7467,7 @@ self: super: {
"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";
@@ -7545,6 +7609,7 @@ self: super: {
"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";
@@ -7629,6 +7694,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7671,6 +7737,7 @@ self: super: {
"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";
@@ -7684,6 +7751,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7867,6 +7935,7 @@ self: super: {
"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";
@@ -7885,6 +7954,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7897,6 +7967,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -7933,6 +8004,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7976,6 +8048,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8064,6 +8137,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8127,6 +8201,7 @@ self: super: {
"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_4";
@@ -8417,6 +8492,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8435,6 +8511,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8543,6 +8620,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8594,6 +8672,7 @@ self: super: {
"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";
@@ -8614,6 +8693,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8723,6 +8803,7 @@ self: super: {
"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";
@@ -8799,6 +8880,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix
index 7d5319c0c64..43cbd21a44e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ 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";
@@ -1078,6 +1078,7 @@ self: super: {
"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";
@@ -1387,6 +1388,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1681,6 +1683,7 @@ self: super: {
"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";
@@ -2076,6 +2079,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2214,6 +2218,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2236,6 +2241,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2353,6 +2359,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2469,6 +2476,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2597,6 +2605,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2864,6 +2873,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2884,6 +2894,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2899,6 +2910,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2978,6 +2990,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2989,6 +3002,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3037,6 +3051,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3183,6 +3198,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3347,6 +3363,7 @@ self: super: {
"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";
@@ -3376,6 +3393,7 @@ self: super: {
"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";
@@ -3383,6 +3401,8 @@ 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,6 +3433,7 @@ 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";
@@ -3441,9 +3462,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3457,6 +3480,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3783,6 +3807,7 @@ self: super: {
"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";
@@ -3854,6 +3879,8 @@ self: super: {
"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";
@@ -3933,6 +3960,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4818,6 +4846,7 @@ self: super: {
"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";
@@ -4877,6 +4906,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4887,6 +4917,7 @@ self: super: {
"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";
@@ -4896,6 +4927,7 @@ self: super: {
"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";
@@ -4921,6 +4953,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5039,6 +5072,7 @@ self: super: {
"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";
@@ -5471,6 +5505,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5724,6 +5759,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5736,6 +5772,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5978,6 +6015,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -5985,6 +6023,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6016,6 +6055,7 @@ self: super: {
"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";
@@ -6064,6 +6104,7 @@ self: super: {
"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";
@@ -6078,6 +6119,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6176,6 +6218,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6193,6 +6236,7 @@ self: super: {
"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";
@@ -6251,6 +6295,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6497,6 +6542,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6598,6 +6644,7 @@ self: super: {
"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";
@@ -6691,6 +6738,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_3_0";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6700,6 +6748,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6730,6 +6779,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6872,6 +6922,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6887,8 +6938,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -7070,6 +7123,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7260,6 +7314,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4";
@@ -7284,6 +7339,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_1";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7397,6 +7453,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7464,6 +7521,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7484,6 +7542,7 @@ self: super: {
"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";
@@ -7628,6 +7687,7 @@ self: super: {
"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";
@@ -7713,6 +7773,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7755,6 +7816,7 @@ self: super: {
"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";
@@ -7768,6 +7830,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7957,6 +8020,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -7976,6 +8040,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7988,6 +8053,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -8025,6 +8091,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8068,6 +8135,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8157,6 +8225,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8221,6 +8290,7 @@ self: super: {
"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_1";
@@ -8513,6 +8583,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8531,6 +8602,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8642,6 +8714,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8695,6 +8768,7 @@ self: super: {
"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";
@@ -8715,6 +8789,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8828,6 +8903,7 @@ self: super: {
"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";
@@ -8904,6 +8980,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix
index 89cc6684d9b..ea72256fc47 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix
@@ -491,6 +491,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -657,6 +658,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1007,7 +1009,6 @@ 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";
@@ -1040,6 +1041,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1073,6 +1075,7 @@ self: super: {
"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";
@@ -1380,6 +1383,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1670,6 +1674,7 @@ self: super: {
"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";
@@ -1771,6 +1776,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -2057,6 +2063,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2194,6 +2201,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2216,6 +2224,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2331,6 +2340,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2447,6 +2457,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2575,6 +2586,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2840,6 +2852,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2860,6 +2873,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2875,6 +2889,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2953,6 +2968,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2964,6 +2980,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3011,6 +3028,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3155,6 +3173,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3319,6 +3338,7 @@ self: super: {
"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";
@@ -3348,6 +3368,7 @@ self: super: {
"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";
@@ -3355,6 +3376,8 @@ 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";
@@ -3385,6 +3408,7 @@ 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";
@@ -3413,9 +3437,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3428,6 +3454,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3748,6 +3775,7 @@ self: super: {
"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";
@@ -3818,6 +3846,8 @@ self: super: {
"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";
@@ -3897,6 +3927,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4768,6 +4799,7 @@ self: super: {
"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";
@@ -4826,6 +4858,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4836,6 +4869,7 @@ self: super: {
"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";
@@ -4845,6 +4879,7 @@ self: super: {
"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";
@@ -4870,6 +4905,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4988,6 +5024,7 @@ self: super: {
"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";
@@ -5412,6 +5449,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5663,6 +5701,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5675,6 +5714,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5913,12 +5953,14 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5950,6 +5992,7 @@ self: super: {
"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";
@@ -5998,6 +6041,7 @@ self: super: {
"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";
@@ -6012,6 +6056,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6109,6 +6154,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6126,6 +6172,7 @@ self: super: {
"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";
@@ -6183,6 +6230,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6424,6 +6472,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6484,6 +6533,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6520,6 +6570,7 @@ self: super: {
"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";
@@ -6613,6 +6664,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6622,6 +6674,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6652,6 +6705,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6794,6 +6848,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6808,8 +6863,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6826,6 +6883,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -6989,6 +7047,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7179,6 +7238,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7202,6 +7262,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7315,6 +7376,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7382,6 +7444,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7402,6 +7465,7 @@ self: super: {
"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";
@@ -7543,6 +7607,7 @@ self: super: {
"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";
@@ -7626,6 +7691,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7668,6 +7734,7 @@ self: super: {
"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";
@@ -7681,6 +7748,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7864,6 +7932,7 @@ self: super: {
"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";
@@ -7882,6 +7951,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7894,6 +7964,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7930,6 +8001,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7973,6 +8045,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8061,6 +8134,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8124,6 +8198,7 @@ self: super: {
"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_4";
@@ -8414,6 +8489,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8432,6 +8508,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8540,6 +8617,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8591,6 +8669,7 @@ self: super: {
"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";
@@ -8611,6 +8690,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8719,6 +8799,7 @@ self: super: {
"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";
@@ -8795,6 +8876,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix
index 72e3391f743..f353ba79749 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix
@@ -491,6 +491,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -657,6 +658,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1007,7 +1009,6 @@ 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";
@@ -1040,6 +1041,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1073,6 +1075,7 @@ self: super: {
"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";
@@ -1380,6 +1383,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1670,6 +1674,7 @@ self: super: {
"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";
@@ -1771,6 +1776,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -2057,6 +2063,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2193,6 +2200,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2215,6 +2223,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2330,6 +2339,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2446,6 +2456,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2574,6 +2585,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2839,6 +2851,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2859,6 +2872,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2874,6 +2888,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2952,6 +2967,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2963,6 +2979,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3010,6 +3027,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3152,6 +3170,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3316,6 +3335,7 @@ self: super: {
"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";
@@ -3345,6 +3365,7 @@ self: super: {
"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";
@@ -3352,6 +3373,8 @@ 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";
@@ -3382,6 +3405,7 @@ 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";
@@ -3410,9 +3434,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3425,6 +3451,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3745,6 +3772,7 @@ self: super: {
"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";
@@ -3815,6 +3843,8 @@ self: super: {
"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";
@@ -3894,6 +3924,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4763,6 +4794,7 @@ self: super: {
"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";
@@ -4821,6 +4853,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4831,6 +4864,7 @@ self: super: {
"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";
@@ -4840,6 +4874,7 @@ self: super: {
"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";
@@ -4865,6 +4900,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4983,6 +5019,7 @@ self: super: {
"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";
@@ -5407,6 +5444,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5658,6 +5696,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5670,6 +5709,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5907,12 +5947,14 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5944,6 +5986,7 @@ self: super: {
"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";
@@ -5992,6 +6035,7 @@ self: super: {
"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";
@@ -6006,6 +6050,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6103,6 +6148,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6120,6 +6166,7 @@ self: super: {
"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";
@@ -6176,6 +6223,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6416,6 +6464,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6476,6 +6525,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6512,6 +6562,7 @@ self: super: {
"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";
@@ -6605,6 +6656,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6614,6 +6666,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6644,6 +6697,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6786,6 +6840,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6800,8 +6855,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6818,6 +6875,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -6980,6 +7038,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7169,6 +7228,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -7192,6 +7252,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7302,6 +7363,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7368,6 +7430,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7388,6 +7451,7 @@ self: super: {
"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";
@@ -7529,6 +7593,7 @@ self: super: {
"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";
@@ -7612,6 +7677,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7654,6 +7720,7 @@ self: super: {
"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";
@@ -7667,6 +7734,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7850,6 +7918,7 @@ self: super: {
"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";
@@ -7868,6 +7937,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7880,6 +7950,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7916,6 +7987,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7959,6 +8031,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8047,6 +8120,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8110,6 +8184,7 @@ self: super: {
"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_5";
@@ -8400,6 +8475,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8418,6 +8494,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8503,6 +8580,7 @@ self: super: {
"wai-throttler" = dontDistribute super."wai-throttler";
"wai-transformers" = dontDistribute super."wai-transformers";
"wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8523,6 +8601,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8574,6 +8653,7 @@ self: super: {
"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";
@@ -8594,6 +8674,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8702,6 +8783,7 @@ self: super: {
"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";
@@ -8778,6 +8860,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8859,6 +8942,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = dontDistribute super."zim-parser";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix
index eecb89f1f3a..a58da47a392 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix
@@ -491,6 +491,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -657,6 +658,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1007,7 +1009,6 @@ 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";
@@ -1040,6 +1041,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1073,6 +1075,7 @@ self: super: {
"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";
@@ -1380,6 +1383,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1670,6 +1674,7 @@ self: super: {
"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";
@@ -1771,6 +1776,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -2057,6 +2063,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2193,6 +2200,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2215,6 +2223,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2330,6 +2339,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2446,6 +2456,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2574,6 +2585,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2839,6 +2851,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2859,6 +2872,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2874,6 +2888,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2952,6 +2967,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2963,6 +2979,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3010,6 +3027,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3151,6 +3169,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3315,6 +3334,7 @@ self: super: {
"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";
@@ -3344,6 +3364,7 @@ self: super: {
"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";
@@ -3351,6 +3372,8 @@ 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";
@@ -3381,6 +3404,7 @@ 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";
@@ -3409,9 +3433,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3424,6 +3450,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3744,6 +3771,7 @@ self: super: {
"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";
@@ -3814,6 +3842,8 @@ self: super: {
"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";
@@ -3893,6 +3923,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4760,6 +4791,7 @@ self: super: {
"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";
@@ -4805,6 +4837,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4817,6 +4850,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4827,6 +4861,7 @@ self: super: {
"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";
@@ -4836,6 +4871,7 @@ self: super: {
"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";
@@ -4860,6 +4896,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4978,6 +5015,7 @@ self: super: {
"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";
@@ -5402,6 +5440,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5653,6 +5692,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5665,6 +5705,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5902,12 +5943,14 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5939,6 +5982,7 @@ self: super: {
"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";
@@ -5987,6 +6031,7 @@ self: super: {
"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";
@@ -6001,6 +6046,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6098,6 +6144,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6115,6 +6162,7 @@ self: super: {
"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";
@@ -6171,6 +6219,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6411,6 +6460,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6471,6 +6521,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6507,6 +6558,7 @@ self: super: {
"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";
@@ -6600,6 +6652,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6609,6 +6662,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6639,6 +6693,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6781,6 +6836,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6795,8 +6851,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6813,6 +6871,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -6975,6 +7034,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7164,6 +7224,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -7187,6 +7248,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7297,6 +7359,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7363,6 +7426,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7383,6 +7447,7 @@ self: super: {
"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";
@@ -7524,6 +7589,7 @@ self: super: {
"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";
@@ -7607,6 +7673,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7649,6 +7716,7 @@ self: super: {
"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";
@@ -7662,6 +7730,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7845,6 +7914,7 @@ self: super: {
"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";
@@ -7863,6 +7933,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7875,6 +7946,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7911,6 +7983,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7954,6 +8027,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8042,6 +8116,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8105,6 +8180,7 @@ self: super: {
"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_5";
@@ -8395,6 +8471,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8413,6 +8490,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8498,6 +8576,7 @@ self: super: {
"wai-throttler" = dontDistribute super."wai-throttler";
"wai-transformers" = dontDistribute super."wai-transformers";
"wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8518,6 +8597,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8569,6 +8649,7 @@ self: super: {
"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";
@@ -8589,6 +8670,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8697,6 +8779,7 @@ self: super: {
"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";
@@ -8773,6 +8856,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8854,6 +8938,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = dontDistribute super."zim-parser";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix
index 7ec5e6f8c5c..64b928a9331 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ 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";
@@ -1078,6 +1078,7 @@ self: super: {
"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";
@@ -1387,6 +1388,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1681,6 +1683,7 @@ self: super: {
"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";
@@ -2076,6 +2079,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2214,6 +2218,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2236,6 +2241,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2353,6 +2359,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2469,6 +2476,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2597,6 +2605,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2864,6 +2873,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2884,6 +2894,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2899,6 +2910,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2978,6 +2990,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2989,6 +3002,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3037,6 +3051,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3182,6 +3197,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3346,6 +3362,7 @@ self: super: {
"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";
@@ -3375,6 +3392,7 @@ self: super: {
"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";
@@ -3382,6 +3400,8 @@ 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,6 +3432,7 @@ 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";
@@ -3440,9 +3461,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3456,6 +3479,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3782,6 +3806,7 @@ self: super: {
"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";
@@ -3853,6 +3878,8 @@ self: super: {
"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";
@@ -3932,6 +3959,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4816,6 +4844,7 @@ self: super: {
"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";
@@ -4875,6 +4904,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4885,6 +4915,7 @@ self: super: {
"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";
@@ -4894,6 +4925,7 @@ self: super: {
"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";
@@ -4919,6 +4951,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5037,6 +5070,7 @@ self: super: {
"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";
@@ -5469,6 +5503,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5722,6 +5757,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5734,6 +5770,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5976,6 +6013,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -5983,6 +6021,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6014,6 +6053,7 @@ self: super: {
"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";
@@ -6062,6 +6102,7 @@ self: super: {
"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";
@@ -6076,6 +6117,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6174,6 +6216,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6191,6 +6234,7 @@ self: super: {
"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";
@@ -6249,6 +6293,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6495,6 +6540,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6596,6 +6642,7 @@ self: super: {
"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";
@@ -6689,6 +6736,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6698,6 +6746,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6728,6 +6777,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6870,6 +6920,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6885,8 +6936,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6904,6 +6957,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7067,6 +7121,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7257,6 +7312,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_2";
@@ -7281,6 +7337,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_2";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7394,6 +7451,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7461,6 +7519,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7481,6 +7540,7 @@ self: super: {
"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";
@@ -7624,6 +7684,7 @@ self: super: {
"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";
@@ -7709,6 +7770,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7751,6 +7813,7 @@ self: super: {
"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";
@@ -7764,6 +7827,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7953,6 +8017,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -7972,6 +8037,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7984,6 +8050,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -8021,6 +8088,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8064,6 +8132,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8153,6 +8222,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8217,6 +8287,7 @@ self: super: {
"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_1";
@@ -8508,6 +8579,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8526,6 +8598,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8637,6 +8710,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8690,6 +8764,7 @@ self: super: {
"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";
@@ -8710,6 +8785,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8823,6 +8899,7 @@ self: super: {
"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";
@@ -8899,6 +8976,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix
index 75925456656..8e2a0782bc6 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ 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";
@@ -1078,6 +1078,7 @@ self: super: {
"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";
@@ -1387,6 +1388,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1681,6 +1683,7 @@ self: super: {
"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";
@@ -2076,6 +2079,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2214,6 +2218,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2236,6 +2241,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2353,6 +2359,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2469,6 +2476,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2597,6 +2605,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2864,6 +2873,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2884,6 +2894,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2899,6 +2910,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2978,6 +2990,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2989,6 +3002,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3037,6 +3051,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3182,6 +3197,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3346,6 +3362,7 @@ self: super: {
"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";
@@ -3375,6 +3392,7 @@ self: super: {
"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";
@@ -3382,6 +3400,8 @@ 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,6 +3432,7 @@ 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";
@@ -3440,9 +3461,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3456,6 +3479,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3782,6 +3806,7 @@ self: super: {
"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";
@@ -3853,6 +3878,8 @@ self: super: {
"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";
@@ -3932,6 +3959,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4816,6 +4844,7 @@ self: super: {
"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";
@@ -4875,6 +4904,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4885,6 +4915,7 @@ self: super: {
"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";
@@ -4894,6 +4925,7 @@ self: super: {
"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";
@@ -4919,6 +4951,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5037,6 +5070,7 @@ self: super: {
"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";
@@ -5469,6 +5503,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5722,6 +5757,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5734,6 +5770,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5976,6 +6013,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -5983,6 +6021,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6014,6 +6053,7 @@ self: super: {
"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";
@@ -6062,6 +6102,7 @@ self: super: {
"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";
@@ -6076,6 +6117,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6174,6 +6216,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6191,6 +6234,7 @@ self: super: {
"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";
@@ -6249,6 +6293,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6495,6 +6540,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6596,6 +6642,7 @@ self: super: {
"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";
@@ -6689,6 +6736,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6698,6 +6746,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6728,6 +6777,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6870,6 +6920,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6885,8 +6936,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6904,6 +6957,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7067,6 +7121,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7257,6 +7312,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_2";
@@ -7281,6 +7337,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_2";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7394,6 +7451,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7461,6 +7519,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7481,6 +7540,7 @@ self: super: {
"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";
@@ -7624,6 +7684,7 @@ self: super: {
"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";
@@ -7708,6 +7769,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7750,6 +7812,7 @@ self: super: {
"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";
@@ -7763,6 +7826,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7952,6 +8016,7 @@ self: super: {
"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-hunit" = doDistribute super."test-framework-hunit_0_3_0_1";
@@ -7971,6 +8036,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7983,6 +8049,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -8020,6 +8087,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8063,6 +8131,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8152,6 +8221,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8216,6 +8286,7 @@ self: super: {
"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_1";
@@ -8507,6 +8578,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8525,6 +8597,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8635,6 +8708,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8688,6 +8762,7 @@ self: super: {
"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";
@@ -8708,6 +8783,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8821,6 +8897,7 @@ self: super: {
"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";
@@ -8897,6 +8974,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix
index db27d282439..d74a7092a75 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ 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";
@@ -1078,6 +1078,7 @@ self: super: {
"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";
@@ -1386,6 +1387,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1680,6 +1682,7 @@ self: super: {
"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";
@@ -2075,6 +2078,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2213,6 +2217,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2235,6 +2240,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2352,6 +2358,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2468,6 +2475,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2596,6 +2604,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2863,6 +2872,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2883,6 +2893,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2898,6 +2909,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2977,6 +2989,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2988,6 +3001,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3036,6 +3050,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3180,6 +3195,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3344,6 +3360,7 @@ self: super: {
"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";
@@ -3373,6 +3390,7 @@ self: super: {
"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";
@@ -3380,6 +3398,8 @@ 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";
@@ -3410,6 +3430,7 @@ 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";
@@ -3438,9 +3459,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3454,6 +3477,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3780,6 +3804,7 @@ self: super: {
"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";
@@ -3851,6 +3876,8 @@ self: super: {
"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";
@@ -3930,6 +3957,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4810,6 +4838,7 @@ self: super: {
"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";
@@ -4869,6 +4898,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4879,6 +4909,7 @@ self: super: {
"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";
@@ -4888,6 +4919,7 @@ self: super: {
"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";
@@ -4913,6 +4945,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5031,6 +5064,7 @@ self: super: {
"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";
@@ -5463,6 +5497,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5716,6 +5751,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5728,6 +5764,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5969,6 +6006,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -5976,6 +6014,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6007,6 +6046,7 @@ self: super: {
"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";
@@ -6055,6 +6095,7 @@ self: super: {
"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";
@@ -6069,6 +6110,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6167,6 +6209,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6184,6 +6227,7 @@ self: super: {
"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";
@@ -6242,6 +6286,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6487,6 +6532,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6587,6 +6633,7 @@ self: super: {
"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";
@@ -6680,6 +6727,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6689,6 +6737,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6719,6 +6768,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6861,6 +6911,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6876,8 +6927,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6895,6 +6948,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7058,6 +7112,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7248,6 +7303,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_2";
@@ -7272,6 +7328,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_2";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7385,6 +7442,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7452,6 +7510,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7472,6 +7531,7 @@ self: super: {
"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";
@@ -7615,6 +7675,7 @@ self: super: {
"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";
@@ -7699,6 +7760,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7741,6 +7803,7 @@ self: super: {
"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";
@@ -7754,6 +7817,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7941,6 +8005,7 @@ self: super: {
"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";
@@ -7959,6 +8024,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7971,6 +8037,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -8008,6 +8075,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8051,6 +8119,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8140,6 +8209,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8204,6 +8274,7 @@ self: super: {
"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_1";
@@ -8495,6 +8566,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8513,6 +8585,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8623,6 +8696,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8676,6 +8750,7 @@ self: super: {
"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";
@@ -8696,6 +8771,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8808,6 +8884,7 @@ self: super: {
"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";
@@ -8884,6 +8961,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix
index e1d11a279de..50a57c953ae 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ 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";
@@ -1078,6 +1078,7 @@ self: super: {
"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";
@@ -1386,6 +1387,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1680,6 +1682,7 @@ self: super: {
"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";
@@ -2075,6 +2078,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2213,6 +2217,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2235,6 +2240,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2352,6 +2358,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2468,6 +2475,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2596,6 +2604,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2863,6 +2872,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2883,6 +2893,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2898,6 +2909,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2977,6 +2989,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2988,6 +3001,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3036,6 +3050,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3180,6 +3195,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3344,6 +3360,7 @@ self: super: {
"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";
@@ -3373,6 +3390,7 @@ self: super: {
"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";
@@ -3380,6 +3398,8 @@ 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";
@@ -3410,6 +3430,7 @@ 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";
@@ -3438,9 +3459,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3454,6 +3477,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3778,6 +3802,7 @@ self: super: {
"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";
@@ -3849,6 +3874,8 @@ self: super: {
"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";
@@ -3928,6 +3955,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4808,6 +4836,7 @@ self: super: {
"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";
@@ -4867,6 +4896,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4877,6 +4907,7 @@ self: super: {
"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";
@@ -4886,6 +4917,7 @@ self: super: {
"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";
@@ -4911,6 +4943,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5029,6 +5062,7 @@ self: super: {
"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";
@@ -5458,6 +5492,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5711,6 +5746,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5723,6 +5759,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5964,6 +6001,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -5971,6 +6009,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6002,6 +6041,7 @@ self: super: {
"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";
@@ -6050,6 +6090,7 @@ self: super: {
"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";
@@ -6064,6 +6105,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6162,6 +6204,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6179,6 +6222,7 @@ self: super: {
"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";
@@ -6237,6 +6281,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6482,6 +6527,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6582,6 +6628,7 @@ self: super: {
"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";
@@ -6675,6 +6722,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6684,6 +6732,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6714,6 +6763,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6856,6 +6906,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6871,8 +6922,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6890,6 +6943,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7053,6 +7107,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7243,6 +7298,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_2";
@@ -7267,6 +7323,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_2";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7380,6 +7437,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7447,6 +7505,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7467,6 +7526,7 @@ self: super: {
"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";
@@ -7610,6 +7670,7 @@ self: super: {
"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";
@@ -7694,6 +7755,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7736,6 +7798,7 @@ self: super: {
"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";
@@ -7749,6 +7812,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7936,6 +8000,7 @@ self: super: {
"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";
@@ -7954,6 +8019,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7966,6 +8032,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -8003,6 +8070,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8046,6 +8114,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8135,6 +8204,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8198,6 +8268,7 @@ self: super: {
"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_1";
@@ -8489,6 +8560,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8507,6 +8579,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8616,6 +8689,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8669,6 +8743,7 @@ self: super: {
"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";
@@ -8689,6 +8764,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8801,6 +8877,7 @@ self: super: {
"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";
@@ -8877,6 +8954,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix
index 0db12c698b2..3fda40066c7 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ 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";
@@ -1078,6 +1078,7 @@ self: super: {
"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";
@@ -1386,6 +1387,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1678,6 +1680,7 @@ self: super: {
"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";
@@ -2073,6 +2076,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2211,6 +2215,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2233,6 +2238,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2349,6 +2355,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2465,6 +2472,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2593,6 +2601,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2860,6 +2869,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2880,6 +2890,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2895,6 +2906,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2974,6 +2986,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2985,6 +2998,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3033,6 +3047,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3177,6 +3192,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3341,6 +3357,7 @@ self: super: {
"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";
@@ -3370,6 +3387,7 @@ self: super: {
"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";
@@ -3377,6 +3395,8 @@ 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";
@@ -3407,6 +3427,7 @@ 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";
@@ -3435,9 +3456,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3451,6 +3474,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3775,6 +3799,7 @@ self: super: {
"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";
@@ -3846,6 +3871,8 @@ self: super: {
"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";
@@ -3925,6 +3952,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4804,6 +4832,7 @@ self: super: {
"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";
@@ -4863,6 +4892,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4873,6 +4903,7 @@ self: super: {
"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";
@@ -4882,6 +4913,7 @@ self: super: {
"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";
@@ -4907,6 +4939,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5025,6 +5058,7 @@ self: super: {
"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";
@@ -5454,6 +5488,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5707,6 +5742,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5719,6 +5755,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5960,6 +5997,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -5967,6 +6005,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5998,6 +6037,7 @@ self: super: {
"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";
@@ -6046,6 +6086,7 @@ self: super: {
"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";
@@ -6060,6 +6101,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6158,6 +6200,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6175,6 +6218,7 @@ self: super: {
"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";
@@ -6233,6 +6277,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6477,6 +6522,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6576,6 +6622,7 @@ self: super: {
"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";
@@ -6669,6 +6716,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6678,6 +6726,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6708,6 +6757,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6850,6 +6900,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6865,8 +6916,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6884,6 +6937,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7047,6 +7101,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7237,6 +7292,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_4";
@@ -7261,6 +7317,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7374,6 +7431,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7441,6 +7499,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7461,6 +7520,7 @@ self: super: {
"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";
@@ -7603,6 +7663,7 @@ self: super: {
"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";
@@ -7687,6 +7748,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7729,6 +7791,7 @@ self: super: {
"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";
@@ -7742,6 +7805,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7929,6 +7993,7 @@ self: super: {
"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";
@@ -7947,6 +8012,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7959,6 +8025,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -7996,6 +8063,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8039,6 +8107,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8128,6 +8197,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8191,6 +8261,7 @@ self: super: {
"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_1";
@@ -8482,6 +8553,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8500,6 +8572,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8609,6 +8682,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8662,6 +8736,7 @@ self: super: {
"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";
@@ -8682,6 +8757,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8792,6 +8868,7 @@ self: super: {
"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";
@@ -8868,6 +8945,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix
index 47c13adab0f..adc5fd60c7a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ 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";
@@ -1078,6 +1078,7 @@ self: super: {
"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";
@@ -1386,6 +1387,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1678,6 +1680,7 @@ self: super: {
"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";
@@ -2071,6 +2074,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2209,6 +2213,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2231,6 +2236,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2347,6 +2353,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2463,6 +2470,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2591,6 +2599,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2857,6 +2866,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2877,6 +2887,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2892,6 +2903,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2971,6 +2983,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2982,6 +2995,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3030,6 +3044,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3174,6 +3189,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3338,6 +3354,7 @@ self: super: {
"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";
@@ -3367,6 +3384,7 @@ self: super: {
"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";
@@ -3374,6 +3392,8 @@ 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,6 +3424,7 @@ 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";
@@ -3432,9 +3453,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3448,6 +3471,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3772,6 +3796,7 @@ self: super: {
"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";
@@ -3843,6 +3868,8 @@ self: super: {
"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";
@@ -3922,6 +3949,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4801,6 +4829,7 @@ self: super: {
"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";
@@ -4860,6 +4889,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4870,6 +4900,7 @@ self: super: {
"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";
@@ -4879,6 +4910,7 @@ self: super: {
"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";
@@ -4904,6 +4936,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5022,6 +5055,7 @@ self: super: {
"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";
@@ -5451,6 +5485,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5703,6 +5738,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_14";
@@ -5715,6 +5751,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5956,6 +5993,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -5963,6 +6001,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5994,6 +6033,7 @@ self: super: {
"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";
@@ -6042,6 +6082,7 @@ self: super: {
"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";
@@ -6056,6 +6097,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6154,6 +6196,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6171,6 +6214,7 @@ self: super: {
"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";
@@ -6229,6 +6273,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6473,6 +6518,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6534,6 +6580,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6571,6 +6618,7 @@ self: super: {
"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";
@@ -6664,6 +6712,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6673,6 +6722,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6703,6 +6753,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6845,6 +6896,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6860,8 +6912,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6879,6 +6933,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7042,6 +7097,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7232,6 +7288,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_4";
@@ -7256,6 +7313,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7369,6 +7427,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7436,6 +7495,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7456,6 +7516,7 @@ self: super: {
"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";
@@ -7598,6 +7659,7 @@ self: super: {
"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";
@@ -7682,6 +7744,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7724,6 +7787,7 @@ self: super: {
"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";
@@ -7737,6 +7801,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7923,6 +7988,7 @@ self: super: {
"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";
@@ -7941,6 +8007,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7953,6 +8020,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -7990,6 +8058,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8033,6 +8102,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8122,6 +8192,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8185,6 +8256,7 @@ self: super: {
"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_2";
@@ -8476,6 +8548,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8494,6 +8567,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8603,6 +8677,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8656,6 +8731,7 @@ self: super: {
"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";
@@ -8676,6 +8752,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8786,6 +8863,7 @@ self: super: {
"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";
@@ -8862,6 +8940,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix
index 77c15982b99..7109847fb94 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ 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";
@@ -1076,6 +1077,7 @@ self: super: {
"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";
@@ -1384,6 +1386,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1675,6 +1678,7 @@ self: super: {
"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";
@@ -2068,6 +2072,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2206,6 +2211,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2228,6 +2234,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"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";
@@ -2344,6 +2351,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2460,6 +2468,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2588,6 +2597,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2853,6 +2863,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2873,6 +2884,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"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";
@@ -2888,6 +2900,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2967,6 +2980,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2978,6 +2992,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3026,6 +3041,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3170,6 +3186,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3334,6 +3351,7 @@ self: super: {
"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";
@@ -3363,6 +3381,7 @@ self: super: {
"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";
@@ -3370,6 +3389,8 @@ 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";
@@ -3400,6 +3421,7 @@ 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";
@@ -3428,9 +3450,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3444,6 +3468,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_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_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3768,6 +3793,7 @@ self: super: {
"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";
@@ -3839,6 +3865,8 @@ self: super: {
"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";
@@ -3918,6 +3946,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4797,6 +4826,7 @@ self: super: {
"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";
@@ -4856,6 +4886,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4866,6 +4897,7 @@ self: super: {
"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";
@@ -4875,6 +4907,7 @@ self: super: {
"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";
@@ -4900,6 +4933,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5018,6 +5052,7 @@ self: super: {
"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";
@@ -5447,6 +5482,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5699,6 +5735,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_14";
@@ -5711,6 +5748,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5952,6 +5990,7 @@ self: super: {
"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-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -5959,6 +5998,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5990,6 +6030,7 @@ self: super: {
"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";
@@ -6038,6 +6079,7 @@ self: super: {
"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";
@@ -6052,6 +6094,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6149,6 +6192,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6166,6 +6210,7 @@ self: super: {
"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";
@@ -6224,6 +6269,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6468,6 +6514,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6529,6 +6576,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6566,6 +6614,7 @@ self: super: {
"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";
@@ -6659,6 +6708,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6668,6 +6718,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6698,6 +6749,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6840,6 +6892,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6855,8 +6908,10 @@ self: super: {
"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";
"reform" = dontDistribute super."reform";
@@ -6874,6 +6929,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7037,6 +7093,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7227,6 +7284,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_4";
@@ -7251,6 +7309,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7364,6 +7423,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7431,6 +7491,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7451,6 +7512,7 @@ self: super: {
"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";
@@ -7593,6 +7655,7 @@ self: super: {
"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";
@@ -7677,6 +7740,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7719,6 +7783,7 @@ self: super: {
"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";
@@ -7732,6 +7797,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7918,6 +7984,7 @@ self: super: {
"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";
@@ -7936,6 +8003,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7948,6 +8016,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"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";
@@ -7985,6 +8054,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"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";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8028,6 +8098,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -8117,6 +8188,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8180,6 +8252,7 @@ self: super: {
"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_2";
@@ -8471,6 +8544,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8489,6 +8563,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8598,6 +8673,7 @@ self: super: {
"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-plugins" = dontDistribute super."web-plugins";
@@ -8651,6 +8727,7 @@ self: super: {
"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";
@@ -8671,6 +8748,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8781,6 +8859,7 @@ self: super: {
"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";
@@ -8857,6 +8936,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix
index 4df8a8d1580..d74f552a34f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix
@@ -482,6 +482,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = doDistribute super."HaRe_0_8_2_1";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -573,6 +574,7 @@ self: super: {
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -644,6 +646,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -989,7 +992,6 @@ 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";
@@ -1020,6 +1022,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1053,6 +1056,7 @@ self: super: {
"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";
@@ -1358,6 +1362,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1639,6 +1644,7 @@ self: super: {
"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";
@@ -1736,6 +1742,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -2015,6 +2022,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2148,6 +2156,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2169,6 +2178,7 @@ self: super: {
"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";
@@ -2283,6 +2293,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_6";
"cryptonite" = doDistribute super."cryptonite_0_10";
@@ -2397,6 +2408,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2522,7 +2534,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2594,6 +2609,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2780,6 +2796,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg" = doDistribute super."ekg_0_4_0_8";
"ekg-bosun" = dontDistribute super."ekg-bosun";
@@ -2799,6 +2816,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_1_0_0";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2814,6 +2832,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2891,6 +2910,7 @@ self: super: {
"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_10_0_1";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2949,6 +2969,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3088,6 +3109,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_1";
"fn-extra" = doDistribute super."fn-extra_0_2_0_0";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3248,6 +3270,7 @@ self: super: {
"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";
@@ -3277,12 +3300,15 @@ self: super: {
"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-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";
@@ -3311,6 +3337,7 @@ 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";
@@ -3339,9 +3366,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3354,6 +3383,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_2";
"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_5_20151218";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3583,6 +3613,7 @@ self: super: {
"graphql" = dontDistribute super."graphql";
"graphs" = doDistribute super."graphs_0_6_0_1";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3667,6 +3698,7 @@ self: super: {
"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";
@@ -3735,6 +3767,8 @@ self: super: {
"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";
@@ -3808,6 +3842,7 @@ self: super: {
"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";
@@ -4093,6 +4128,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4554,6 +4590,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4645,6 +4682,7 @@ self: super: {
"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";
@@ -4702,6 +4740,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4712,6 +4751,7 @@ self: super: {
"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";
@@ -4721,6 +4761,7 @@ self: super: {
"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";
@@ -4744,6 +4785,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4853,6 +4895,7 @@ self: super: {
"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";
@@ -5276,6 +5319,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5518,6 +5562,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5530,6 +5575,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5760,11 +5806,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5795,6 +5843,7 @@ self: super: {
"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";
@@ -5842,6 +5891,7 @@ self: super: {
"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";
@@ -5856,6 +5906,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5948,6 +5999,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_12_0_0";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5965,6 +6017,7 @@ self: super: {
"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";
@@ -6019,6 +6072,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6245,6 +6299,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6305,6 +6360,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6340,6 +6396,7 @@ self: super: {
"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";
@@ -6431,6 +6488,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6440,6 +6498,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6468,6 +6527,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6606,6 +6666,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6620,8 +6681,10 @@ self: super: {
"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-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0";
@@ -6633,6 +6696,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6788,6 +6852,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6975,6 +7040,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6998,6 +7064,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7106,6 +7173,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7169,6 +7237,7 @@ self: super: {
"sme" = dontDistribute super."sme";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7189,6 +7258,7 @@ self: super: {
"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";
@@ -7257,6 +7327,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7325,6 +7396,7 @@ self: super: {
"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";
@@ -7408,6 +7480,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7448,6 +7521,7 @@ self: super: {
"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";
@@ -7461,6 +7535,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = doDistribute super."success_0_2_4";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7637,6 +7712,7 @@ self: super: {
"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";
@@ -7654,6 +7730,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7666,6 +7743,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7685,6 +7763,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7700,6 +7779,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7742,6 +7822,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7827,6 +7908,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7888,6 +7970,7 @@ self: super: {
"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_4";
@@ -7945,6 +8028,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -8163,6 +8247,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8181,6 +8266,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8199,6 +8285,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8258,6 +8345,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8278,6 +8366,7 @@ self: super: {
"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";
@@ -8322,6 +8411,7 @@ self: super: {
"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";
@@ -8340,6 +8430,7 @@ self: super: {
"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";
@@ -8444,6 +8535,7 @@ self: super: {
"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";
@@ -8517,6 +8609,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8594,6 +8687,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix
index 7349c96cf07..71a2b8a0752 100644
--- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix
@@ -482,6 +482,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = doDistribute super."HaRe_0_8_2_2";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -573,6 +574,7 @@ self: super: {
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -644,6 +646,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -989,7 +992,6 @@ 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";
@@ -1020,6 +1022,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1053,6 +1056,7 @@ self: super: {
"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";
@@ -1356,6 +1360,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1637,6 +1642,7 @@ self: super: {
"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";
@@ -1734,6 +1740,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -2013,6 +2020,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2146,6 +2154,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2167,6 +2176,7 @@ self: super: {
"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";
@@ -2281,6 +2291,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_6";
"cryptonite" = doDistribute super."cryptonite_0_10";
@@ -2395,6 +2406,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2520,7 +2532,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2592,6 +2607,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2777,6 +2793,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg" = doDistribute super."ekg_0_4_0_8";
"ekg-bosun" = dontDistribute super."ekg-bosun";
@@ -2796,6 +2813,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_1_0_0";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2811,6 +2829,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2887,6 +2906,7 @@ self: super: {
"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_10_0_1";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2945,6 +2965,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3083,6 +3104,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_1";
"fn-extra" = doDistribute super."fn-extra_0_2_0_0";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3243,6 +3265,7 @@ self: super: {
"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";
@@ -3272,12 +3295,15 @@ self: super: {
"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-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";
@@ -3306,6 +3332,7 @@ 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";
@@ -3334,9 +3361,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3349,6 +3378,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_2";
"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_5_20151218";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3578,6 +3608,7 @@ self: super: {
"graphql" = dontDistribute super."graphql";
"graphs" = doDistribute super."graphs_0_6_0_1";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3662,6 +3693,7 @@ self: super: {
"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";
@@ -3730,6 +3762,8 @@ self: super: {
"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";
@@ -3803,6 +3837,7 @@ self: super: {
"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";
@@ -4087,6 +4122,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4548,6 +4584,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4636,6 +4673,7 @@ self: super: {
"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";
@@ -4681,6 +4719,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4692,6 +4731,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4702,6 +4742,7 @@ self: super: {
"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";
@@ -4711,6 +4752,7 @@ self: super: {
"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";
@@ -4733,6 +4775,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4842,6 +4885,7 @@ self: super: {
"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";
@@ -5263,6 +5307,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5505,6 +5550,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5517,6 +5563,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5747,11 +5794,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5782,6 +5831,7 @@ self: super: {
"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";
@@ -5829,6 +5879,7 @@ self: super: {
"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";
@@ -5843,6 +5894,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5935,6 +5987,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_12_0_0";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5952,6 +6005,7 @@ self: super: {
"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";
@@ -6006,6 +6060,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6231,6 +6286,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6291,6 +6347,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6326,6 +6383,7 @@ self: super: {
"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";
@@ -6417,6 +6475,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6426,6 +6485,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6454,6 +6514,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6592,6 +6653,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6606,8 +6668,10 @@ self: super: {
"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-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0";
@@ -6619,6 +6683,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6774,6 +6839,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6961,6 +7027,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6984,6 +7051,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7092,6 +7160,7 @@ self: super: {
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-postgresql-orm" = dontDistribute super."simple-postgresql-orm";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7155,6 +7224,7 @@ self: super: {
"sme" = dontDistribute super."sme";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7175,6 +7245,7 @@ self: super: {
"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";
@@ -7243,6 +7314,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7311,6 +7383,7 @@ self: super: {
"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";
@@ -7394,6 +7467,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7434,6 +7508,7 @@ self: super: {
"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";
@@ -7447,6 +7522,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = doDistribute super."success_0_2_4";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7623,6 +7699,7 @@ self: super: {
"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";
@@ -7640,6 +7717,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7652,6 +7730,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7671,6 +7750,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7686,6 +7766,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7728,6 +7809,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7813,6 +7895,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7874,6 +7957,7 @@ self: super: {
"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_5";
@@ -7931,6 +8015,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -8149,6 +8234,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8167,6 +8253,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8185,6 +8272,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8244,6 +8332,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8264,6 +8353,7 @@ self: super: {
"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";
@@ -8308,6 +8398,7 @@ self: super: {
"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";
@@ -8326,6 +8417,7 @@ self: super: {
"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";
@@ -8430,6 +8522,7 @@ self: super: {
"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";
@@ -8503,6 +8596,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8580,6 +8674,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix
index 1b4193ff04c..9ff899a8553 100644
--- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix
@@ -342,6 +342,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -481,6 +482,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = doDistribute super."HaRe_0_8_2_2";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -572,6 +574,7 @@ self: super: {
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -643,6 +646,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -988,7 +992,6 @@ 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";
@@ -1019,6 +1022,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1052,6 +1056,7 @@ self: super: {
"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";
@@ -1355,6 +1360,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1636,6 +1642,7 @@ self: super: {
"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";
@@ -1733,6 +1740,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1860,6 +1868,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -2008,6 +2017,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2140,6 +2150,7 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2161,6 +2172,7 @@ self: super: {
"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";
@@ -2275,6 +2287,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_6";
"cryptonite" = doDistribute super."cryptonite_0_10";
@@ -2389,6 +2402,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2513,7 +2527,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2585,6 +2602,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2770,6 +2788,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg" = doDistribute super."ekg_0_4_0_8";
"ekg-bosun" = dontDistribute super."ekg-bosun";
@@ -2789,6 +2808,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_1_0_0";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2804,6 +2824,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2880,6 +2901,7 @@ self: super: {
"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_10_0_1";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2936,6 +2958,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3073,6 +3096,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_1";
"fn-extra" = doDistribute super."fn-extra_0_2_0_0";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_3";
@@ -3232,6 +3256,7 @@ self: super: {
"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";
@@ -3261,12 +3286,15 @@ self: super: {
"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-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";
@@ -3295,6 +3323,7 @@ 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";
@@ -3323,9 +3352,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3338,6 +3369,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_2";
"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_5_20151218";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3566,6 +3598,7 @@ self: super: {
"graphql" = dontDistribute super."graphql";
"graphs" = doDistribute super."graphs_0_6_0_1";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3649,6 +3682,7 @@ self: super: {
"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";
@@ -3717,6 +3751,8 @@ self: super: {
"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";
@@ -3789,6 +3825,7 @@ self: super: {
"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";
@@ -4070,6 +4107,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4135,6 +4173,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4529,6 +4568,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4616,6 +4656,7 @@ self: super: {
"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";
@@ -4661,6 +4702,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4671,6 +4713,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4681,6 +4724,7 @@ self: super: {
"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";
@@ -4690,6 +4734,7 @@ self: super: {
"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";
@@ -4711,6 +4756,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4820,6 +4866,7 @@ self: super: {
"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";
@@ -5241,6 +5288,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5483,6 +5531,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_17";
@@ -5495,6 +5544,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5722,11 +5772,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5757,6 +5809,7 @@ self: super: {
"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";
@@ -5804,6 +5857,7 @@ self: super: {
"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";
@@ -5818,6 +5872,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5910,6 +5965,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_12_0_0";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5927,6 +5983,7 @@ self: super: {
"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";
@@ -5981,6 +6038,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6206,6 +6264,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6264,6 +6323,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6298,6 +6358,7 @@ self: super: {
"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";
@@ -6389,6 +6450,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6398,6 +6460,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6426,6 +6489,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6563,6 +6627,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6577,8 +6642,10 @@ self: super: {
"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-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0";
@@ -6590,6 +6657,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6743,6 +6811,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6929,6 +6998,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6952,6 +7022,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7058,6 +7129,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-smt" = dontDistribute super."simple-smt";
@@ -7119,6 +7191,7 @@ self: super: {
"sme" = dontDistribute super."sme";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7139,6 +7212,7 @@ self: super: {
"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";
@@ -7207,6 +7281,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7274,6 +7349,7 @@ self: super: {
"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";
@@ -7357,6 +7433,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7397,6 +7474,7 @@ self: super: {
"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";
@@ -7410,6 +7488,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = doDistribute super."success_0_2_4";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7586,6 +7665,7 @@ self: super: {
"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";
@@ -7603,6 +7683,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7615,6 +7696,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7634,6 +7716,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7649,6 +7732,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7691,6 +7775,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7776,6 +7861,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7837,6 +7923,7 @@ self: super: {
"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_5";
@@ -7894,6 +7981,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -8112,6 +8200,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8130,6 +8219,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8148,6 +8238,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8206,6 +8297,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8226,6 +8318,7 @@ self: super: {
"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";
@@ -8270,6 +8363,7 @@ self: super: {
"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";
@@ -8288,6 +8382,7 @@ self: super: {
"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";
@@ -8392,6 +8487,7 @@ self: super: {
"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";
@@ -8465,6 +8561,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8542,6 +8639,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix
index 2c0cd6d9986..cbad62943db 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix
@@ -339,6 +339,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -475,6 +476,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -565,6 +567,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -601,6 +604,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -635,6 +639,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -711,6 +716,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -978,7 +984,6 @@ 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";
@@ -1009,6 +1014,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1042,6 +1048,7 @@ self: super: {
"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";
@@ -1344,6 +1351,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1587,6 +1595,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1619,6 +1628,7 @@ self: super: {
"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";
@@ -1714,6 +1724,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1839,6 +1850,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1985,6 +1997,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2117,9 +2130,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2136,6 +2151,7 @@ self: super: {
"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";
@@ -2248,6 +2264,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2360,6 +2377,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2482,7 +2500,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2553,6 +2574,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2734,6 +2756,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg" = doDistribute super."ekg_0_4_0_8";
"ekg-bosun" = dontDistribute super."ekg-bosun";
@@ -2753,6 +2776,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_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";
@@ -2767,6 +2791,7 @@ self: super: {
"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";
@@ -2842,6 +2867,7 @@ self: super: {
"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_10_0_1";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2897,6 +2923,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3033,6 +3060,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3192,6 +3220,7 @@ self: super: {
"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";
@@ -3219,12 +3248,15 @@ self: super: {
"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-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";
@@ -3250,6 +3282,7 @@ 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";
@@ -3278,9 +3311,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3293,6 +3328,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_2";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3518,6 +3554,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3600,6 +3637,7 @@ self: super: {
"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";
@@ -3667,6 +3705,8 @@ self: super: {
"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";
@@ -3739,6 +3779,7 @@ self: super: {
"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";
@@ -4020,6 +4061,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4085,6 +4127,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4460,6 +4503,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4477,6 +4521,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4564,6 +4609,7 @@ self: super: {
"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";
@@ -4609,6 +4655,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4618,6 +4665,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4628,6 +4676,7 @@ self: super: {
"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";
@@ -4637,6 +4686,7 @@ self: super: {
"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";
@@ -4658,6 +4708,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4767,6 +4818,7 @@ self: super: {
"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";
@@ -5040,6 +5092,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5184,6 +5237,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5424,6 +5478,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_17";
@@ -5436,6 +5491,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5661,11 +5717,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5695,6 +5753,7 @@ self: super: {
"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";
@@ -5742,6 +5801,7 @@ self: super: {
"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";
@@ -5756,6 +5816,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5847,6 +5908,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5864,6 +5926,7 @@ self: super: {
"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";
@@ -5918,6 +5981,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6139,6 +6203,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6197,6 +6262,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6231,6 +6297,7 @@ self: super: {
"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";
@@ -6319,6 +6386,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6328,6 +6396,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = doDistribute super."pusher-http-haskell_0_3_0_1";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6356,6 +6425,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6491,6 +6561,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6505,8 +6576,10 @@ self: super: {
"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-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0";
@@ -6517,6 +6590,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6670,6 +6744,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6852,6 +6927,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6876,6 +6952,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_1";
@@ -6980,6 +7057,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -7040,6 +7118,7 @@ self: super: {
"sme" = dontDistribute super."sme";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7060,6 +7139,7 @@ self: super: {
"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";
@@ -7128,6 +7208,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7195,6 +7276,7 @@ self: super: {
"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";
@@ -7275,6 +7357,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7315,6 +7398,7 @@ self: super: {
"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";
@@ -7328,6 +7412,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = doDistribute super."success_0_2_4";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7502,6 +7587,7 @@ self: super: {
"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";
@@ -7517,6 +7603,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7529,6 +7616,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7548,6 +7636,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7563,6 +7652,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7603,6 +7693,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7688,6 +7779,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7749,6 +7841,7 @@ self: super: {
"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_5";
@@ -7805,6 +7898,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7823,6 +7917,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -8039,6 +8134,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8057,6 +8153,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8116,6 +8213,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8135,6 +8233,7 @@ self: super: {
"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";
@@ -8178,6 +8277,7 @@ self: super: {
"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";
@@ -8196,6 +8296,7 @@ self: super: {
"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";
@@ -8300,6 +8401,7 @@ self: super: {
"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";
@@ -8373,6 +8475,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8450,6 +8553,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix
index 86590db9a03..413f61b72da 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix
@@ -339,6 +339,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -474,6 +475,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -564,6 +566,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -600,6 +603,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -634,6 +638,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -710,6 +715,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -977,7 +983,6 @@ 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";
@@ -1008,6 +1013,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1041,6 +1047,7 @@ self: super: {
"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";
@@ -1342,6 +1349,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1585,6 +1593,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1617,6 +1626,7 @@ self: super: {
"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";
@@ -1711,6 +1721,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1835,6 +1846,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1980,6 +1992,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2112,9 +2125,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2131,6 +2146,7 @@ self: super: {
"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";
@@ -2243,6 +2259,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2355,6 +2372,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2477,7 +2495,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2548,6 +2569,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2729,6 +2751,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg" = doDistribute super."ekg_0_4_0_8";
"ekg-bosun" = dontDistribute super."ekg-bosun";
@@ -2748,6 +2771,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_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";
@@ -2762,6 +2786,7 @@ self: super: {
"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";
@@ -2837,6 +2862,7 @@ self: super: {
"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_10_0_1";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2892,6 +2918,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3028,6 +3055,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3187,6 +3215,7 @@ self: super: {
"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";
@@ -3214,12 +3243,15 @@ self: super: {
"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-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";
@@ -3245,6 +3277,7 @@ 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";
@@ -3273,9 +3306,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3288,6 +3323,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_2";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3513,6 +3549,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3595,6 +3632,7 @@ self: super: {
"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";
@@ -3662,6 +3700,8 @@ self: super: {
"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";
@@ -3734,6 +3774,7 @@ self: super: {
"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";
@@ -4015,6 +4056,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4080,6 +4122,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4455,6 +4498,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4472,6 +4516,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4558,6 +4603,7 @@ self: super: {
"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";
@@ -4603,6 +4649,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4612,6 +4659,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4622,6 +4670,7 @@ self: super: {
"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";
@@ -4631,6 +4680,7 @@ self: super: {
"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";
@@ -4652,6 +4702,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4761,6 +4812,7 @@ self: super: {
"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";
@@ -5034,6 +5086,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5178,6 +5231,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5417,6 +5471,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_17";
@@ -5429,6 +5484,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5654,11 +5710,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5688,6 +5746,7 @@ self: super: {
"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";
@@ -5735,6 +5794,7 @@ self: super: {
"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";
@@ -5749,6 +5809,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5840,6 +5901,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5857,6 +5919,7 @@ self: super: {
"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";
@@ -5911,6 +5974,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6132,6 +6196,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6190,6 +6255,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6224,6 +6290,7 @@ self: super: {
"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";
@@ -6312,6 +6379,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6321,6 +6389,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = doDistribute super."pusher-http-haskell_0_3_0_1";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6349,6 +6418,7 @@ self: super: {
"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-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6483,6 +6553,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6497,8 +6568,10 @@ self: super: {
"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-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0";
@@ -6509,6 +6582,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6662,6 +6736,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6843,6 +6918,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6867,6 +6943,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6971,6 +7048,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -7031,6 +7109,7 @@ self: super: {
"sme" = dontDistribute super."sme";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7051,6 +7130,7 @@ self: super: {
"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";
@@ -7119,6 +7199,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7186,6 +7267,7 @@ self: super: {
"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";
@@ -7266,6 +7348,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7306,6 +7389,7 @@ self: super: {
"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";
@@ -7319,6 +7403,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = doDistribute super."success_0_2_5";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7493,6 +7578,7 @@ self: super: {
"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";
@@ -7508,6 +7594,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7520,6 +7607,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7539,6 +7627,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7554,6 +7643,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7594,6 +7684,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7679,6 +7770,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7740,6 +7832,7 @@ self: super: {
"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_5";
@@ -7796,6 +7889,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7814,6 +7908,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -8029,6 +8124,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8047,6 +8143,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8106,6 +8203,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8125,6 +8223,7 @@ self: super: {
"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";
@@ -8168,6 +8267,7 @@ self: super: {
"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";
@@ -8186,6 +8286,7 @@ self: super: {
"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";
@@ -8290,6 +8391,7 @@ self: super: {
"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";
@@ -8363,6 +8465,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8440,6 +8543,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix
index 06df71ceb75..ffbe906c581 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix
@@ -336,6 +336,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -468,6 +469,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -557,6 +559,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -593,6 +596,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -627,6 +631,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -703,6 +708,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -969,7 +975,6 @@ 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";
@@ -1000,6 +1005,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1033,6 +1039,7 @@ self: super: {
"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";
@@ -1331,6 +1338,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1366,6 +1374,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1473,6 +1482,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1571,6 +1581,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1603,6 +1614,7 @@ self: super: {
"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";
@@ -1695,6 +1707,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_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1818,6 +1831,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1956,6 +1970,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -1971,6 +1986,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2085,9 +2101,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2104,6 +2122,7 @@ self: super: {
"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";
@@ -2214,6 +2233,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2326,6 +2346,7 @@ self: super: {
"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";
@@ -2447,7 +2468,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2514,6 +2538,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2692,6 +2717,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2709,6 +2735,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2723,6 +2750,7 @@ self: super: {
"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";
@@ -2795,11 +2823,13 @@ self: super: {
"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_10_0_2";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2848,6 +2878,7 @@ self: super: {
"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";
@@ -2981,6 +3012,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3139,6 +3171,7 @@ self: super: {
"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";
@@ -3164,12 +3197,15 @@ self: super: {
"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-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,6 +3229,7 @@ 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";
@@ -3221,9 +3258,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3235,6 +3274,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3459,6 +3499,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3540,6 +3581,7 @@ self: super: {
"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";
@@ -3607,6 +3649,8 @@ self: super: {
"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";
@@ -3677,6 +3721,7 @@ self: super: {
"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";
@@ -3822,6 +3867,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_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3855,6 +3901,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3953,6 +4000,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4017,6 +4065,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4229,6 +4278,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4384,6 +4434,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4401,6 +4452,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4486,6 +4538,7 @@ self: super: {
"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";
@@ -4529,6 +4582,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4538,6 +4592,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4548,6 +4603,7 @@ self: super: {
"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";
@@ -4557,6 +4613,7 @@ self: super: {
"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";
@@ -4577,6 +4634,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4685,6 +4743,7 @@ self: super: {
"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";
@@ -4956,6 +5015,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5011,6 +5071,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5097,6 +5158,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5327,6 +5389,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5337,6 +5400,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5558,11 +5622,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5589,6 +5655,7 @@ self: super: {
"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";
@@ -5635,6 +5702,7 @@ self: super: {
"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";
@@ -5649,6 +5717,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5740,6 +5809,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5757,6 +5827,7 @@ self: super: {
"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";
@@ -5807,6 +5878,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6018,6 +6090,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6076,6 +6149,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6110,6 +6184,7 @@ self: super: {
"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";
@@ -6198,6 +6273,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6206,6 +6282,7 @@ self: super: {
"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";
@@ -6234,6 +6311,7 @@ self: super: {
"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";
@@ -6366,6 +6444,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6379,8 +6458,10 @@ self: super: {
"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";
@@ -6390,6 +6471,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6542,6 +6624,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6722,6 +6805,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6745,6 +6829,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6848,6 +6933,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6906,6 +6992,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6925,6 +7012,7 @@ self: super: {
"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";
@@ -6992,6 +7080,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7059,6 +7148,7 @@ self: super: {
"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";
@@ -7115,6 +7205,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_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7138,6 +7229,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7176,6 +7268,7 @@ self: super: {
"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";
@@ -7189,6 +7282,7 @@ self: super: {
"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";
@@ -7361,6 +7455,7 @@ self: super: {
"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";
@@ -7376,6 +7471,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7387,6 +7483,7 @@ self: super: {
"texmath" = doDistribute super."texmath_0_8_5_1";
"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";
@@ -7406,6 +7503,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7421,6 +7519,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7461,6 +7560,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7545,6 +7645,7 @@ self: super: {
"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";
@@ -7606,6 +7707,7 @@ self: super: {
"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_5";
@@ -7659,6 +7761,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7677,6 +7780,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7889,6 +7993,7 @@ self: super: {
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7907,6 +8012,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7961,6 +8067,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -7979,6 +8086,7 @@ self: super: {
"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";
@@ -8021,6 +8129,7 @@ self: super: {
"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";
@@ -8038,6 +8147,7 @@ self: super: {
"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";
@@ -8142,6 +8252,7 @@ self: super: {
"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";
@@ -8214,6 +8325,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8253,6 +8365,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_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8290,6 +8403,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix
index 9bd529f774b..8f59fcc4f30 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix
@@ -335,6 +335,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -467,6 +468,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -556,6 +558,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -592,6 +595,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -626,6 +630,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -702,6 +707,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -968,7 +974,6 @@ 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";
@@ -999,6 +1004,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1032,6 +1038,7 @@ self: super: {
"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";
@@ -1329,6 +1336,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1364,6 +1372,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1470,6 +1479,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1567,6 +1577,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1599,6 +1610,7 @@ self: super: {
"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";
@@ -1691,6 +1703,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_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1814,6 +1827,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1952,6 +1966,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -1967,6 +1982,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2079,9 +2095,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2098,6 +2116,7 @@ self: super: {
"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";
@@ -2208,6 +2227,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2320,6 +2340,7 @@ self: super: {
"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";
@@ -2441,7 +2462,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2508,6 +2532,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2686,6 +2711,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2703,6 +2729,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2717,6 +2744,7 @@ self: super: {
"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";
@@ -2789,11 +2817,13 @@ self: super: {
"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_10_0_2";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
@@ -2841,6 +2871,7 @@ self: super: {
"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";
@@ -2973,6 +3004,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3131,6 +3163,7 @@ self: super: {
"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";
@@ -3156,12 +3189,15 @@ self: super: {
"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-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";
@@ -3185,6 +3221,7 @@ 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";
@@ -3213,9 +3250,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3227,6 +3266,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3451,6 +3491,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3532,6 +3573,7 @@ self: super: {
"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";
@@ -3599,6 +3641,8 @@ self: super: {
"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";
@@ -3669,6 +3713,7 @@ self: super: {
"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";
@@ -3814,6 +3859,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_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3847,6 +3893,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3945,6 +3992,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4009,6 +4057,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4220,6 +4269,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4372,6 +4422,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4389,6 +4440,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4473,6 +4525,7 @@ self: super: {
"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";
@@ -4516,6 +4569,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4525,6 +4579,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4535,6 +4590,7 @@ self: super: {
"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";
@@ -4544,6 +4600,7 @@ self: super: {
"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";
@@ -4564,6 +4621,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4672,6 +4730,7 @@ self: super: {
"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";
@@ -4943,6 +5002,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -4998,6 +5058,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5084,6 +5145,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5135,6 +5197,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_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5313,6 +5376,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5323,6 +5387,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5544,11 +5609,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5575,6 +5642,7 @@ self: super: {
"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";
@@ -5621,6 +5689,7 @@ self: super: {
"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";
@@ -5635,6 +5704,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5726,6 +5796,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5743,6 +5814,7 @@ self: super: {
"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";
@@ -5793,6 +5865,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6004,6 +6077,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6061,6 +6135,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6095,6 +6170,7 @@ self: super: {
"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";
@@ -6183,6 +6259,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6191,6 +6268,7 @@ self: super: {
"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";
@@ -6219,6 +6297,7 @@ self: super: {
"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";
@@ -6351,6 +6430,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6364,8 +6444,10 @@ self: super: {
"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";
@@ -6375,6 +6457,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6527,6 +6610,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6707,6 +6791,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6730,6 +6815,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6833,6 +6919,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6891,6 +6978,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6910,6 +6998,7 @@ self: super: {
"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";
@@ -6977,6 +7066,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7044,6 +7134,7 @@ self: super: {
"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";
@@ -7100,6 +7191,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_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7123,6 +7215,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7161,6 +7254,7 @@ self: super: {
"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";
@@ -7173,6 +7267,7 @@ self: super: {
"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";
@@ -7344,6 +7439,7 @@ self: super: {
"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";
@@ -7359,6 +7455,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7370,6 +7467,7 @@ self: super: {
"texmath" = doDistribute super."texmath_0_8_6_1";
"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";
@@ -7389,6 +7487,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7404,6 +7503,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7444,6 +7544,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7528,6 +7629,7 @@ self: super: {
"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";
@@ -7562,6 +7664,7 @@ self: super: {
"trivia" = dontDistribute super."trivia";
"trivial-constraint" = dontDistribute super."trivial-constraint";
"tropical" = dontDistribute super."tropical";
+ "true-name" = doDistribute super."true-name_0_1_0_1";
"truelevel" = dontDistribute super."truelevel";
"trurl" = dontDistribute super."trurl";
"truthful" = dontDistribute super."truthful";
@@ -7588,6 +7691,7 @@ self: super: {
"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_5";
@@ -7641,6 +7745,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7659,6 +7764,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7869,6 +7975,7 @@ self: super: {
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7887,6 +7994,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7940,6 +8048,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -7958,6 +8067,7 @@ self: super: {
"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";
@@ -8000,6 +8110,7 @@ self: super: {
"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";
@@ -8017,6 +8128,7 @@ self: super: {
"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";
@@ -8121,6 +8233,7 @@ self: super: {
"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";
@@ -8193,6 +8306,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8231,6 +8345,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_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8268,6 +8383,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix
index 0f710c73778..5ec01e2d234 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix
@@ -335,6 +335,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -467,6 +468,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -555,6 +557,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -591,6 +594,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -625,6 +629,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -701,6 +706,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -967,7 +973,6 @@ 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";
@@ -998,6 +1003,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1031,6 +1037,7 @@ self: super: {
"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";
@@ -1328,6 +1335,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1363,6 +1371,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1469,6 +1478,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1566,6 +1576,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1598,6 +1609,7 @@ self: super: {
"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";
@@ -1690,6 +1702,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_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1813,6 +1826,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1947,6 +1961,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -1962,6 +1977,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2074,9 +2090,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2093,6 +2111,7 @@ self: super: {
"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";
@@ -2203,6 +2222,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2315,6 +2335,7 @@ self: super: {
"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";
@@ -2436,7 +2457,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2503,6 +2527,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2680,6 +2705,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2697,6 +2723,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2711,6 +2738,7 @@ self: super: {
"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";
@@ -2783,11 +2811,13 @@ self: super: {
"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_10_0_2";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
@@ -2834,6 +2864,7 @@ self: super: {
"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";
@@ -2966,6 +2997,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3124,6 +3156,7 @@ self: super: {
"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";
@@ -3149,12 +3182,15 @@ self: super: {
"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-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";
@@ -3178,6 +3214,7 @@ 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";
@@ -3206,9 +3243,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3220,6 +3259,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3444,6 +3484,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3525,6 +3566,7 @@ self: super: {
"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";
@@ -3592,6 +3634,8 @@ self: super: {
"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";
@@ -3662,6 +3706,7 @@ self: super: {
"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";
@@ -3807,6 +3852,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_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3840,12 +3886,14 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
"hdis86" = dontDistribute super."hdis86";
"hdiscount" = dontDistribute super."hdiscount";
"hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
"hdph" = dontDistribute super."hdph";
"hdph-closure" = dontDistribute super."hdph-closure";
"hdr-histogram" = dontDistribute super."hdr-histogram";
@@ -3937,6 +3985,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4001,6 +4050,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4212,6 +4262,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4363,6 +4414,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4380,6 +4432,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4464,6 +4517,7 @@ self: super: {
"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";
@@ -4507,6 +4561,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4516,6 +4571,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4526,6 +4582,7 @@ self: super: {
"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";
@@ -4535,6 +4592,7 @@ self: super: {
"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";
@@ -4555,6 +4613,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4645,6 +4704,7 @@ self: super: {
"jose" = dontDistribute super."jose";
"jpeg" = dontDistribute super."jpeg";
"js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_12_3";
"jsaddle" = dontDistribute super."jsaddle";
"jsaddle-hello" = dontDistribute super."jsaddle-hello";
"jsc" = dontDistribute super."jsc";
@@ -4662,6 +4722,7 @@ self: super: {
"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";
@@ -4933,6 +4994,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -4988,6 +5050,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5074,6 +5137,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5123,6 +5187,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_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5297,6 +5362,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5307,6 +5373,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5528,11 +5595,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5559,6 +5628,7 @@ self: super: {
"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";
@@ -5605,6 +5675,7 @@ self: super: {
"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";
@@ -5619,6 +5690,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5710,6 +5782,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5727,6 +5800,7 @@ self: super: {
"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";
@@ -5777,6 +5851,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -5986,6 +6061,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6043,6 +6119,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6077,6 +6154,7 @@ self: super: {
"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";
@@ -6165,6 +6243,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6173,6 +6252,7 @@ self: super: {
"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";
@@ -6201,6 +6281,7 @@ self: super: {
"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";
@@ -6333,6 +6414,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6346,8 +6428,10 @@ self: super: {
"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";
@@ -6357,6 +6441,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6509,6 +6594,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6689,6 +6775,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6711,6 +6798,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6814,6 +6902,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6871,6 +6960,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6890,6 +6980,7 @@ self: super: {
"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";
@@ -6957,6 +7048,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7024,6 +7116,7 @@ self: super: {
"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";
@@ -7080,6 +7173,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_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7103,6 +7197,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7139,6 +7234,7 @@ self: super: {
"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";
@@ -7151,6 +7247,7 @@ self: super: {
"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";
@@ -7321,6 +7418,7 @@ self: super: {
"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";
@@ -7336,6 +7434,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7347,6 +7446,7 @@ self: super: {
"texmath" = doDistribute super."texmath_0_8_6_1";
"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";
@@ -7366,6 +7466,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7381,6 +7482,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7421,6 +7523,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7505,6 +7608,7 @@ self: super: {
"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";
@@ -7539,6 +7643,7 @@ self: super: {
"trivia" = dontDistribute super."trivia";
"trivial-constraint" = dontDistribute super."trivial-constraint";
"tropical" = dontDistribute super."tropical";
+ "true-name" = doDistribute super."true-name_0_1_0_1";
"truelevel" = dontDistribute super."truelevel";
"trurl" = dontDistribute super."trurl";
"truthful" = dontDistribute super."truthful";
@@ -7565,6 +7670,7 @@ self: super: {
"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_6";
@@ -7618,6 +7724,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7636,6 +7743,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7846,6 +7954,7 @@ self: super: {
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7864,6 +7973,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7917,6 +8027,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -7935,6 +8046,7 @@ self: super: {
"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";
@@ -7977,6 +8089,7 @@ self: super: {
"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";
@@ -7994,6 +8107,7 @@ self: super: {
"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";
@@ -8098,6 +8212,7 @@ self: super: {
"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";
@@ -8170,6 +8285,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8208,6 +8324,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_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8245,6 +8362,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix
index 49aedccdd13..f722a30bf51 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix
@@ -335,6 +335,8 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
+ "GLUT" = doDistribute super."GLUT_2_7_0_7";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
"GPipe-Collada" = dontDistribute super."GPipe-Collada";
@@ -466,6 +468,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -554,6 +557,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -590,6 +594,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -624,6 +629,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -698,7 +704,9 @@ self: super: {
"OpenCL" = dontDistribute super."OpenCL";
"OpenCLRaw" = dontDistribute super."OpenCLRaw";
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_3_0_0_2";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -964,7 +972,6 @@ 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";
@@ -995,6 +1002,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1028,6 +1036,7 @@ self: super: {
"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";
@@ -1325,6 +1334,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1360,6 +1370,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1463,6 +1474,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1559,6 +1571,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1591,6 +1604,7 @@ self: super: {
"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";
@@ -1683,6 +1697,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_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1806,6 +1821,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1937,6 +1953,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -1952,6 +1969,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2064,9 +2082,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2083,6 +2103,7 @@ self: super: {
"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";
@@ -2193,6 +2214,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2305,6 +2327,7 @@ self: super: {
"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";
@@ -2426,7 +2449,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2493,6 +2519,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2669,6 +2696,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2686,6 +2714,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2700,6 +2729,7 @@ self: super: {
"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";
@@ -2772,11 +2802,13 @@ self: super: {
"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_10_0_2";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
@@ -2823,6 +2855,7 @@ self: super: {
"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";
@@ -2955,6 +2988,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3113,6 +3147,7 @@ self: super: {
"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";
@@ -3138,12 +3173,15 @@ self: super: {
"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-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";
@@ -3167,6 +3205,7 @@ 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,9 +3234,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3209,6 +3250,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3433,6 +3475,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3514,6 +3557,7 @@ self: super: {
"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";
@@ -3581,6 +3625,8 @@ self: super: {
"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";
@@ -3651,6 +3697,7 @@ self: super: {
"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";
@@ -3796,6 +3843,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_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3829,12 +3877,14 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
"hdis86" = dontDistribute super."hdis86";
"hdiscount" = dontDistribute super."hdiscount";
"hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
"hdph" = dontDistribute super."hdph";
"hdph-closure" = dontDistribute super."hdph-closure";
"hdr-histogram" = dontDistribute super."hdr-histogram";
@@ -3926,6 +3976,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -3990,6 +4041,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4201,6 +4253,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4349,6 +4402,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4366,6 +4420,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4450,6 +4505,7 @@ self: super: {
"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";
@@ -4493,6 +4549,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4502,6 +4559,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4512,6 +4570,7 @@ self: super: {
"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";
@@ -4521,6 +4580,7 @@ self: super: {
"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";
@@ -4540,6 +4600,7 @@ self: super: {
"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";
@@ -4629,6 +4690,7 @@ self: super: {
"jose" = dontDistribute super."jose";
"jpeg" = dontDistribute super."jpeg";
"js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_12_3";
"jsaddle" = dontDistribute super."jsaddle";
"jsaddle-hello" = dontDistribute super."jsaddle-hello";
"jsc" = dontDistribute super."jsc";
@@ -4646,6 +4708,7 @@ self: super: {
"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";
@@ -4917,6 +4980,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -4972,6 +5036,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5058,6 +5123,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5106,6 +5172,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_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5280,6 +5347,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5290,6 +5358,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5510,11 +5579,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5541,6 +5612,7 @@ self: super: {
"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";
@@ -5587,6 +5659,7 @@ self: super: {
"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";
@@ -5601,6 +5674,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5691,6 +5765,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5708,6 +5783,7 @@ self: super: {
"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";
@@ -5758,6 +5834,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -5965,6 +6042,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6022,6 +6100,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6056,6 +6135,7 @@ self: super: {
"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";
@@ -6144,6 +6224,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6152,6 +6233,7 @@ self: super: {
"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";
@@ -6180,6 +6262,7 @@ self: super: {
"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";
@@ -6312,6 +6395,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6325,8 +6409,10 @@ self: super: {
"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";
@@ -6336,6 +6422,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6488,6 +6575,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6668,6 +6756,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6690,6 +6779,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6793,6 +6883,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6850,6 +6941,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6869,6 +6961,7 @@ self: super: {
"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";
@@ -6936,6 +7029,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7003,6 +7097,7 @@ self: super: {
"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";
@@ -7059,6 +7154,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_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7082,6 +7178,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7118,6 +7215,7 @@ self: super: {
"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";
@@ -7130,6 +7228,7 @@ self: super: {
"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";
@@ -7300,6 +7399,7 @@ self: super: {
"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";
@@ -7315,6 +7415,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7326,6 +7427,7 @@ self: super: {
"texmath" = doDistribute super."texmath_0_8_6_1";
"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";
@@ -7345,6 +7447,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7360,6 +7463,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7400,6 +7504,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7484,6 +7589,7 @@ self: super: {
"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";
@@ -7518,6 +7624,7 @@ self: super: {
"trivia" = dontDistribute super."trivia";
"trivial-constraint" = dontDistribute super."trivial-constraint";
"tropical" = dontDistribute super."tropical";
+ "true-name" = doDistribute super."true-name_0_1_0_1";
"truelevel" = dontDistribute super."truelevel";
"trurl" = dontDistribute super."trurl";
"truthful" = dontDistribute super."truthful";
@@ -7544,6 +7651,7 @@ self: super: {
"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_6";
@@ -7597,6 +7705,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7615,6 +7724,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7823,6 +7933,7 @@ self: super: {
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7841,6 +7952,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7893,6 +8005,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -7911,6 +8024,7 @@ self: super: {
"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";
@@ -7953,6 +8067,7 @@ self: super: {
"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";
@@ -7970,6 +8085,7 @@ self: super: {
"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";
@@ -8074,6 +8190,7 @@ self: super: {
"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";
@@ -8144,6 +8261,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8182,6 +8300,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_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8219,6 +8338,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix
index 6755f138c59..d1a5d43a485 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix
@@ -335,6 +335,8 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
+ "GLUT" = doDistribute super."GLUT_2_7_0_7";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
"GPipe-Collada" = dontDistribute super."GPipe-Collada";
@@ -466,6 +468,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -553,6 +556,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -589,6 +593,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -623,6 +628,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -696,7 +702,9 @@ self: super: {
"OpenCL" = dontDistribute super."OpenCL";
"OpenCLRaw" = dontDistribute super."OpenCLRaw";
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_3_0_0_2";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -962,7 +970,6 @@ 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";
@@ -993,6 +1000,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1026,6 +1034,7 @@ self: super: {
"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";
@@ -1323,6 +1332,7 @@ self: super: {
"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";
"asciidiagram" = doDistribute super."asciidiagram_1_1_1_1";
@@ -1357,6 +1367,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1384,6 +1395,7 @@ self: super: {
"authenticate-ldap" = dontDistribute super."authenticate-ldap";
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
+ "auto-update" = doDistribute super."auto-update_0_1_3_1";
"autoexporter" = dontDistribute super."autoexporter";
"automitive-cse" = dontDistribute super."automitive-cse";
"automotive-cse" = dontDistribute super."automotive-cse";
@@ -1458,6 +1470,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1554,6 +1567,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1586,6 +1600,7 @@ self: super: {
"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";
@@ -1677,6 +1692,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_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1800,6 +1816,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1930,6 +1947,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -1945,6 +1963,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2056,9 +2075,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2075,6 +2096,7 @@ self: super: {
"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";
@@ -2183,6 +2205,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
"cryptonite-openssl" = dontDistribute super."cryptonite-openssl";
@@ -2294,6 +2317,7 @@ self: super: {
"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";
@@ -2415,7 +2439,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2482,6 +2509,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2658,6 +2686,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2675,6 +2704,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2689,6 +2719,7 @@ self: super: {
"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";
@@ -2761,11 +2792,13 @@ self: super: {
"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_10_0_2";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
@@ -2812,12 +2845,14 @@ self: super: {
"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-builder" = doDistribute super."fast-builder_0_0_0_4";
"fast-digits" = dontDistribute super."fast-digits";
"fast-logger" = doDistribute super."fast-logger_2_4_5";
"fast-math" = dontDistribute super."fast-math";
@@ -2942,6 +2977,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3100,6 +3136,7 @@ self: super: {
"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";
@@ -3124,12 +3161,15 @@ self: super: {
"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-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";
@@ -3153,6 +3193,7 @@ 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";
@@ -3181,9 +3222,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3195,6 +3238,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3419,6 +3463,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3500,6 +3545,7 @@ self: super: {
"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";
@@ -3567,6 +3613,8 @@ self: super: {
"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";
@@ -3637,6 +3685,7 @@ self: super: {
"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";
@@ -3782,6 +3831,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_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3815,12 +3865,14 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
"hdis86" = dontDistribute super."hdis86";
"hdiscount" = dontDistribute super."hdiscount";
"hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
"hdph" = dontDistribute super."hdph";
"hdph-closure" = dontDistribute super."hdph-closure";
"hdr-histogram" = dontDistribute super."hdr-histogram";
@@ -3912,6 +3964,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -3975,6 +4028,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4186,6 +4240,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4334,6 +4389,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4351,6 +4407,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4435,6 +4492,7 @@ self: super: {
"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";
@@ -4478,6 +4536,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4487,6 +4546,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4497,6 +4557,7 @@ self: super: {
"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";
@@ -4506,6 +4567,7 @@ self: super: {
"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";
@@ -4525,6 +4587,7 @@ self: super: {
"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";
@@ -4614,6 +4677,7 @@ self: super: {
"jose" = dontDistribute super."jose";
"jpeg" = dontDistribute super."jpeg";
"js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_12_3";
"jsaddle" = dontDistribute super."jsaddle";
"jsaddle-hello" = dontDistribute super."jsaddle-hello";
"jsc" = dontDistribute super."jsc";
@@ -4631,6 +4695,7 @@ self: super: {
"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";
@@ -4901,6 +4966,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -4956,6 +5022,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5042,6 +5109,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5090,6 +5158,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_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5130,6 +5199,7 @@ self: super: {
"mastermind" = dontDistribute super."mastermind";
"matcher" = dontDistribute super."matcher";
"matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_6_0";
"mathblog" = dontDistribute super."mathblog";
"mathgenealogy" = dontDistribute super."mathgenealogy";
"mathista" = dontDistribute super."mathista";
@@ -5262,6 +5332,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5272,6 +5343,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5491,11 +5563,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5522,6 +5596,7 @@ self: super: {
"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";
@@ -5568,6 +5643,7 @@ self: super: {
"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";
@@ -5582,6 +5658,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5672,6 +5749,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5689,6 +5767,7 @@ self: super: {
"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";
@@ -5739,6 +5818,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -5827,6 +5907,7 @@ self: super: {
"persistent-protobuf" = dontDistribute super."persistent-protobuf";
"persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
"persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-template" = doDistribute super."persistent-template_2_1_8";
"persistent-vector" = dontDistribute super."persistent-vector";
"persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
"persona" = dontDistribute super."persona";
@@ -5944,6 +6025,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6001,6 +6083,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6035,6 +6118,7 @@ self: super: {
"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";
@@ -6122,6 +6206,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6130,6 +6215,7 @@ self: super: {
"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";
@@ -6158,6 +6244,7 @@ self: super: {
"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";
@@ -6290,6 +6377,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6303,8 +6391,10 @@ self: super: {
"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";
@@ -6314,6 +6404,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6465,6 +6556,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6645,6 +6737,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6667,6 +6760,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6767,6 +6861,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6823,6 +6918,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6842,6 +6938,7 @@ self: super: {
"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";
@@ -6909,6 +7006,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -6976,6 +7074,7 @@ self: super: {
"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";
@@ -7031,6 +7130,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_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7054,6 +7154,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7061,6 +7162,7 @@ self: super: {
"stream-fusion" = dontDistribute super."stream-fusion";
"stream-monad" = dontDistribute super."stream-monad";
"streamed" = dontDistribute super."streamed";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_15_4";
"streaming-histogram" = dontDistribute super."streaming-histogram";
"streaming-png" = dontDistribute super."streaming-png";
"streaming-utils" = dontDistribute super."streaming-utils";
@@ -7089,6 +7191,7 @@ self: super: {
"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";
@@ -7101,6 +7204,7 @@ self: super: {
"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";
@@ -7270,6 +7374,7 @@ self: super: {
"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";
@@ -7285,6 +7390,7 @@ self: super: {
"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";
@@ -7294,6 +7400,7 @@ self: super: {
"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";
@@ -7313,6 +7420,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7328,6 +7436,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7368,6 +7477,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7452,6 +7562,7 @@ self: super: {
"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";
@@ -7486,6 +7597,7 @@ self: super: {
"trivia" = dontDistribute super."trivia";
"trivial-constraint" = dontDistribute super."trivial-constraint";
"tropical" = dontDistribute super."tropical";
+ "true-name" = doDistribute super."true-name_0_1_0_1";
"truelevel" = dontDistribute super."truelevel";
"trurl" = dontDistribute super."trurl";
"truthful" = dontDistribute super."truthful";
@@ -7512,6 +7624,7 @@ self: super: {
"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-options" = dontDistribute super."turtle-options";
@@ -7564,6 +7677,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7582,6 +7696,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7788,6 +7903,7 @@ self: super: {
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7806,6 +7922,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7822,6 +7939,7 @@ self: super: {
"wai-graceful" = dontDistribute super."wai-graceful";
"wai-handler-devel" = dontDistribute super."wai-handler-devel";
"wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_1";
"wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
"wai-handler-snap" = dontDistribute super."wai-handler-snap";
"wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
@@ -7854,6 +7972,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -7872,6 +7991,7 @@ self: super: {
"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";
@@ -7914,6 +8034,7 @@ self: super: {
"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";
@@ -7931,6 +8052,7 @@ self: super: {
"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";
@@ -7993,6 +8115,7 @@ self: super: {
"xlsx-templater" = dontDistribute super."xlsx-templater";
"xml-basic" = dontDistribute super."xml-basic";
"xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_3_4_2";
"xml-enumerator" = dontDistribute super."xml-enumerator";
"xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
"xml-extractors" = dontDistribute super."xml-extractors";
@@ -8033,6 +8156,7 @@ self: super: {
"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";
@@ -8098,6 +8222,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8134,6 +8259,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_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8171,6 +8297,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix
index eab17859efa..6f3045f0425 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix
@@ -335,6 +335,8 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
+ "GLUT" = doDistribute super."GLUT_2_7_0_7";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
"GPipe-Collada" = dontDistribute super."GPipe-Collada";
@@ -465,6 +467,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -552,6 +555,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -588,6 +592,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -622,6 +627,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -695,7 +701,9 @@ self: super: {
"OpenCL" = dontDistribute super."OpenCL";
"OpenCLRaw" = dontDistribute super."OpenCLRaw";
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_3_0_0_2";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -961,7 +969,6 @@ 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";
@@ -992,6 +999,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1025,6 +1033,7 @@ self: super: {
"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";
@@ -1322,6 +1331,7 @@ self: super: {
"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";
"asciidiagram" = doDistribute super."asciidiagram_1_1_1_1";
@@ -1356,6 +1366,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1383,6 +1394,7 @@ self: super: {
"authenticate-ldap" = dontDistribute super."authenticate-ldap";
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
+ "auto-update" = doDistribute super."auto-update_0_1_3_1";
"autoexporter" = dontDistribute super."autoexporter";
"automitive-cse" = dontDistribute super."automitive-cse";
"automotive-cse" = dontDistribute super."automotive-cse";
@@ -1457,6 +1469,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1553,6 +1566,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1585,6 +1599,7 @@ self: super: {
"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";
@@ -1676,6 +1691,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_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1722,6 +1738,7 @@ self: super: {
"cabal-cargs" = dontDistribute super."cabal-cargs";
"cabal-constraints" = dontDistribute super."cabal-constraints";
"cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = doDistribute super."cabal-debian_4_32_3";
"cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
"cabal-dev" = dontDistribute super."cabal-dev";
"cabal-dir" = dontDistribute super."cabal-dir";
@@ -1798,6 +1815,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1928,6 +1946,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -1943,6 +1962,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2053,9 +2073,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2072,6 +2094,7 @@ self: super: {
"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";
@@ -2180,6 +2203,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
"cryptonite-openssl" = dontDistribute super."cryptonite-openssl";
@@ -2290,6 +2314,7 @@ self: super: {
"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";
@@ -2411,7 +2436,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2478,6 +2506,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2653,6 +2682,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2670,6 +2700,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2684,6 +2715,7 @@ self: super: {
"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";
@@ -2756,11 +2788,13 @@ self: super: {
"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_10_0_2";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
@@ -2797,6 +2831,7 @@ self: super: {
"extensible" = dontDistribute super."extensible";
"extensible-data" = dontDistribute super."extensible-data";
"external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_4_5";
"extractelf" = dontDistribute super."extractelf";
"ez-couch" = dontDistribute super."ez-couch";
"faceted" = dontDistribute super."faceted";
@@ -2806,12 +2841,14 @@ self: super: {
"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-builder" = doDistribute super."fast-builder_0_0_0_4";
"fast-digits" = dontDistribute super."fast-digits";
"fast-math" = dontDistribute super."fast-math";
"fast-tags" = dontDistribute super."fast-tags";
@@ -2935,6 +2972,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3093,6 +3131,7 @@ self: super: {
"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";
@@ -3117,12 +3156,15 @@ self: super: {
"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-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";
@@ -3146,6 +3188,7 @@ 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";
@@ -3174,9 +3217,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3188,6 +3233,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3412,6 +3458,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3493,6 +3540,7 @@ self: super: {
"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";
@@ -3560,6 +3608,8 @@ self: super: {
"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";
@@ -3630,6 +3680,7 @@ self: super: {
"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";
@@ -3774,6 +3825,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_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3807,12 +3859,14 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
"hdis86" = dontDistribute super."hdis86";
"hdiscount" = dontDistribute super."hdiscount";
"hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
"hdph" = dontDistribute super."hdph";
"hdph-closure" = dontDistribute super."hdph-closure";
"hdr-histogram" = dontDistribute super."hdr-histogram";
@@ -3903,6 +3957,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -3966,6 +4021,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4177,6 +4233,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4325,6 +4382,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4342,6 +4400,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4426,6 +4485,7 @@ self: super: {
"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";
@@ -4469,6 +4529,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4478,6 +4539,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4488,6 +4550,7 @@ self: super: {
"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";
@@ -4497,6 +4560,7 @@ self: super: {
"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";
@@ -4516,6 +4580,7 @@ self: super: {
"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";
@@ -4605,6 +4670,7 @@ self: super: {
"jose" = dontDistribute super."jose";
"jpeg" = dontDistribute super."jpeg";
"js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_12_3";
"jsaddle" = dontDistribute super."jsaddle";
"jsaddle-hello" = dontDistribute super."jsaddle-hello";
"jsc" = dontDistribute super."jsc";
@@ -4622,6 +4688,7 @@ self: super: {
"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";
@@ -4891,6 +4958,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -4946,6 +5014,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5032,6 +5101,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5080,6 +5150,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_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5120,6 +5191,7 @@ self: super: {
"mastermind" = dontDistribute super."mastermind";
"matcher" = dontDistribute super."matcher";
"matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_6_0";
"mathblog" = dontDistribute super."mathblog";
"mathgenealogy" = dontDistribute super."mathgenealogy";
"mathista" = dontDistribute super."mathista";
@@ -5252,6 +5324,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5262,6 +5335,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5481,11 +5555,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5512,6 +5588,7 @@ self: super: {
"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";
@@ -5558,6 +5635,7 @@ self: super: {
"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";
@@ -5572,6 +5650,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5662,6 +5741,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5679,6 +5759,7 @@ self: super: {
"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";
@@ -5729,6 +5810,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -5817,6 +5899,7 @@ self: super: {
"persistent-protobuf" = dontDistribute super."persistent-protobuf";
"persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
"persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-template" = doDistribute super."persistent-template_2_1_8";
"persistent-vector" = dontDistribute super."persistent-vector";
"persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
"persona" = dontDistribute super."persona";
@@ -5934,6 +6017,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -5990,6 +6074,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6022,6 +6107,7 @@ self: super: {
"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";
@@ -6109,6 +6195,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6117,6 +6204,7 @@ self: super: {
"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";
@@ -6145,6 +6233,7 @@ self: super: {
"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";
@@ -6277,6 +6366,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6290,8 +6380,10 @@ self: super: {
"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";
@@ -6301,6 +6393,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6452,6 +6545,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6632,6 +6726,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6654,6 +6749,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6754,6 +6850,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6810,6 +6907,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6829,6 +6927,7 @@ self: super: {
"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";
@@ -6896,6 +6995,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -6963,6 +7063,7 @@ self: super: {
"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";
@@ -7018,6 +7119,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_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7041,6 +7143,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7048,6 +7151,7 @@ self: super: {
"stream-fusion" = dontDistribute super."stream-fusion";
"stream-monad" = dontDistribute super."stream-monad";
"streamed" = dontDistribute super."streamed";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_15_4";
"streaming-histogram" = dontDistribute super."streaming-histogram";
"streaming-png" = dontDistribute super."streaming-png";
"streaming-utils" = dontDistribute super."streaming-utils";
@@ -7076,6 +7180,7 @@ self: super: {
"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";
@@ -7088,6 +7193,7 @@ self: super: {
"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";
@@ -7256,6 +7362,7 @@ self: super: {
"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";
@@ -7271,6 +7378,7 @@ self: super: {
"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";
@@ -7280,6 +7388,7 @@ self: super: {
"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";
@@ -7299,6 +7408,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7314,6 +7424,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7322,6 +7433,7 @@ self: super: {
"th-kinds-fork" = dontDistribute super."th-kinds-fork";
"th-lift-instances" = dontDistribute super."th-lift-instances";
"th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_4_1";
"th-sccs" = dontDistribute super."th-sccs";
"th-traced" = dontDistribute super."th-traced";
"th-typegraph" = dontDistribute super."th-typegraph";
@@ -7353,6 +7465,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7437,6 +7550,7 @@ self: super: {
"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";
@@ -7470,6 +7584,7 @@ self: super: {
"trivia" = dontDistribute super."trivia";
"trivial-constraint" = dontDistribute super."trivial-constraint";
"tropical" = dontDistribute super."tropical";
+ "true-name" = doDistribute super."true-name_0_1_0_1";
"truelevel" = dontDistribute super."truelevel";
"trurl" = dontDistribute super."trurl";
"truthful" = dontDistribute super."truthful";
@@ -7496,6 +7611,7 @@ self: super: {
"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-options" = dontDistribute super."turtle-options";
@@ -7548,6 +7664,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7566,6 +7683,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7772,6 +7890,7 @@ self: super: {
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7790,6 +7909,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7806,6 +7926,7 @@ self: super: {
"wai-graceful" = dontDistribute super."wai-graceful";
"wai-handler-devel" = dontDistribute super."wai-handler-devel";
"wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_1";
"wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
"wai-handler-snap" = dontDistribute super."wai-handler-snap";
"wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
@@ -7838,6 +7959,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -7856,6 +7978,7 @@ self: super: {
"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";
@@ -7898,6 +8021,7 @@ self: super: {
"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";
@@ -7915,6 +8039,7 @@ self: super: {
"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";
@@ -7977,6 +8102,7 @@ self: super: {
"xlsx-templater" = dontDistribute super."xlsx-templater";
"xml-basic" = dontDistribute super."xml-basic";
"xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_3_4_2";
"xml-enumerator" = dontDistribute super."xml-enumerator";
"xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
"xml-extractors" = dontDistribute super."xml-extractors";
@@ -8017,6 +8143,7 @@ self: super: {
"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";
@@ -8081,6 +8208,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8117,6 +8245,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_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8154,6 +8283,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix
new file mode 100644
index 00000000000..c1eca86682d
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix
@@ -0,0 +1,8261 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ time = null;
+ transformers = null;
+ unix = null;
+
+ # lts-5.16 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AFSM" = dontDistribute super."AFSM";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_5";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "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";
+ "ChannelT" = dontDistribute super."ChannelT";
+ "Chart" = doDistribute super."Chart_1_5_4";
+ "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4";
+ "Chart-diagrams" = dontDistribute super."Chart-diagrams";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "ContextAlgebra" = dontDistribute super."ContextAlgebra";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreDump" = dontDistribute super."CoreDump";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = doDistribute super."Earley_0_10_1_0";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForestStructures" = dontDistribute super."ForestStructures";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
+ "Fractaler" = dontDistribute super."Fractaler";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLM" = dontDistribute super."GLM";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
+ "GLUT" = doDistribute super."GLUT_2_7_0_7";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "Gifcurry" = dontDistribute super."Gifcurry";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
+ "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-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "Kriens" = dontDistribute super."Kriens";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LATS" = dontDistribute super."LATS";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "Lambdajudge" = dontDistribute super."Lambdajudge";
+ "Lambdaya" = dontDistribute super."Lambdaya";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListWriter" = dontDistribute super."ListWriter";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MASMGen" = dontDistribute super."MASMGen";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MTGBuilder" = dontDistribute super."MTGBuilder";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT" = dontDistribute super."MaybeT";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "Michelangelo" = dontDistribute super."Michelangelo";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "NearContextAlgebra" = dontDistribute super."NearContextAlgebra";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "NumberTheory" = dontDistribute super."NumberTheory";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OneTuple" = dontDistribute super."OneTuple";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_3_0_0_2";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PTQ" = dontDistribute super."PTQ";
+ "PUH-Project" = dontDistribute super."PUH-Project";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QLearn" = dontDistribute super."QLearn";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "Quelea" = dontDistribute super."Quelea";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_8_1";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "QuickPlot" = dontDistribute super."QuickPlot";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAlien" = doDistribute super."RNAlien_1_0_0";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RoyalMonad" = dontDistribute super."RoyalMonad";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = dontDistribute super."SVGFonts";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SimpleServer" = dontDistribute super."SimpleServer";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Slides" = dontDistribute super."Slides";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-lucid" = dontDistribute super."Spock-lucid";
+ "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tahin" = dontDistribute super."Tahin";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "Verba" = dontDistribute super."Verba";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "Vulkan" = dontDistribute super."Vulkan";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "WaveFront" = dontDistribute super."WaveFront";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32" = 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";
+ "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" = doDistribute super."Yampa_0_10_4";
+ "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" = doDistribute super."aeson_0_9_0_1";
+ "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-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
+ "aeson-prefix" = dontDistribute super."aeson-prefix";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "aeson-yak" = dontDistribute super."aeson-yak";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "ag-pictgen" = dontDistribute super."ag-pictgen";
+ "agda-server" = dontDistribute super."agda-server";
+ "agda-snippets" = dontDistribute super."agda-snippets";
+ "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = doDistribute super."airship_0_4_3_0";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-branches" = dontDistribute super."aivika-branches";
+ "aivika-distributed" = dontDistribute super."aivika-distributed";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "alga" = dontDistribute super."alga";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = doDistribute super."amazonka_1_3_7";
+ "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7";
+ "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7";
+ "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager";
+ "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7";
+ "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7";
+ "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7";
+ "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7";
+ "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7";
+ "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7";
+ "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7";
+ "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events";
+ "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7";
+ "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7";
+ "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7";
+ "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7";
+ "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7";
+ "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp";
+ "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7";
+ "amazonka-config" = doDistribute super."amazonka-config_1_3_7";
+ "amazonka-core" = doDistribute super."amazonka-core_1_3_7";
+ "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7";
+ "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7";
+ "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7";
+ "amazonka-dms" = dontDistribute super."amazonka-dms";
+ "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7";
+ "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7";
+ "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7";
+ "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7";
+ "amazonka-ecr" = dontDistribute super."amazonka-ecr";
+ "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7";
+ "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7";
+ "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7";
+ "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7";
+ "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7";
+ "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7";
+ "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7";
+ "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7";
+ "amazonka-gamelift" = dontDistribute super."amazonka-gamelift";
+ "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7";
+ "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7";
+ "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7";
+ "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7";
+ "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7";
+ "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7";
+ "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7";
+ "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7";
+ "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7";
+ "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7";
+ "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7";
+ "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering";
+ "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7";
+ "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7";
+ "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7";
+ "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7";
+ "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7";
+ "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7";
+ "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7";
+ "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7";
+ "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7";
+ "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7";
+ "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7";
+ "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7";
+ "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7";
+ "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7";
+ "amazonka-support" = doDistribute super."amazonka-support_1_3_7";
+ "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7";
+ "amazonka-test" = doDistribute super."amazonka-test_1_3_7";
+ "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7";
+ "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android" = dontDistribute super."android";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "animalcase" = dontDistribute super."animalcase";
+ "annah" = dontDistribute super."annah";
+ "annihilator" = dontDistribute super."annihilator";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansigraph" = dontDistribute super."ansigraph";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-field-json-th" = dontDistribute super."api-field-json-th";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = doDistribute super."apiary_1_4_5";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-http-client" = dontDistribute super."apiary-http-client";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "applicative-splice" = dontDistribute super."applicative-splice";
+ "apply-refact" = doDistribute super."apply-refact_0_1_0_0";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arena" = dontDistribute super."arena";
+ "arff" = dontDistribute super."arff";
+ "arghwxhaskell" = dontDistribute super."arghwxhaskell";
+ "argon" = doDistribute super."argon_0_4_0_0";
+ "argon2" = dontDistribute super."argon2";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = dontDistribute super."arithmoi";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = dontDistribute super."asn1-data";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atndapi" = dontDistribute super."atndapi";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "atp-haskell" = dontDistribute super."atp-haskell";
+ "atrans" = dontDistribute super."atrans";
+ "attempt" = dontDistribute super."attempt";
+ "atto-lisp" = dontDistribute super."atto-lisp";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-conduit" = dontDistribute super."attoparsec-conduit";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "autoexporter" = dontDistribute super."autoexporter";
+ "automitive-cse" = dontDistribute super."automitive-cse";
+ "automotive-cse" = dontDistribute super."automotive-cse";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "avatar-generator" = dontDistribute super."avatar-generator";
+ "average" = dontDistribute super."average";
+ "avers-server" = doDistribute super."avers-server_0_0_3";
+ "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-prelude" = doDistribute super."base-prelude_0_1_21";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bbi" = dontDistribute super."bbi";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beam" = dontDistribute super."beam";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "bench" = dontDistribute super."bench";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "bencoding" = dontDistribute super."bencoding";
+ "bento" = dontDistribute super."bento";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibdb" = dontDistribute super."bibdb";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bighugethesaurus" = dontDistribute super."bighugethesaurus";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-enum" = dontDistribute super."binary-enum";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-wlc" = dontDistribute super."bindings-wlc";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "bindynamic" = dontDistribute super."bindynamic";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bini" = dontDistribute super."bini";
+ "bio" = dontDistribute super."bio";
+ "biohazard" = dontDistribute super."biohazard";
+ "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit";
+ "biosff" = dontDistribute super."biosff";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-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" = dontDistribute super."bloodhound";
+ "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
+ "bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "bond" = dontDistribute super."bond";
+ "bond-haskell" = dontDistribute super."bond-haskell";
+ "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boombox" = dontDistribute super."boombox";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "botpp" = dontDistribute super."botpp";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = doDistribute super."bower-json_0_7_0_0";
+ "bowntz" = dontDistribute super."bowntz";
+ "bpann" = dontDistribute super."bpann";
+ "braid" = dontDistribute super."braid";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "buffer-pipe" = dontDistribute super."buffer-pipe";
+ "buffon" = dontDistribute super."buffon";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "butterflies" = dontDistribute super."butterflies";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_27_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = doDistribute super."cabal-debian_4_32_3";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-info" = dontDistribute super."cabal-info";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "cacophony" = doDistribute super."cacophony_0_4_0";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camfort" = dontDistribute super."camfort";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-listen-http" = dontDistribute super."canteven-listen-http";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "canteven-template" = dontDistribute super."canteven-template";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "car-pool" = dontDistribute super."car-pool";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
+ "cartel" = doDistribute super."cartel_0_14_2_8";
+ "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "casr-logbook" = dontDistribute super."casr-logbook";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "category-printf" = dontDistribute super."category-printf";
+ "category-traced" = dontDistribute super."category-traced";
+ "cayley-dickson" = dontDistribute super."cayley-dickson";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "certificate" = dontDistribute super."certificate";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = doDistribute super."cgi_3001_2_2_3";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate-highlight" = dontDistribute super."cheapskate-highlight";
+ "cheapskate-lucid" = dontDistribute super."cheapskate-lucid";
+ "cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chorale" = dontDistribute super."chorale";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "ciphersaber2" = dontDistribute super."ciphersaber2";
+ "circ" = dontDistribute super."circ";
+ "circlehs" = dontDistribute super."circlehs";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clang-pure" = dontDistribute super."clang-pure";
+ "clanki" = dontDistribute super."clanki";
+ "clarifai" = dontDistribute super."clarifai";
+ "clash" = dontDistribute super."clash";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
+ "clock" = doDistribute super."clock_0_6_0_1";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "clumpiness" = dontDistribute super."clumpiness";
+ "cluss" = dontDistribute super."cluss";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmph" = dontDistribute super."cmph";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "color-counter" = dontDistribute super."color-counter";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commander" = dontDistribute super."commander";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "compensated" = dontDistribute super."compensated";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-ltr" = dontDistribute super."compose-ltr";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = dontDistribute super."concurrent-extra";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-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";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constraint-classes" = dontDistribute super."constraint-classes";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consumers" = dontDistribute super."consumers";
+ "container" = dontDistribute super."container";
+ "container-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";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convert" = dontDistribute super."convert";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copilot-theorem" = dontDistribute super."copilot-theorem";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplex-hs" = dontDistribute super."cplex-hs";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_19_3";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "craze" = dontDistribute super."craze";
+ "crc" = dontDistribute super."crc";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = doDistribute super."cron_0_3_2";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-enigma" = dontDistribute super."crypto-enigma";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptohash" = doDistribute super."cryptohash_0_11_6";
+ "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
+ "cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
+ "cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
+ "cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
+ "cryptonite-openssl" = dontDistribute super."cryptonite-openssl";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-table" = dontDistribute super."csv-table";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3d11binding" = dontDistribute super."d3d11binding";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "danibot" = dontDistribute super."danibot";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = doDistribute super."darcs_2_10_3";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-base" = dontDistribute super."data-base";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-construction" = dontDistribute super."data-construction";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-extra" = dontDistribute super."data-default-extra";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
+ "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
+ "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
+ "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
+ "data-default-instances-text" = dontDistribute super."data-default-instances-text";
+ "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
+ "data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-embed" = dontDistribute super."data-embed";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extend-generic" = dontDistribute super."data-extend-generic";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-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-or" = dontDistribute super."data-or";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-repr" = dontDistribute super."data-repr";
+ "data-result" = dontDistribute super."data-result";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-rtuple" = dontDistribute super."data-rtuple";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "dataurl" = dontDistribute super."dataurl";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawdle" = dontDistribute super."dawdle";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = doDistribute super."dbmigrations_1_0";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-babel" = dontDistribute super."ddc-core-babel";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "debug-time" = dontDistribute super."debug-time";
+ "decepticons" = dontDistribute super."decepticons";
+ "decimal-arithmetic" = dontDistribute super."decimal-arithmetic";
+ "declarative" = doDistribute super."declarative_0_1_0_1";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deepcontrol" = dontDistribute super."deepcontrol";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = doDistribute super."dejafu_0_2_0_0";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delay" = dontDistribute super."delay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delimiter-separated" = dontDistribute super."delimiter-separated";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
+ "dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-monoid" = dontDistribute super."derive-monoid";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-reflex" = dontDistribute super."diagrams-reflex";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "diagrams-wx" = dontDistribute super."diagrams-wx";
+ "dialog" = dontDistribute super."dialog";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-gestalt" = dontDistribute super."diff-gestalt";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
+ "dimensional-codata" = dontDistribute super."dimensional-codata";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discogs-haskell" = dontDistribute super."discogs-haskell";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-closure" = dontDistribute super."distributed-closure";
+ "distributed-process" = doDistribute super."distributed-process_0_5_5_1";
+ "distributed-process-async" = dontDistribute super."distributed-process-async";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-client-server" = dontDistribute super."distributed-process-client-server";
+ "distributed-process-ekg" = dontDistribute super."distributed-process-ekg";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-lifted" = dontDistribute super."distributed-process-lifted";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet";
+ "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor";
+ "distributed-process-task" = dontDistribute super."distributed-process-task";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "dixi" = doDistribute super."dixi_0_6_0_5";
+ "djembe" = dontDistribute super."djembe";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "doctest" = doDistribute super."doctest_0_10_1";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-parser" = dontDistribute super."dom-parser";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = doDistribute super."dotenv_0_1_0_9";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dotnet-timespan" = dontDistribute super."dotnet-timespan";
+ "double-metaphone" = dontDistribute super."double-metaphone";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "dpor" = dontDistribute super."dpor";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynobud" = dontDistribute super."dynobud";
+ "dywapitchtrack" = dontDistribute super."dywapitchtrack";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-bitcoin" = dontDistribute super."easy-bitcoin";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editpipe" = dontDistribute super."editpipe";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "eithers" = dontDistribute super."eithers";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elision" = dontDistribute super."elision";
+ "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-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";
+ "envelope" = dontDistribute super."envelope";
+ "envparse" = dontDistribute super."envparse";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-analyze" = dontDistribute super."error-analyze";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "error-util" = dontDistribute super."error-util";
+ "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance";
+ "ersatz" = dontDistribute super."ersatz";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = doDistribute super."ether_0_3_1_1";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
+ "eventstore" = doDistribute super."eventstore_0_10_0_2";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
+ "exception-hierarchy" = dontDistribute super."exception-hierarchy";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "existential" = dontDistribute super."existential";
+ "exists" = dontDistribute super."exists";
+ "exit-codes" = dontDistribute super."exit-codes";
+ "exp-extended" = dontDistribute super."exp-extended";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_4_5";
+ "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-builder" = doDistribute super."fast-builder_0_0_0_4";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fca" = dontDistribute super."fca";
+ "fcache" = dontDistribute super."fcache";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "filediff" = dontDistribute super."filediff";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-clumpiness" = dontDistribute super."find-clumpiness";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "finite-typelits" = dontDistribute super."finite-typelits";
+ "first-and-last" = dontDistribute super."first-and-last";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixfile" = dontDistribute super."fixfile";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-maybe" = dontDistribute super."flat-maybe";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flat-tex" = dontDistribute super."flat-tex";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fltkhs-demos" = dontDistribute super."fltkhs-demos";
+ "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos";
+ "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples";
+ "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fn" = doDistribute super."fn_0_2_0_2";
+ "fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_1_6";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "fordo" = dontDistribute super."fordo";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "formura" = dontDistribute super."formura";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "foscam-directory" = dontDistribute super."foscam-directory";
+ "foscam-filename" = dontDistribute super."foscam-filename";
+ "foscam-sort" = dontDistribute super."foscam-sort";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = dontDistribute super."fpco-api";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "freddy" = dontDistribute super."freddy";
+ "free-concurrent" = dontDistribute super."free-concurrent";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "free-vl" = dontDistribute super."free-vl";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresco-binding" = dontDistribute super."fresco-binding";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friday-scale-dct" = dontDistribute super."friday-scale-dct";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frown" = dontDistribute super."frown";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funbot-git-hook" = dontDistribute super."funbot-git-hook";
+ "funcons-tools" = dontDistribute super."funcons-tools";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functional-kmp" = dontDistribute super."functional-kmp";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functor-utils" = dontDistribute super."functor-utils";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gdo" = dontDistribute super."gdo";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gelatin" = dontDistribute super."gelatin";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_9_0";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-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-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";
+ "ghc-dump-tree" = dontDistribute super."ghc-dump-tree";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-options" = dontDistribute super."ghc-options";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_5_1";
+ "ghcjs-ajax" = dontDistribute super."ghcjs-ajax";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-hplay" = dontDistribute super."ghcjs-hplay";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gi-atk" = dontDistribute super."gi-atk";
+ "gi-cairo" = dontDistribute super."gi-cairo";
+ "gi-gdk" = dontDistribute super."gi-gdk";
+ "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf";
+ "gi-gio" = dontDistribute super."gi-gio";
+ "gi-girepository" = dontDistribute super."gi-girepository";
+ "gi-glib" = dontDistribute super."gi-glib";
+ "gi-gobject" = dontDistribute super."gi-gobject";
+ "gi-gst" = dontDistribute super."gi-gst";
+ "gi-gstaudio" = dontDistribute super."gi-gstaudio";
+ "gi-gstbase" = dontDistribute super."gi-gstbase";
+ "gi-gstvideo" = dontDistribute super."gi-gstvideo";
+ "gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
+ "gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
+ "gi-notify" = dontDistribute super."gi-notify";
+ "gi-pango" = dontDistribute super."gi-pango";
+ "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";
+ "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_20160114";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-embed" = dontDistribute super."git-embed";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-jump" = dontDistribute super."git-jump";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitHUD" = dontDistribute super."gitHUD";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-release" = dontDistribute super."github-release";
+ "github-utils" = dontDistribute super."github-utils";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
+ "givegif" = dontDistribute super."givegif";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glicko" = dontDistribute super."glicko";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnss-converters" = dontDistribute super."gnss-converters";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "goa" = dontDistribute super."goa";
+ "goal-core" = dontDistribute super."goal-core";
+ "goal-geometry" = dontDistribute super."goal-geometry";
+ "goal-probability" = dontDistribute super."goal-probability";
+ "goal-simulation" = dontDistribute super."goal-simulation";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "gogol" = dontDistribute super."gogol";
+ "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer";
+ "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller";
+ "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer";
+ "gogol-admin-directory" = dontDistribute super."gogol-admin-directory";
+ "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration";
+ "gogol-admin-reports" = dontDistribute super."gogol-admin-reports";
+ "gogol-adsense" = dontDistribute super."gogol-adsense";
+ "gogol-adsense-host" = dontDistribute super."gogol-adsense-host";
+ "gogol-affiliates" = dontDistribute super."gogol-affiliates";
+ "gogol-analytics" = dontDistribute super."gogol-analytics";
+ "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise";
+ "gogol-android-publisher" = dontDistribute super."gogol-android-publisher";
+ "gogol-appengine" = dontDistribute super."gogol-appengine";
+ "gogol-apps-activity" = dontDistribute super."gogol-apps-activity";
+ "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar";
+ "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing";
+ "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller";
+ "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks";
+ "gogol-appstate" = dontDistribute super."gogol-appstate";
+ "gogol-autoscaler" = dontDistribute super."gogol-autoscaler";
+ "gogol-bigquery" = dontDistribute super."gogol-bigquery";
+ "gogol-billing" = dontDistribute super."gogol-billing";
+ "gogol-blogger" = dontDistribute super."gogol-blogger";
+ "gogol-books" = dontDistribute super."gogol-books";
+ "gogol-civicinfo" = dontDistribute super."gogol-civicinfo";
+ "gogol-classroom" = dontDistribute super."gogol-classroom";
+ "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace";
+ "gogol-compute" = dontDistribute super."gogol-compute";
+ "gogol-container" = dontDistribute super."gogol-container";
+ "gogol-core" = dontDistribute super."gogol-core";
+ "gogol-customsearch" = dontDistribute super."gogol-customsearch";
+ "gogol-dataflow" = dontDistribute super."gogol-dataflow";
+ "gogol-datastore" = dontDistribute super."gogol-datastore";
+ "gogol-debugger" = dontDistribute super."gogol-debugger";
+ "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager";
+ "gogol-dfareporting" = dontDistribute super."gogol-dfareporting";
+ "gogol-discovery" = dontDistribute super."gogol-discovery";
+ "gogol-dns" = dontDistribute super."gogol-dns";
+ "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids";
+ "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search";
+ "gogol-drive" = dontDistribute super."gogol-drive";
+ "gogol-fitness" = dontDistribute super."gogol-fitness";
+ "gogol-fonts" = dontDistribute super."gogol-fonts";
+ "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch";
+ "gogol-fusiontables" = dontDistribute super."gogol-fusiontables";
+ "gogol-games" = dontDistribute super."gogol-games";
+ "gogol-games-configuration" = dontDistribute super."gogol-games-configuration";
+ "gogol-games-management" = dontDistribute super."gogol-games-management";
+ "gogol-genomics" = dontDistribute super."gogol-genomics";
+ "gogol-gmail" = dontDistribute super."gogol-gmail";
+ "gogol-groups-migration" = dontDistribute super."gogol-groups-migration";
+ "gogol-groups-settings" = dontDistribute super."gogol-groups-settings";
+ "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit";
+ "gogol-latencytest" = dontDistribute super."gogol-latencytest";
+ "gogol-logging" = dontDistribute super."gogol-logging";
+ "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate";
+ "gogol-maps-engine" = dontDistribute super."gogol-maps-engine";
+ "gogol-mirror" = dontDistribute super."gogol-mirror";
+ "gogol-monitoring" = dontDistribute super."gogol-monitoring";
+ "gogol-oauth2" = dontDistribute super."gogol-oauth2";
+ "gogol-pagespeed" = dontDistribute super."gogol-pagespeed";
+ "gogol-partners" = dontDistribute super."gogol-partners";
+ "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner";
+ "gogol-plus" = dontDistribute super."gogol-plus";
+ "gogol-plus-domains" = dontDistribute super."gogol-plus-domains";
+ "gogol-prediction" = dontDistribute super."gogol-prediction";
+ "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon";
+ "gogol-pubsub" = dontDistribute super."gogol-pubsub";
+ "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress";
+ "gogol-replicapool" = dontDistribute super."gogol-replicapool";
+ "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater";
+ "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager";
+ "gogol-resourceviews" = dontDistribute super."gogol-resourceviews";
+ "gogol-shopping-content" = dontDistribute super."gogol-shopping-content";
+ "gogol-siteverification" = dontDistribute super."gogol-siteverification";
+ "gogol-spectrum" = dontDistribute super."gogol-spectrum";
+ "gogol-sqladmin" = dontDistribute super."gogol-sqladmin";
+ "gogol-storage" = dontDistribute super."gogol-storage";
+ "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer";
+ "gogol-tagmanager" = dontDistribute super."gogol-tagmanager";
+ "gogol-taskqueue" = dontDistribute super."gogol-taskqueue";
+ "gogol-translate" = dontDistribute super."gogol-translate";
+ "gogol-urlshortener" = dontDistribute super."gogol-urlshortener";
+ "gogol-useraccounts" = dontDistribute super."gogol-useraccounts";
+ "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools";
+ "gogol-youtube" = dontDistribute super."gogol-youtube";
+ "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics";
+ "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting";
+ "gooey" = dontDistribute super."gooey";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gore-and-ash" = dontDistribute super."gore-and-ash";
+ "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor";
+ "gore-and-ash-async" = dontDistribute super."gore-and-ash-async";
+ "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo";
+ "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw";
+ "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging";
+ "gore-and-ash-network" = dontDistribute super."gore-and-ash-network";
+ "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl";
+ "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpio" = dontDistribute super."gpio";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_2_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
+ "grasp" = dontDistribute super."grasp";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "graylog" = dontDistribute super."graylog";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "gremlin-haskell" = dontDistribute super."gremlin-haskell";
+ "greplicate" = dontDistribute super."greplicate";
+ "grid" = dontDistribute super."grid";
+ "gridfs" = dontDistribute super."gridfs";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groundhog-converters" = dontDistribute super."groundhog-converters";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "guid" = dontDistribute super."guid";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hPDB-examples" = dontDistribute super."hPDB-examples";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hScraper" = dontDistribute super."hScraper";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "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-leksah" = dontDistribute super."haddock-leksah";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hahp" = dontDistribute super."hahp";
+ "haiji" = dontDistribute super."haiji";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = doDistribute super."hakyll_4_7_5_2";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-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";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handa-opengl" = dontDistribute super."handa-opengl";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "handwriting" = dontDistribute super."handwriting";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "haphviz" = dontDistribute super."haphviz";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "hapstone" = dontDistribute super."hapstone";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hardware-edsl" = dontDistribute super."hardware-edsl";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harpy" = dontDistribute super."harpy";
+ "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";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline" = doDistribute super."haskeline_0_7_2_3";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-exp-parser" = dontDistribute super."haskell-exp-parser";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-gi" = dontDistribute super."haskell-gi";
+ "haskell-gi-base" = dontDistribute super."haskell-gi-base";
+ "haskell-import-graph" = dontDistribute super."haskell-import-graph";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-kubernetes" = dontDistribute super."haskell-kubernetes";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpfr" = dontDistribute super."haskell-mpfr";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = dontDistribute super."haskell-names";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-read-editor" = dontDistribute super."haskell-read-editor";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-tor" = dontDistribute super."haskell-tor";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell2010" = dontDistribute super."haskell2010";
+ "haskell98" = dontDistribute super."haskell98";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-core" = dontDistribute super."haskoin-core";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-node" = dontDistribute super."haskoin-node";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_19_6";
+ "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative";
+ "hasql-pool" = dontDistribute super."hasql-pool";
+ "hasql-postgres" = dontDistribute super."hasql-postgres";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hasql-th" = dontDistribute super."hasql-th";
+ "hasql-transaction" = dontDistribute super."hasql-transaction";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-gapi" = dontDistribute super."haste-gapi";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hastily" = dontDistribute super."hastily";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl-amazonka" = dontDistribute super."haxl-amazonka";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_11_1_4";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcoap" = dontDistribute super."hcoap";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "hdr-histogram" = dontDistribute super."hdr-histogram";
+ "headergen" = dontDistribute super."headergen";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "helix" = dontDistribute super."helix";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "heredocs" = dontDistribute super."heredocs";
+ "herf-time" = dontDistribute super."herf-time";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesh" = dontDistribute super."hesh";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfmt" = dontDistribute super."hfmt";
+ "hfoil" = dontDistribute super."hfoil";
+ "hformat" = dontDistribute super."hformat";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrev" = dontDistribute super."hgrev";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hi3status" = dontDistribute super."hi3status";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindley-milner" = dontDistribute super."hindley-milner";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify-bytestring" = dontDistribute super."hinotify-bytestring";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_3";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hip" = dontDistribute super."hip";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipchat-hs" = dontDistribute super."hipchat-hs";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hit-graph" = dontDistribute super."hit-graph";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_5_3";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hkdf" = dontDistribute super."hkdf";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hleap" = dontDistribute super."hleap";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlint" = doDistribute super."hlint_1_9_31";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17_1";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hoppy-generator" = dontDistribute super."hoppy-generator";
+ "hoppy-runtime" = dontDistribute super."hoppy-runtime";
+ "hoppy-std" = dontDistribute super."hoppy-std";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "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";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpath" = dontDistribute super."hpath";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hpdft" = dontDistribute super."hpdft";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = doDistribute super."hprotoc_2_1_12";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_23";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai" = doDistribute super."hspec-wai_0_6_5";
+ "hspec2" = dontDistribute super."hspec2";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsseccomp" = dontDistribute super."hsseccomp";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hssqlppp-th" = dontDistribute super."hssqlppp-th";
+ "hstats" = dontDistribute super."hstats";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-parse" = dontDistribute super."html-parse";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-session" = dontDistribute super."http-client-session";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-dispatch" = dontDistribute super."http-dispatch";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kinder" = dontDistribute super."http-kinder";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-response-decoder" = dontDistribute super."http-response-decoder";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-test" = dontDistribute super."http-test";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_4_5";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huckleberry" = dontDistribute super."huckleberry";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
+ "hw-bits" = dontDistribute super."hw-bits";
+ "hw-conduit" = dontDistribute super."hw-conduit";
+ "hw-diagnostics" = dontDistribute super."hw-diagnostics";
+ "hw-json" = dontDistribute super."hw-json";
+ "hw-parser" = dontDistribute super."hw-parser";
+ "hw-prim" = dontDistribute super."hw-prim";
+ "hw-rankselect" = dontDistribute super."hw-rankselect";
+ "hw-succinct" = dontDistribute super."hw-succinct";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylogen" = dontDistribute super."hylogen";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hypher" = dontDistribute super."hypher";
+ "hzaif" = dontDistribute super."hzaif";
+ "hzk" = dontDistribute super."hzk";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "ibus-hs" = dontDistribute super."ibus-hs";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna" = dontDistribute super."idna";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = doDistribute super."ig_0_6_1";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "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-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "inf-interval" = dontDistribute super."inf-interval";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-java" = dontDistribute super."inline-java";
+ "inquire" = dontDistribute super."inquire";
+ "insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "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-machine" = dontDistribute super."io-machine";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = doDistribute super."irc-client_0_2_6_0";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-dcc" = dontDistribute super."irc-dcc";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "irc-fun-types" = dontDistribute super."irc-fun-types";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iridium" = dontDistribute super."iridium";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "isohunt" = dontDistribute super."isohunt";
+ "ispositive" = dontDistribute super."ispositive";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-artifact" = dontDistribute super."ivory-artifact";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-eval" = dontDistribute super."ivory-eval";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-serialize" = dontDistribute super."ivory-serialize";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-poker" = dontDistribute super."java-poker";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javaclass" = dontDistribute super."javaclass";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_12_3";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-ast" = dontDistribute super."json-ast";
+ "json-ast-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";
+ "jwt" = doDistribute super."jwt_0_6_0";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kanji" = dontDistribute super."kanji";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katip" = dontDistribute super."katip";
+ "katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
+ "katt" = dontDistribute super."katt";
+ "kazura-queue" = dontDistribute super."kazura-queue";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = doDistribute super."keycode_0_1_1";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-ir" = dontDistribute super."lambdacube-ir";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdaya-bus" = dontDistribute super."lambdaya-bus";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c" = doDistribute super."language-c_0_4_7";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_14_7";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = doDistribute super."language-thrift_0_7_0_1";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "language-webidl" = dontDistribute super."language-webidl";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leancheck" = dontDistribute super."leancheck";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-prelude" = dontDistribute super."lens-prelude";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lens-utils" = dontDistribute super."lens-utils";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lenz" = dontDistribute super."lenz";
+ "lenz-template" = dontDistribute super."lenz-template";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lfst" = dontDistribute super."lfst";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "libravatar" = dontDistribute super."libravatar";
+ "libroman" = dontDistribute super."libroman";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxls" = dontDistribute super."libxls";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "link-relations" = dontDistribute super."link-relations";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linode" = dontDistribute super."linode";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
+ "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "list-zip-def" = dontDistribute super."list-zip-def";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "lmonad" = dontDistribute super."lmonad";
+ "lmonad-yesod" = dontDistribute super."lmonad-yesod";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located" = dontDistribute super."located";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "locked-poll" = dontDistribute super."locked-poll";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = dontDistribute super."logfloat";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-effect" = dontDistribute super."logging-effect";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logict-state" = dontDistribute super."logict-state";
+ "logplex-parse" = dontDistribute super."logplex-parse";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "lol" = dontDistribute super."lol";
+ "lol-apps" = dontDistribute super."lol-apps";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lp-diagrams" = dontDistribute super."lp-diagrams";
+ "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-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";
+ "luminance" = doDistribute super."luminance_0_9_1_2";
+ "luminance-samples" = doDistribute super."luminance-samples_0_9_1";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "macbeth-lib" = dontDistribute super."macbeth-lib";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines-binary" = dontDistribute super."machines-binary";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = doDistribute super."managed_1_0_3";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandulia" = dontDistribute super."mandulia";
+ "manifold-random" = dontDistribute super."manifold-random";
+ "manifolds" = dontDistribute super."manifolds";
+ "map-exts" = dontDistribute super."map-exts";
+ "mappy" = dontDistribute super."mappy";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matcher" = dontDistribute super."matcher";
+ "matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_6_0";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathista" = dontDistribute super."mathista";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdapi" = dontDistribute super."mdapi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mdp" = dontDistribute super."mdp";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "megaparsec" = doDistribute super."megaparsec_4_3_0";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memory" = doDistribute super."memory_0_11";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mezzolens" = dontDistribute super."mezzolens";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = doDistribute super."microlens_0_4_2_1";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1";
+ "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1";
+ "microlens-th" = doDistribute super."microlens-th_0_3_0_2";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midair" = dontDistribute super."midair";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-string" = dontDistribute super."mime-string";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minilens" = dontDistribute super."minilens";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "mnist-idx" = dontDistribute super."mnist-idx";
+ "moan" = dontDistribute super."moan";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "mohws" = dontDistribute super."mohws";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-connect" = dontDistribute super."monad-connect";
+ "monad-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-journal" = doDistribute super."monad-journal_0_7_1";
+ "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-peel" = doDistribute super."monad-peel_0_2";
+ "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-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = doDistribute super."monad-time_0_1";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = doDistribute super."monad-unlift_0_1_2_0";
+ "monad-unlift-ref" = dontDistribute super."monad-unlift-ref";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mondo" = dontDistribute super."mondo";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "monoid-absorbing" = dontDistribute super."monoid-absorbing";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = doDistribute super."morte_1_4_2";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mountpoints" = dontDistribute super."mountpoints";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mpris" = dontDistribute super."mpris";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "mrm" = dontDistribute super."mrm";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msh" = dontDistribute super."msh";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = dontDistribute super."mtlparse";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "mulang" = dontDistribute super."mulang";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiaddr" = dontDistribute super."multiaddr";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur" = dontDistribute super."murmur";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-probability" = doDistribute super."mwc-probability_1_0_3";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-erl" = dontDistribute super."nano-erl";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanovg" = dontDistribute super."nanovg";
+ "nanq" = dontDistribute super."nanq";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "native" = dontDistribute super."native";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "neat" = dontDistribute super."neat";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network-address" = dontDistribute super."network-address";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_1_1";
+ "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-multicast" = doDistribute super."network-multicast_0_1_0";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "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-dk" = doDistribute super."numtype-dk_0_5";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oanda-rest-api" = dontDistribute super."oanda-rest-api";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = doDistribute super."objective_1_0_5";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octane" = dontDistribute super."octane";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "oidc-client" = dontDistribute super."oidc-client";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "opaleye-trans" = dontDistribute super."opaleye-trans";
+ "open-haddock" = dontDistribute super."open-haddock";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-signals" = dontDistribute super."open-signals";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencog-atomspace" = dontDistribute super."opencog-atomspace";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
+ "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "opensource" = dontDistribute super."opensource";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-alacarte" = dontDistribute super."operational-alacarte";
+ "operational-extra" = dontDistribute super."operational-extra";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "option" = dontDistribute super."option";
+ "optional" = dontDistribute super."optional";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
+ "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";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packman" = dontDistribute super."packman";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_16_0_2";
+ "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-include" = dontDistribute super."pandoc-include";
+ "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "paranoia" = dontDistribute super."paranoia";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-trace" = dontDistribute super."parsec-trace";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parser241" = dontDistribute super."parser241";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partage" = dontDistribute super."partage";
+ "partial" = dontDistribute super."partial";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path-io" = doDistribute super."path-io_0_2_0";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "perfecthash" = dontDistribute super."perfecthash";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
+ "persistent-audit" = dontDistribute super."persistent-audit";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-database-url" = dontDistribute super."persistent-database-url";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-iproute" = dontDistribute super."persistent-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-template" = doDistribute super."persistent-template_2_1_8";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pg-store" = dontDistribute super."pg-store";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
+ "phoityne-vscode" = dontDistribute super."phoityne-vscode";
+ "phone-numbers" = dontDistribute super."phone-numbers";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pinchot" = doDistribute super."pinchot_0_6_0_0";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bzip" = dontDistribute super."pipes-bzip";
+ "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple";
+ "pipes-transduce" = dontDistribute super."pipes-transduce";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pitchtrack" = dontDistribute super."pitchtrack";
+ "pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "plan-b" = dontDistribute super."plan-b";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plist-buddy" = dontDistribute super."plist-buddy";
+ "plivo" = dontDistribute super."plivo";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-configfile" = dontDistribute super."polar-configfile";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-control" = dontDistribute super."poly-control";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polymap" = dontDistribute super."polymap";
+ "polynom" = dontDistribute super."polynom";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pong-server" = dontDistribute super."pong-server";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pool-conduit" = dontDistribute super."pool-conduit";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-connector" = dontDistribute super."postgresql-connector";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-error-codes" = dontDistribute super."postgresql-error-codes";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-transactional" = dontDistribute super."postgresql-transactional";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "predicates" = dontDistribute super."predicates";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-compat" = dontDistribute super."prelude-compat";
+ "prelude-edsl" = dontDistribute super."prelude-edsl";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "prelude2010" = dontDistribute super."prelude2010";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "present" = dontDistribute super."present";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-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_7";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prologue" = dontDistribute super."prologue";
+ "prometheus" = dontDistribute super."prometheus";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protobuf-simple" = dontDistribute super."protobuf-simple";
+ "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12";
+ "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "protolude" = dontDistribute super."protolude";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxied" = dontDistribute super."proxied";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = doDistribute super."psc-ide_0_5_0";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psql-helpers" = dontDistribute super."psql-helpers";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = doDistribute super."publicsuffix_0_20151212";
+ "publicsuffixlist" = dontDistribute super."publicsuffixlist";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "punycode" = dontDistribute super."punycode";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = doDistribute super."purescript_0_7_6_1";
+ "purescript-bridge" = dontDistribute super."purescript-bridge";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "pursuit-client" = dontDistribute super."pursuit-client";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "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-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = dontDistribute super."quickpull";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "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" = doDistribute super."rainbow_0_26_0_6";
+ "rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_4";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "random-tree" = dontDistribute super."random-tree";
+ "random-variates" = dontDistribute super."random-variates";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratel" = dontDistribute super."ratel";
+ "ratel-wai" = dontDistribute super."ratel-wai";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactivity" = dontDistribute super."reactivity";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "read-env-var" = dontDistribute super."read-env-var";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "readshp" = dontDistribute super."readshp";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "rebase" = dontDistribute super."rebase";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = doDistribute super."redis-io_0_5_2";
+ "redis-job-queue" = dontDistribute super."redis-job-queue";
+ "redis-resp" = doDistribute super."redis-resp_0_3_2";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reedsolomon" = dontDistribute super."reedsolomon";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
+ "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" = doDistribute super."regex-tdfa_1_2_1";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-type" = dontDistribute super."regex-type";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr" = dontDistribute super."regexpr";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
+ "regress" = dontDistribute super."regress";
+ "regular" = dontDistribute super."regular";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "regular-xmlpickler" = dontDistribute super."regular-xmlpickler";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch" = dontDistribute super."rematch";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remote-json" = dontDistribute super."remote-json";
+ "remote-json-client" = dontDistribute super."remote-json-client";
+ "remote-json-server" = dontDistribute super."remote-json-server";
+ "remote-monad" = dontDistribute super."remote-monad";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "reqcatcher" = dontDistribute super."reqcatcher";
+ "request-monad" = dontDistribute super."request-monad";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-pool-monad" = dontDistribute super."resource-pool-monad";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "respond" = dontDistribute super."respond";
+ "rest-core" = doDistribute super."rest-core_0_37";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_19_0_1";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-arguments" = dontDistribute super."reverse-arguments";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = doDistribute super."riak_0_9_1_1";
+ "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rlist" = dontDistribute super."rlist";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trie" = dontDistribute super."rose-trie";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "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";
+ "rss-conduit" = dontDistribute super."rss-conduit";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtcm" = dontDistribute super."rtcm";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s-cargot" = dontDistribute super."s-cargot";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-length" = dontDistribute super."safe-length";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "sampling" = dontDistribute super."sampling";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandlib" = dontDistribute super."sandlib";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sarsi" = dontDistribute super."sarsi";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbvPlugin" = dontDistribute super."sbvPlugin";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = doDistribute super."scalpel_0_2_1_1";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scanner" = dontDistribute super."scanner";
+ "scanner-attoparsec" = dontDistribute super."scanner-attoparsec";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_10_2";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-params-parser" = dontDistribute super."scotty-params-parser";
+ "scotty-resource" = dontDistribute super."scotty-resource";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scotty-view" = dontDistribute super."scotty-view";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scrape-changes" = dontDistribute super."scrape-changes";
+ "scrobble" = dontDistribute super."scrobble";
+ "scroll" = dontDistribute super."scroll";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2-cairo" = dontDistribute super."sdl2-cairo";
+ "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
+ "sdl2-compositor" = dontDistribute super."sdl2-compositor";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = doDistribute super."second-transfer_0_7_1_0";
+ "secp256k1" = dontDistribute super."secp256k1";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver-range" = dontDistribute super."semver-range";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensei" = dontDistribute super."sensei";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
+ "serv" = dontDistribute super."serv";
+ "serv-wai" = dontDistribute super."serv-wai";
+ "servant" = doDistribute super."servant_0_4_4_7";
+ "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7";
+ "servant-cassava" = dontDistribute super."servant-cassava";
+ "servant-client" = doDistribute super."servant-client_0_4_4_7";
+ "servant-csharp" = dontDistribute super."servant-csharp";
+ "servant-docs" = doDistribute super."servant-docs_0_4_4_7";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-elm" = dontDistribute super."servant-elm";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-foreign" = dontDistribute super."servant-foreign";
+ "servant-github" = dontDistribute super."servant-github";
+ "servant-haxl-client" = dontDistribute super."servant-haxl-client";
+ "servant-js" = dontDistribute super."servant-js";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-quickcheck" = dontDistribute super."servant-quickcheck";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = doDistribute super."servant-server_0_4_4_7";
+ "servant-swagger" = doDistribute super."servant-swagger_0_1_2";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = doDistribute super."set-extra_1_3_2";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setgame" = dontDistribute super."setgame";
+ "setops" = dontDistribute super."setops";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-grammar" = dontDistribute super."sexp-grammar";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_8_6";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shake-persist" = dontDistribute super."shake-persist";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare-babel" = dontDistribute super."shakespeare-babel";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-i18n" = dontDistribute super."shakespeare-i18n";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shakespeare-text" = dontDistribute super."shakespeare-text";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "sharc-timbre" = dontDistribute super."sharc-timbre";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shine" = dontDistribute super."shine";
+ "shine-varying" = dontDistribute super."shine-varying";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplest-sqlite" = dontDistribute super."simplest-sqlite";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skeleton" = dontDistribute super."skeleton";
+ "skell" = dontDistribute super."skell";
+ "skemmtun" = dontDistribute super."skemmtun";
+ "skulk" = dontDistribute super."skulk";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "sleep" = dontDistribute super."sleep";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-language" = dontDistribute super."snap-language";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-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" = doDistribute super."socket_0_5_3_1";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "socketson" = dontDistribute super."socketson";
+ "soegtk" = dontDistribute super."soegtk";
+ "solr" = dontDistribute super."solr";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparkle" = dontDistribute super."sparkle";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "sproxy" = dontDistribute super."sproxy";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "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" = doDistribute super."stack_1_0_2";
+ "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stack-run" = dontDistribute super."stack-run";
+ "stackage-curator" = doDistribute super."stackage-curator_0_13_3";
+ "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-record" = dontDistribute super."state-record";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-client" = dontDistribute super."statsd-client";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
+ "str" = dontDistribute super."str";
+ "stratosphere" = dontDistribute super."stratosphere";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream" = dontDistribute super."stream";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_15_4";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-png" = dontDistribute super."streaming-png";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streaming-wai" = dontDistribute super."streaming-wai";
+ "strict-base-types" = doDistribute super."strict-base-types_0_4_0";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "string-typelits" = dontDistribute super."string-typelits";
+ "stringlike" = dontDistribute super."stringlike";
+ "stringprep" = dontDistribute super."stringprep";
+ "strings" = dontDistribute super."strings";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "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";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "super-user-spark" = dontDistribute super."super-user-spark";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "supplemented" = dontDistribute super."supplemented";
+ "suspend" = dontDistribute super."suspend";
+ "svg-builder" = dontDistribute super."svg-builder";
+ "svg-tree" = doDistribute super."svg-tree_0_3_2";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger2" = doDistribute super."swagger2_1_2_1";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "symengine-hs" = dontDistribute super."symengine-hs";
+ "sync" = dontDistribute super."sync";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-filter" = dontDistribute super."synthesizer-filter";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-canonicalpath" = dontDistribute super."system-canonicalpath";
+ "system-command" = dontDistribute super."system-command";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-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";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "tai64" = dontDistribute super."tai64";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tardis" = doDistribute super."tardis_0_3_0_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "task-distribution" = dontDistribute super."task-distribution";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0";
+ "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tateti-tateti" = dontDistribute super."tateti-tateti";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "telegram-api" = dontDistribute super."telegram-api";
+ "teleport" = dontDistribute super."teleport";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "template-yj" = dontDistribute super."template-yj";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempo" = dontDistribute super."tempo";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo" = doDistribute super."terminfo_0_4_0_2";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "termplot" = dontDistribute super."termplot";
+ "terntup" = dontDistribute super."terntup";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-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-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-postgresql" = dontDistribute super."text-postgresql";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-region" = dontDistribute super."text-region";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "textual" = dontDistribute super."textual";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-cas" = dontDistribute super."th-cas";
+ "th-context" = dontDistribute super."th-context";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-kinds-fork" = dontDistribute super."th-kinds-fork";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "th-utilities" = dontDistribute super."th-utilities";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-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";
+ "timemap" = dontDistribute super."timemap";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = doDistribute super."tinylog_0_12_1";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "tiphys" = dontDistribute super."tiphys";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_3_7";
+ "tls-debug" = doDistribute super."tls-debug_0_4_1";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "total" = dontDistribute super."total";
+ "total-alternative" = dontDistribute super."total-alternative";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "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-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-eff" = dontDistribute super."transformers-eff";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "transient-universe" = dontDistribute super."transient-universe";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-fun" = dontDistribute super."tree-fun";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treersec" = dontDistribute super."treersec";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "tripLL" = dontDistribute super."tripLL";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = doDistribute super."true-name_0_1_0_1";
+ "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";
+ "tttool" = doDistribute super."tttool_1_5_1";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple" = dontDistribute super."tuple";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "turing" = dontDistribute super."turing";
+ "turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle-options" = dontDistribute super."turtle-options";
+ "tweak" = dontDistribute super."tweak";
+ "twee" = dontDistribute super."twee";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twentyseven" = dontDistribute super."twentyseven";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cache" = dontDistribute super."type-cache";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-combinators" = dontDistribute super."type-combinators";
+ "type-combinators-quote" = dontDistribute super."type-combinators-quote";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-fun" = dontDistribute super."type-fun";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
+ "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";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "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";
+ "uncertain" = dontDistribute super."uncertain";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "unfoldable-restricted" = dontDistribute super."unfoldable-restricted";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-show" = dontDistribute super."unicode-show";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union" = dontDistribute super."union";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique" = dontDistribute super."unique";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "unit-constraint" = dontDistribute super."unit-constraint";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unordered-graphs" = dontDistribute super."unordered-graphs";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unsequential" = dontDistribute super."unsequential";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "users" = doDistribute super."users_0_4_0_0";
+ "users-persistent" = doDistribute super."users-persistent_0_4_0_0";
+ "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0";
+ "users-test" = doDistribute super."users-test_0_4_0_0";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcatt" = dontDistribute super."vcatt";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-sized" = dontDistribute super."vector-sized";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = dontDistribute super."vector-space-points";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verdict" = dontDistribute super."verdict";
+ "verdict-json" = dontDistribute super."verdict-json";
+ "verilog" = dontDistribute super."verilog";
+ "versions" = dontDistribute super."versions";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
+ "vinyl-plus" = dontDistribute super."vinyl-plus";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "vinyl-vectors" = dontDistribute super."vinyl-vectors";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "visibility" = dontDistribute super."visibility";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vrpn" = dontDistribute super."vrpn";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "vulkan" = dontDistribute super."vulkan";
+ "wacom-daemon" = dontDistribute super."wacom-daemon";
+ "waddle" = dontDistribute super."waddle";
+ "wai-accept-language" = dontDistribute super."wai-accept-language";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-devel" = dontDistribute super."wai-devel";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_1";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-session-alt" = dontDistribute super."wai-session-alt";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-thrift" = dontDistribute super."wai-thrift";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_2_2";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-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-angular" = doDistribute super."webdriver-angular_0_1_9";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webfinger-client" = dontDistribute super."webfinger-client";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "werewolf" = dontDistribute super."werewolf";
+ "werewolf-slack" = dontDistribute super."werewolf-slack";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wigner-symbols" = dontDistribute super."wigner-symbols";
+ "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";
+ "with-location" = doDistribute super."with-location_0_0_0";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
+ "word24" = dontDistribute super."word24";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "workflow-osx" = dontDistribute super."workflow-osx";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsdl" = dontDistribute super."wsdl";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-util" = dontDistribute super."x509-util";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdcc" = dontDistribute super."xdcc";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml" = doDistribute super."xhtml_3000_2_1";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsx-tabular" = dontDistribute super."xlsx-tabular";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-conduit" = doDistribute super."xml-conduit_1_3_4_2";
+ "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-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_3";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-csp" = dontDistribute super."yesod-csp";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
+ "yesod-job-queue" = dontDistribute super."yesod-job-queue";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-raml-bin" = dontDistribute super."yesod-raml-bin";
+ "yesod-raml-docs" = dontDistribute super."yesod-raml-docs";
+ "yesod-raml-mock" = dontDistribute super."yesod-raml-mock";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoctoparsec" = dontDistribute super."yoctoparsec";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zerobin" = dontDistribute super."zerobin";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zim-parser" = doDistribute super."zim-parser_0_1_0_0";
+ "zip" = dontDistribute super."zip";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipkin" = dontDistribute super."zipkin";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix
new file mode 100644
index 00000000000..aa82643c72c
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix
@@ -0,0 +1,8243 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ time = null;
+ transformers = null;
+ unix = null;
+
+ # lts-5.17 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AFSM" = dontDistribute super."AFSM";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_5";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "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";
+ "ChannelT" = dontDistribute super."ChannelT";
+ "Chart" = doDistribute super."Chart_1_5_4";
+ "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4";
+ "Chart-diagrams" = dontDistribute super."Chart-diagrams";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "ContextAlgebra" = dontDistribute super."ContextAlgebra";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreDump" = dontDistribute super."CoreDump";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = doDistribute super."Earley_0_10_1_0";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForestStructures" = dontDistribute super."ForestStructures";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
+ "Fractaler" = dontDistribute super."Fractaler";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLM" = dontDistribute super."GLM";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "Gifcurry" = dontDistribute super."Gifcurry";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
+ "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-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "Kriens" = dontDistribute super."Kriens";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LATS" = dontDistribute super."LATS";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "Lambdajudge" = dontDistribute super."Lambdajudge";
+ "Lambdaya" = dontDistribute super."Lambdaya";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListWriter" = dontDistribute super."ListWriter";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MASMGen" = dontDistribute super."MASMGen";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MTGBuilder" = dontDistribute super."MTGBuilder";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT" = dontDistribute super."MaybeT";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "Michelangelo" = dontDistribute super."Michelangelo";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "NearContextAlgebra" = dontDistribute super."NearContextAlgebra";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "NumberTheory" = dontDistribute super."NumberTheory";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OneTuple" = dontDistribute super."OneTuple";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PTQ" = dontDistribute super."PTQ";
+ "PUH-Project" = dontDistribute super."PUH-Project";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QLearn" = dontDistribute super."QLearn";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "Quelea" = dontDistribute super."Quelea";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_8_1";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "QuickPlot" = dontDistribute super."QuickPlot";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAlien" = doDistribute super."RNAlien_1_0_0";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RoyalMonad" = dontDistribute super."RoyalMonad";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = dontDistribute super."SVGFonts";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SimpleServer" = dontDistribute super."SimpleServer";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Slides" = dontDistribute super."Slides";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-lucid" = dontDistribute super."Spock-lucid";
+ "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tahin" = dontDistribute super."Tahin";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "Verba" = dontDistribute super."Verba";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "Vulkan" = dontDistribute super."Vulkan";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "WaveFront" = dontDistribute super."WaveFront";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordAlignment" = dontDistribute super."WordAlignment";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
+ "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" = doDistribute super."aeson_0_9_0_1";
+ "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-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
+ "aeson-prefix" = dontDistribute super."aeson-prefix";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "aeson-yak" = dontDistribute super."aeson-yak";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "ag-pictgen" = dontDistribute super."ag-pictgen";
+ "agda-server" = dontDistribute super."agda-server";
+ "agda-snippets" = dontDistribute super."agda-snippets";
+ "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = doDistribute super."airship_0_4_3_0";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-branches" = dontDistribute super."aivika-branches";
+ "aivika-distributed" = dontDistribute super."aivika-distributed";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "alga" = dontDistribute super."alga";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = doDistribute super."amazonka_1_3_7";
+ "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7";
+ "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7";
+ "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager";
+ "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7";
+ "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7";
+ "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7";
+ "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7";
+ "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7";
+ "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7";
+ "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7";
+ "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events";
+ "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7";
+ "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7";
+ "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7";
+ "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7";
+ "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7";
+ "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp";
+ "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7";
+ "amazonka-config" = doDistribute super."amazonka-config_1_3_7";
+ "amazonka-core" = doDistribute super."amazonka-core_1_3_7";
+ "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7";
+ "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7";
+ "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7";
+ "amazonka-dms" = dontDistribute super."amazonka-dms";
+ "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7";
+ "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7";
+ "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7";
+ "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7";
+ "amazonka-ecr" = dontDistribute super."amazonka-ecr";
+ "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7";
+ "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7";
+ "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7";
+ "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7";
+ "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7";
+ "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7";
+ "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7";
+ "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7";
+ "amazonka-gamelift" = dontDistribute super."amazonka-gamelift";
+ "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7";
+ "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7";
+ "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7";
+ "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7";
+ "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7";
+ "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7";
+ "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7";
+ "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7";
+ "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7";
+ "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7";
+ "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7";
+ "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering";
+ "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7";
+ "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7";
+ "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7";
+ "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7";
+ "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7";
+ "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7";
+ "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7";
+ "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7";
+ "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7";
+ "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7";
+ "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7";
+ "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7";
+ "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7";
+ "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7";
+ "amazonka-support" = doDistribute super."amazonka-support_1_3_7";
+ "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7";
+ "amazonka-test" = doDistribute super."amazonka-test_1_3_7";
+ "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7";
+ "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android" = dontDistribute super."android";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "animalcase" = dontDistribute super."animalcase";
+ "annah" = dontDistribute super."annah";
+ "annihilator" = dontDistribute super."annihilator";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansigraph" = dontDistribute super."ansigraph";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-field-json-th" = dontDistribute super."api-field-json-th";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = doDistribute super."apiary_1_4_5";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-http-client" = dontDistribute super."apiary-http-client";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "applicative-splice" = dontDistribute super."applicative-splice";
+ "apply-refact" = doDistribute super."apply-refact_0_1_0_0";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arena" = dontDistribute super."arena";
+ "arff" = dontDistribute super."arff";
+ "arghwxhaskell" = dontDistribute super."arghwxhaskell";
+ "argon" = doDistribute super."argon_0_4_0_0";
+ "argon2" = dontDistribute super."argon2";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = dontDistribute super."arithmoi";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = dontDistribute super."asn1-data";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atndapi" = dontDistribute super."atndapi";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "atp-haskell" = dontDistribute super."atp-haskell";
+ "atrans" = dontDistribute super."atrans";
+ "attempt" = dontDistribute super."attempt";
+ "atto-lisp" = dontDistribute super."atto-lisp";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-conduit" = dontDistribute super."attoparsec-conduit";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "autoexporter" = dontDistribute super."autoexporter";
+ "automitive-cse" = dontDistribute super."automitive-cse";
+ "automotive-cse" = dontDistribute super."automotive-cse";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "avatar-generator" = dontDistribute super."avatar-generator";
+ "average" = dontDistribute super."average";
+ "avers-server" = doDistribute super."avers-server_0_0_3";
+ "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-prelude" = doDistribute super."base-prelude_0_1_21";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bbi" = dontDistribute super."bbi";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beam" = dontDistribute super."beam";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "bench" = dontDistribute super."bench";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "bencoding" = dontDistribute super."bencoding";
+ "bento" = dontDistribute super."bento";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibdb" = dontDistribute super."bibdb";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bighugethesaurus" = dontDistribute super."bighugethesaurus";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-enum" = dontDistribute super."binary-enum";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-wlc" = dontDistribute super."bindings-wlc";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "bindynamic" = dontDistribute super."bindynamic";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bini" = dontDistribute super."bini";
+ "bio" = dontDistribute super."bio";
+ "biohazard" = dontDistribute super."biohazard";
+ "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit";
+ "biosff" = dontDistribute super."biosff";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-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" = dontDistribute super."bloodhound";
+ "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
+ "bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "bond" = dontDistribute super."bond";
+ "bond-haskell" = dontDistribute super."bond-haskell";
+ "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boombox" = dontDistribute super."boombox";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "botpp" = dontDistribute super."botpp";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = doDistribute super."bower-json_0_7_0_0";
+ "bowntz" = dontDistribute super."bowntz";
+ "bpann" = dontDistribute super."bpann";
+ "braid" = dontDistribute super."braid";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "buffer-pipe" = dontDistribute super."buffer-pipe";
+ "buffon" = dontDistribute super."buffon";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "butterflies" = dontDistribute super."butterflies";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_27_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-info" = dontDistribute super."cabal-info";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "cacophony" = doDistribute super."cacophony_0_4_0";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camfort" = dontDistribute super."camfort";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-listen-http" = dontDistribute super."canteven-listen-http";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "canteven-template" = dontDistribute super."canteven-template";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "car-pool" = dontDistribute super."car-pool";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
+ "cartel" = doDistribute super."cartel_0_14_2_8";
+ "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "casr-logbook" = dontDistribute super."casr-logbook";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "category-printf" = dontDistribute super."category-printf";
+ "category-traced" = dontDistribute super."category-traced";
+ "cayley-dickson" = dontDistribute super."cayley-dickson";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "certificate" = dontDistribute super."certificate";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = doDistribute super."cgi_3001_2_2_3";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate-highlight" = dontDistribute super."cheapskate-highlight";
+ "cheapskate-lucid" = dontDistribute super."cheapskate-lucid";
+ "cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chorale" = dontDistribute super."chorale";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "ciphersaber2" = dontDistribute super."ciphersaber2";
+ "circ" = dontDistribute super."circ";
+ "circlehs" = dontDistribute super."circlehs";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clang-pure" = dontDistribute super."clang-pure";
+ "clanki" = dontDistribute super."clanki";
+ "clarifai" = dontDistribute super."clarifai";
+ "clash" = dontDistribute super."clash";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
+ "clock" = doDistribute super."clock_0_6_0_1";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "clumpiness" = dontDistribute super."clumpiness";
+ "cluss" = dontDistribute super."cluss";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmph" = dontDistribute super."cmph";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "color-counter" = dontDistribute super."color-counter";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commander" = dontDistribute super."commander";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "compensated" = dontDistribute super."compensated";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-ltr" = dontDistribute super."compose-ltr";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = dontDistribute super."concurrent-extra";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-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";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constraint-classes" = dontDistribute super."constraint-classes";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consumers" = dontDistribute super."consumers";
+ "container" = dontDistribute super."container";
+ "container-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";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convert" = dontDistribute super."convert";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copilot-theorem" = dontDistribute super."copilot-theorem";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplex-hs" = dontDistribute super."cplex-hs";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_19_3";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "craze" = dontDistribute super."craze";
+ "crc" = dontDistribute super."crc";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = doDistribute super."cron_0_3_2";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-enigma" = dontDistribute super."crypto-enigma";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptohash" = doDistribute super."cryptohash_0_11_6";
+ "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
+ "cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
+ "cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
+ "cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
+ "cryptonite-openssl" = dontDistribute super."cryptonite-openssl";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-table" = dontDistribute super."csv-table";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3d11binding" = dontDistribute super."d3d11binding";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "danibot" = dontDistribute super."danibot";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = doDistribute super."darcs_2_10_3";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-base" = dontDistribute super."data-base";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-construction" = dontDistribute super."data-construction";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-extra" = dontDistribute super."data-default-extra";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
+ "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
+ "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
+ "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
+ "data-default-instances-text" = dontDistribute super."data-default-instances-text";
+ "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
+ "data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-embed" = dontDistribute super."data-embed";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extend-generic" = dontDistribute super."data-extend-generic";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-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-or" = dontDistribute super."data-or";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-repr" = dontDistribute super."data-repr";
+ "data-result" = dontDistribute super."data-result";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-rtuple" = dontDistribute super."data-rtuple";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "dataurl" = dontDistribute super."dataurl";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawdle" = dontDistribute super."dawdle";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = doDistribute super."dbmigrations_1_0";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-babel" = dontDistribute super."ddc-core-babel";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "debug-time" = dontDistribute super."debug-time";
+ "decepticons" = dontDistribute super."decepticons";
+ "decimal-arithmetic" = dontDistribute super."decimal-arithmetic";
+ "declarative" = doDistribute super."declarative_0_1_0_1";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deepcontrol" = dontDistribute super."deepcontrol";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = doDistribute super."dejafu_0_2_0_0";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delay" = dontDistribute super."delay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delimiter-separated" = dontDistribute super."delimiter-separated";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
+ "dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-monoid" = dontDistribute super."derive-monoid";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-reflex" = dontDistribute super."diagrams-reflex";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "diagrams-wx" = dontDistribute super."diagrams-wx";
+ "dialog" = dontDistribute super."dialog";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-gestalt" = dontDistribute super."diff-gestalt";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
+ "dimensional-codata" = dontDistribute super."dimensional-codata";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discogs-haskell" = dontDistribute super."discogs-haskell";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-closure" = dontDistribute super."distributed-closure";
+ "distributed-process" = doDistribute super."distributed-process_0_5_5_1";
+ "distributed-process-async" = dontDistribute super."distributed-process-async";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-client-server" = dontDistribute super."distributed-process-client-server";
+ "distributed-process-ekg" = dontDistribute super."distributed-process-ekg";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-lifted" = dontDistribute super."distributed-process-lifted";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet";
+ "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor";
+ "distributed-process-task" = dontDistribute super."distributed-process-task";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "dixi" = doDistribute super."dixi_0_6_0_5";
+ "djembe" = dontDistribute super."djembe";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "doctest" = doDistribute super."doctest_0_10_1";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-parser" = dontDistribute super."dom-parser";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = doDistribute super."dotenv_0_1_0_9";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dotnet-timespan" = dontDistribute super."dotnet-timespan";
+ "double-metaphone" = dontDistribute super."double-metaphone";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "dpor" = dontDistribute super."dpor";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynobud" = dontDistribute super."dynobud";
+ "dywapitchtrack" = dontDistribute super."dywapitchtrack";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-bitcoin" = dontDistribute super."easy-bitcoin";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editpipe" = dontDistribute super."editpipe";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "eithers" = dontDistribute super."eithers";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elision" = dontDistribute super."elision";
+ "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-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";
+ "envelope" = dontDistribute super."envelope";
+ "envparse" = dontDistribute super."envparse";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-analyze" = dontDistribute super."error-analyze";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "error-util" = dontDistribute super."error-util";
+ "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance";
+ "ersatz" = dontDistribute super."ersatz";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = doDistribute super."ether_0_3_1_1";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
+ "eventstore" = doDistribute super."eventstore_0_10_0_2";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
+ "exception-hierarchy" = dontDistribute super."exception-hierarchy";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "existential" = dontDistribute super."existential";
+ "exists" = dontDistribute super."exists";
+ "exit-codes" = dontDistribute super."exit-codes";
+ "exp-extended" = dontDistribute super."exp-extended";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_4_6";
+ "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-builder" = doDistribute super."fast-builder_0_0_0_4";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fca" = dontDistribute super."fca";
+ "fcache" = dontDistribute super."fcache";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "filediff" = dontDistribute super."filediff";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-clumpiness" = dontDistribute super."find-clumpiness";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "finite-typelits" = dontDistribute super."finite-typelits";
+ "first-and-last" = dontDistribute super."first-and-last";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixfile" = dontDistribute super."fixfile";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-maybe" = dontDistribute super."flat-maybe";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flat-tex" = dontDistribute super."flat-tex";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fltkhs-demos" = dontDistribute super."fltkhs-demos";
+ "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos";
+ "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples";
+ "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fn" = doDistribute super."fn_0_2_0_2";
+ "fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_1_6";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "fordo" = dontDistribute super."fordo";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "formura" = dontDistribute super."formura";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "foscam-directory" = dontDistribute super."foscam-directory";
+ "foscam-filename" = dontDistribute super."foscam-filename";
+ "foscam-sort" = dontDistribute super."foscam-sort";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = dontDistribute super."fpco-api";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "freddy" = dontDistribute super."freddy";
+ "free-concurrent" = dontDistribute super."free-concurrent";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "free-vl" = dontDistribute super."free-vl";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresco-binding" = dontDistribute super."fresco-binding";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friday-scale-dct" = dontDistribute super."friday-scale-dct";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frown" = dontDistribute super."frown";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funbot-git-hook" = dontDistribute super."funbot-git-hook";
+ "funcons-tools" = dontDistribute super."funcons-tools";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functional-kmp" = dontDistribute super."functional-kmp";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functor-utils" = dontDistribute super."functor-utils";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gdo" = dontDistribute super."gdo";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gelatin" = dontDistribute super."gelatin";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_9_0";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-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-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";
+ "ghc-dump-tree" = dontDistribute super."ghc-dump-tree";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-options" = dontDistribute super."ghc-options";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_5_1";
+ "ghcjs-ajax" = dontDistribute super."ghcjs-ajax";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-hplay" = dontDistribute super."ghcjs-hplay";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gi-atk" = dontDistribute super."gi-atk";
+ "gi-cairo" = dontDistribute super."gi-cairo";
+ "gi-gdk" = dontDistribute super."gi-gdk";
+ "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf";
+ "gi-gio" = dontDistribute super."gi-gio";
+ "gi-girepository" = dontDistribute super."gi-girepository";
+ "gi-glib" = dontDistribute super."gi-glib";
+ "gi-gobject" = dontDistribute super."gi-gobject";
+ "gi-gst" = dontDistribute super."gi-gst";
+ "gi-gstaudio" = dontDistribute super."gi-gstaudio";
+ "gi-gstbase" = dontDistribute super."gi-gstbase";
+ "gi-gstvideo" = dontDistribute super."gi-gstvideo";
+ "gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
+ "gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
+ "gi-notify" = dontDistribute super."gi-notify";
+ "gi-pango" = dontDistribute super."gi-pango";
+ "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";
+ "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_20160114";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-embed" = dontDistribute super."git-embed";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-jump" = dontDistribute super."git-jump";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitHUD" = dontDistribute super."gitHUD";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-release" = dontDistribute super."github-release";
+ "github-utils" = dontDistribute super."github-utils";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
+ "givegif" = dontDistribute super."givegif";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glicko" = dontDistribute super."glicko";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnss-converters" = dontDistribute super."gnss-converters";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "goa" = dontDistribute super."goa";
+ "goal-core" = dontDistribute super."goal-core";
+ "goal-geometry" = dontDistribute super."goal-geometry";
+ "goal-probability" = dontDistribute super."goal-probability";
+ "goal-simulation" = dontDistribute super."goal-simulation";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "gogol" = dontDistribute super."gogol";
+ "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer";
+ "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller";
+ "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer";
+ "gogol-admin-directory" = dontDistribute super."gogol-admin-directory";
+ "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration";
+ "gogol-admin-reports" = dontDistribute super."gogol-admin-reports";
+ "gogol-adsense" = dontDistribute super."gogol-adsense";
+ "gogol-adsense-host" = dontDistribute super."gogol-adsense-host";
+ "gogol-affiliates" = dontDistribute super."gogol-affiliates";
+ "gogol-analytics" = dontDistribute super."gogol-analytics";
+ "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise";
+ "gogol-android-publisher" = dontDistribute super."gogol-android-publisher";
+ "gogol-appengine" = dontDistribute super."gogol-appengine";
+ "gogol-apps-activity" = dontDistribute super."gogol-apps-activity";
+ "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar";
+ "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing";
+ "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller";
+ "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks";
+ "gogol-appstate" = dontDistribute super."gogol-appstate";
+ "gogol-autoscaler" = dontDistribute super."gogol-autoscaler";
+ "gogol-bigquery" = dontDistribute super."gogol-bigquery";
+ "gogol-billing" = dontDistribute super."gogol-billing";
+ "gogol-blogger" = dontDistribute super."gogol-blogger";
+ "gogol-books" = dontDistribute super."gogol-books";
+ "gogol-civicinfo" = dontDistribute super."gogol-civicinfo";
+ "gogol-classroom" = dontDistribute super."gogol-classroom";
+ "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace";
+ "gogol-compute" = dontDistribute super."gogol-compute";
+ "gogol-container" = dontDistribute super."gogol-container";
+ "gogol-core" = dontDistribute super."gogol-core";
+ "gogol-customsearch" = dontDistribute super."gogol-customsearch";
+ "gogol-dataflow" = dontDistribute super."gogol-dataflow";
+ "gogol-datastore" = dontDistribute super."gogol-datastore";
+ "gogol-debugger" = dontDistribute super."gogol-debugger";
+ "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager";
+ "gogol-dfareporting" = dontDistribute super."gogol-dfareporting";
+ "gogol-discovery" = dontDistribute super."gogol-discovery";
+ "gogol-dns" = dontDistribute super."gogol-dns";
+ "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids";
+ "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search";
+ "gogol-drive" = dontDistribute super."gogol-drive";
+ "gogol-fitness" = dontDistribute super."gogol-fitness";
+ "gogol-fonts" = dontDistribute super."gogol-fonts";
+ "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch";
+ "gogol-fusiontables" = dontDistribute super."gogol-fusiontables";
+ "gogol-games" = dontDistribute super."gogol-games";
+ "gogol-games-configuration" = dontDistribute super."gogol-games-configuration";
+ "gogol-games-management" = dontDistribute super."gogol-games-management";
+ "gogol-genomics" = dontDistribute super."gogol-genomics";
+ "gogol-gmail" = dontDistribute super."gogol-gmail";
+ "gogol-groups-migration" = dontDistribute super."gogol-groups-migration";
+ "gogol-groups-settings" = dontDistribute super."gogol-groups-settings";
+ "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit";
+ "gogol-latencytest" = dontDistribute super."gogol-latencytest";
+ "gogol-logging" = dontDistribute super."gogol-logging";
+ "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate";
+ "gogol-maps-engine" = dontDistribute super."gogol-maps-engine";
+ "gogol-mirror" = dontDistribute super."gogol-mirror";
+ "gogol-monitoring" = dontDistribute super."gogol-monitoring";
+ "gogol-oauth2" = dontDistribute super."gogol-oauth2";
+ "gogol-pagespeed" = dontDistribute super."gogol-pagespeed";
+ "gogol-partners" = dontDistribute super."gogol-partners";
+ "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner";
+ "gogol-plus" = dontDistribute super."gogol-plus";
+ "gogol-plus-domains" = dontDistribute super."gogol-plus-domains";
+ "gogol-prediction" = dontDistribute super."gogol-prediction";
+ "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon";
+ "gogol-pubsub" = dontDistribute super."gogol-pubsub";
+ "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress";
+ "gogol-replicapool" = dontDistribute super."gogol-replicapool";
+ "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater";
+ "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager";
+ "gogol-resourceviews" = dontDistribute super."gogol-resourceviews";
+ "gogol-shopping-content" = dontDistribute super."gogol-shopping-content";
+ "gogol-siteverification" = dontDistribute super."gogol-siteverification";
+ "gogol-spectrum" = dontDistribute super."gogol-spectrum";
+ "gogol-sqladmin" = dontDistribute super."gogol-sqladmin";
+ "gogol-storage" = dontDistribute super."gogol-storage";
+ "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer";
+ "gogol-tagmanager" = dontDistribute super."gogol-tagmanager";
+ "gogol-taskqueue" = dontDistribute super."gogol-taskqueue";
+ "gogol-translate" = dontDistribute super."gogol-translate";
+ "gogol-urlshortener" = dontDistribute super."gogol-urlshortener";
+ "gogol-useraccounts" = dontDistribute super."gogol-useraccounts";
+ "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools";
+ "gogol-youtube" = dontDistribute super."gogol-youtube";
+ "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics";
+ "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting";
+ "gooey" = dontDistribute super."gooey";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gore-and-ash" = dontDistribute super."gore-and-ash";
+ "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor";
+ "gore-and-ash-async" = dontDistribute super."gore-and-ash-async";
+ "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo";
+ "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw";
+ "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging";
+ "gore-and-ash-network" = dontDistribute super."gore-and-ash-network";
+ "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl";
+ "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpio" = dontDistribute super."gpio";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_2_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
+ "grasp" = dontDistribute super."grasp";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "graylog" = dontDistribute super."graylog";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "gremlin-haskell" = dontDistribute super."gremlin-haskell";
+ "greplicate" = dontDistribute super."greplicate";
+ "grid" = dontDistribute super."grid";
+ "gridfs" = dontDistribute super."gridfs";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groundhog-converters" = dontDistribute super."groundhog-converters";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "guid" = dontDistribute super."guid";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hPDB-examples" = dontDistribute super."hPDB-examples";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hScraper" = dontDistribute super."hScraper";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "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-leksah" = dontDistribute super."haddock-leksah";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hahp" = dontDistribute super."hahp";
+ "haiji" = dontDistribute super."haiji";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = doDistribute super."hakyll_4_7_5_2";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-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";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handa-opengl" = dontDistribute super."handa-opengl";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "handwriting" = dontDistribute super."handwriting";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "haphviz" = dontDistribute super."haphviz";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "hapstone" = dontDistribute super."hapstone";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hardware-edsl" = dontDistribute super."hardware-edsl";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harpy" = dontDistribute super."harpy";
+ "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";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline" = doDistribute super."haskeline_0_7_2_3";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-exp-parser" = dontDistribute super."haskell-exp-parser";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-gi" = dontDistribute super."haskell-gi";
+ "haskell-gi-base" = dontDistribute super."haskell-gi-base";
+ "haskell-import-graph" = dontDistribute super."haskell-import-graph";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-kubernetes" = dontDistribute super."haskell-kubernetes";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpfr" = dontDistribute super."haskell-mpfr";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = dontDistribute super."haskell-names";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-read-editor" = dontDistribute super."haskell-read-editor";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-tor" = dontDistribute super."haskell-tor";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell2010" = dontDistribute super."haskell2010";
+ "haskell98" = dontDistribute super."haskell98";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-core" = dontDistribute super."haskoin-core";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-node" = dontDistribute super."haskoin-node";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_19_6";
+ "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative";
+ "hasql-pool" = dontDistribute super."hasql-pool";
+ "hasql-postgres" = dontDistribute super."hasql-postgres";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hasql-th" = dontDistribute super."hasql-th";
+ "hasql-transaction" = dontDistribute super."hasql-transaction";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-gapi" = dontDistribute super."haste-gapi";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hastily" = dontDistribute super."hastily";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl-amazonka" = dontDistribute super."haxl-amazonka";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcoap" = dontDistribute super."hcoap";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "hdr-histogram" = dontDistribute super."hdr-histogram";
+ "headergen" = dontDistribute super."headergen";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "helix" = dontDistribute super."helix";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "heredocs" = dontDistribute super."heredocs";
+ "herf-time" = dontDistribute super."herf-time";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesh" = dontDistribute super."hesh";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfmt" = dontDistribute super."hfmt";
+ "hfoil" = dontDistribute super."hfoil";
+ "hformat" = dontDistribute super."hformat";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrev" = dontDistribute super."hgrev";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hi3status" = dontDistribute super."hi3status";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindley-milner" = dontDistribute super."hindley-milner";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify-bytestring" = dontDistribute super."hinotify-bytestring";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_3";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hip" = dontDistribute super."hip";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipchat-hs" = dontDistribute super."hipchat-hs";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hit-graph" = dontDistribute super."hit-graph";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_5_3";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hkdf" = dontDistribute super."hkdf";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hleap" = dontDistribute super."hleap";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlint" = doDistribute super."hlint_1_9_31";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17_1";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hoppy-generator" = dontDistribute super."hoppy-generator";
+ "hoppy-runtime" = dontDistribute super."hoppy-runtime";
+ "hoppy-std" = dontDistribute super."hoppy-std";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "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";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpath" = dontDistribute super."hpath";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hpdft" = dontDistribute super."hpdft";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = doDistribute super."hprotoc_2_1_12";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_23";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai" = doDistribute super."hspec-wai_0_6_5";
+ "hspec2" = dontDistribute super."hspec2";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsseccomp" = dontDistribute super."hsseccomp";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hssqlppp-th" = dontDistribute super."hssqlppp-th";
+ "hstats" = dontDistribute super."hstats";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-parse" = dontDistribute super."html-parse";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-session" = dontDistribute super."http-client-session";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-dispatch" = dontDistribute super."http-dispatch";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kinder" = dontDistribute super."http-kinder";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-response-decoder" = dontDistribute super."http-response-decoder";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-test" = dontDistribute super."http-test";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_4_5";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huckleberry" = dontDistribute super."huckleberry";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
+ "hw-bits" = dontDistribute super."hw-bits";
+ "hw-conduit" = dontDistribute super."hw-conduit";
+ "hw-diagnostics" = dontDistribute super."hw-diagnostics";
+ "hw-json" = dontDistribute super."hw-json";
+ "hw-parser" = dontDistribute super."hw-parser";
+ "hw-prim" = dontDistribute super."hw-prim";
+ "hw-rankselect" = dontDistribute super."hw-rankselect";
+ "hw-succinct" = dontDistribute super."hw-succinct";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylogen" = dontDistribute super."hylogen";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hypher" = dontDistribute super."hypher";
+ "hzaif" = dontDistribute super."hzaif";
+ "hzk" = dontDistribute super."hzk";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "ibus-hs" = dontDistribute super."ibus-hs";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna" = dontDistribute super."idna";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = doDistribute super."ig_0_6_1";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "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-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "inf-interval" = dontDistribute super."inf-interval";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-java" = dontDistribute super."inline-java";
+ "inquire" = dontDistribute super."inquire";
+ "insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "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-machine" = dontDistribute super."io-machine";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = doDistribute super."irc-client_0_2_6_0";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-dcc" = dontDistribute super."irc-dcc";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "irc-fun-types" = dontDistribute super."irc-fun-types";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iridium" = dontDistribute super."iridium";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "isohunt" = dontDistribute super."isohunt";
+ "ispositive" = dontDistribute super."ispositive";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-artifact" = dontDistribute super."ivory-artifact";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-eval" = dontDistribute super."ivory-eval";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-serialize" = dontDistribute super."ivory-serialize";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-poker" = dontDistribute super."java-poker";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javaclass" = dontDistribute super."javaclass";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_12_3";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-ast" = dontDistribute super."json-ast";
+ "json-ast-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";
+ "jwt" = doDistribute super."jwt_0_6_0";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kanji" = dontDistribute super."kanji";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katip" = dontDistribute super."katip";
+ "katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
+ "katt" = dontDistribute super."katt";
+ "kazura-queue" = dontDistribute super."kazura-queue";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = doDistribute super."keycode_0_1_1";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-ir" = dontDistribute super."lambdacube-ir";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdaya-bus" = dontDistribute super."lambdaya-bus";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c" = doDistribute super."language-c_0_4_7";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_14_7";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = doDistribute super."language-thrift_0_7_0_1";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "language-webidl" = dontDistribute super."language-webidl";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leancheck" = dontDistribute super."leancheck";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-prelude" = dontDistribute super."lens-prelude";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lens-utils" = dontDistribute super."lens-utils";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lenz" = dontDistribute super."lenz";
+ "lenz-template" = dontDistribute super."lenz-template";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lfst" = dontDistribute super."lfst";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "libravatar" = dontDistribute super."libravatar";
+ "libroman" = dontDistribute super."libroman";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxls" = dontDistribute super."libxls";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "link-relations" = dontDistribute super."link-relations";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linode" = dontDistribute super."linode";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
+ "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "list-zip-def" = dontDistribute super."list-zip-def";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "lmonad" = dontDistribute super."lmonad";
+ "lmonad-yesod" = dontDistribute super."lmonad-yesod";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located" = dontDistribute super."located";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "locked-poll" = dontDistribute super."locked-poll";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = dontDistribute super."logfloat";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-effect" = dontDistribute super."logging-effect";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logict-state" = dontDistribute super."logict-state";
+ "logplex-parse" = dontDistribute super."logplex-parse";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "lol" = dontDistribute super."lol";
+ "lol-apps" = dontDistribute super."lol-apps";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lp-diagrams" = dontDistribute super."lp-diagrams";
+ "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-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";
+ "luminance" = doDistribute super."luminance_0_9_1_2";
+ "luminance-samples" = doDistribute super."luminance-samples_0_9_1";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "macbeth-lib" = dontDistribute super."macbeth-lib";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines-binary" = dontDistribute super."machines-binary";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "managed" = doDistribute super."managed_1_0_3";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandulia" = dontDistribute super."mandulia";
+ "manifold-random" = dontDistribute super."manifold-random";
+ "manifolds" = dontDistribute super."manifolds";
+ "map-exts" = dontDistribute super."map-exts";
+ "mappy" = dontDistribute super."mappy";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matcher" = dontDistribute super."matcher";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathista" = dontDistribute super."mathista";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdapi" = dontDistribute super."mdapi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mdp" = dontDistribute super."mdp";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "megaparsec" = doDistribute super."megaparsec_4_3_0";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memory" = doDistribute super."memory_0_11";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mezzolens" = dontDistribute super."mezzolens";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = doDistribute super."microlens_0_4_2_1";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1";
+ "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1";
+ "microlens-th" = doDistribute super."microlens-th_0_3_0_2";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midair" = dontDistribute super."midair";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-string" = dontDistribute super."mime-string";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minilens" = dontDistribute super."minilens";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "mnist-idx" = dontDistribute super."mnist-idx";
+ "moan" = dontDistribute super."moan";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "mohws" = dontDistribute super."mohws";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-connect" = dontDistribute super."monad-connect";
+ "monad-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-journal" = doDistribute super."monad-journal_0_7_1";
+ "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-peel" = doDistribute super."monad-peel_0_2";
+ "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-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = doDistribute super."monad-time_0_1";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = doDistribute super."monad-unlift_0_1_2_0";
+ "monad-unlift-ref" = dontDistribute super."monad-unlift-ref";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mondo" = dontDistribute super."mondo";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "monoid-absorbing" = dontDistribute super."monoid-absorbing";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = doDistribute super."morte_1_4_2";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mountpoints" = dontDistribute super."mountpoints";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mpris" = dontDistribute super."mpris";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "mrm" = dontDistribute super."mrm";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msh" = dontDistribute super."msh";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = dontDistribute super."mtlparse";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "mulang" = dontDistribute super."mulang";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiaddr" = dontDistribute super."multiaddr";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur" = dontDistribute super."murmur";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-probability" = doDistribute super."mwc-probability_1_0_3";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-erl" = dontDistribute super."nano-erl";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanovg" = dontDistribute super."nanovg";
+ "nanq" = dontDistribute super."nanq";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "native" = dontDistribute super."native";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "neat" = dontDistribute super."neat";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network-address" = dontDistribute super."network-address";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-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-multicast" = doDistribute super."network-multicast_0_1_0";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "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-dk" = doDistribute super."numtype-dk_0_5";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oanda-rest-api" = dontDistribute super."oanda-rest-api";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = doDistribute super."objective_1_0_5";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octane" = dontDistribute super."octane";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "oidc-client" = dontDistribute super."oidc-client";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "opaleye-trans" = dontDistribute super."opaleye-trans";
+ "open-haddock" = dontDistribute super."open-haddock";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-signals" = dontDistribute super."open-signals";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencog-atomspace" = dontDistribute super."opencog-atomspace";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
+ "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "opensource" = dontDistribute super."opensource";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-alacarte" = dontDistribute super."operational-alacarte";
+ "operational-extra" = dontDistribute super."operational-extra";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "option" = dontDistribute super."option";
+ "optional" = dontDistribute super."optional";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
+ "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";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packman" = dontDistribute super."packman";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_16_0_2";
+ "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-include" = dontDistribute super."pandoc-include";
+ "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "paranoia" = dontDistribute super."paranoia";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-trace" = dontDistribute super."parsec-trace";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parser241" = dontDistribute super."parser241";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partage" = dontDistribute super."partage";
+ "partial" = dontDistribute super."partial";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path-io" = doDistribute super."path-io_0_2_0";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "perfecthash" = dontDistribute super."perfecthash";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
+ "persistent-audit" = dontDistribute super."persistent-audit";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-database-url" = dontDistribute super."persistent-database-url";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-iproute" = dontDistribute super."persistent-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pg-store" = dontDistribute super."pg-store";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
+ "phoityne-vscode" = dontDistribute super."phoityne-vscode";
+ "phone-numbers" = dontDistribute super."phone-numbers";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pinchot" = doDistribute super."pinchot_0_6_0_0";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bzip" = dontDistribute super."pipes-bzip";
+ "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple";
+ "pipes-transduce" = dontDistribute super."pipes-transduce";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pitchtrack" = dontDistribute super."pitchtrack";
+ "pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "plan-b" = dontDistribute super."plan-b";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plist-buddy" = dontDistribute super."plist-buddy";
+ "plivo" = dontDistribute super."plivo";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-configfile" = dontDistribute super."polar-configfile";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-control" = dontDistribute super."poly-control";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polymap" = dontDistribute super."polymap";
+ "polynom" = dontDistribute super."polynom";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pong-server" = dontDistribute super."pong-server";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pool-conduit" = dontDistribute super."pool-conduit";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-connector" = dontDistribute super."postgresql-connector";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-error-codes" = dontDistribute super."postgresql-error-codes";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-transactional" = dontDistribute super."postgresql-transactional";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "predicates" = dontDistribute super."predicates";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-compat" = dontDistribute super."prelude-compat";
+ "prelude-edsl" = dontDistribute super."prelude-edsl";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "prelude2010" = dontDistribute super."prelude2010";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "present" = dontDistribute super."present";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-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_7";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prologue" = dontDistribute super."prologue";
+ "prometheus" = dontDistribute super."prometheus";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protobuf-simple" = dontDistribute super."protobuf-simple";
+ "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12";
+ "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "protolude" = dontDistribute super."protolude";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxied" = dontDistribute super."proxied";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = doDistribute super."psc-ide_0_5_0";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psql-helpers" = dontDistribute super."psql-helpers";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = doDistribute super."publicsuffix_0_20151212";
+ "publicsuffixlist" = dontDistribute super."publicsuffixlist";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "punycode" = dontDistribute super."punycode";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = doDistribute super."purescript_0_7_6_1";
+ "purescript-bridge" = dontDistribute super."purescript-bridge";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "pursuit-client" = dontDistribute super."pursuit-client";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "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-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = dontDistribute super."quickpull";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "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" = doDistribute super."rainbow_0_26_0_6";
+ "rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_4";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "random-tree" = dontDistribute super."random-tree";
+ "random-variates" = dontDistribute super."random-variates";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratel" = dontDistribute super."ratel";
+ "ratel-wai" = dontDistribute super."ratel-wai";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactivity" = dontDistribute super."reactivity";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "read-env-var" = dontDistribute super."read-env-var";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "readshp" = dontDistribute super."readshp";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "rebase" = dontDistribute super."rebase";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = doDistribute super."redis-io_0_5_2";
+ "redis-job-queue" = dontDistribute super."redis-job-queue";
+ "redis-resp" = doDistribute super."redis-resp_0_3_2";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reedsolomon" = dontDistribute super."reedsolomon";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-animation" = dontDistribute super."reflex-animation";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-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" = doDistribute super."regex-tdfa_1_2_1";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-type" = dontDistribute super."regex-type";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr" = dontDistribute super."regexpr";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
+ "regress" = dontDistribute super."regress";
+ "regular" = dontDistribute super."regular";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "regular-xmlpickler" = dontDistribute super."regular-xmlpickler";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch" = dontDistribute super."rematch";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remote-json" = dontDistribute super."remote-json";
+ "remote-json-client" = dontDistribute super."remote-json-client";
+ "remote-json-server" = dontDistribute super."remote-json-server";
+ "remote-monad" = dontDistribute super."remote-monad";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "reqcatcher" = dontDistribute super."reqcatcher";
+ "request-monad" = dontDistribute super."request-monad";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-pool-monad" = dontDistribute super."resource-pool-monad";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "respond" = dontDistribute super."respond";
+ "rest-core" = doDistribute super."rest-core_0_37";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_19_0_1";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-arguments" = dontDistribute super."reverse-arguments";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = doDistribute super."riak_0_9_1_1";
+ "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rlist" = dontDistribute super."rlist";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trie" = dontDistribute super."rose-trie";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "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";
+ "rss-conduit" = dontDistribute super."rss-conduit";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtcm" = dontDistribute super."rtcm";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s-cargot" = dontDistribute super."s-cargot";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-length" = dontDistribute super."safe-length";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "sampling" = dontDistribute super."sampling";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandlib" = dontDistribute super."sandlib";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sarsi" = dontDistribute super."sarsi";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbvPlugin" = dontDistribute super."sbvPlugin";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = doDistribute super."scalpel_0_2_1_1";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scanner" = dontDistribute super."scanner";
+ "scanner-attoparsec" = dontDistribute super."scanner-attoparsec";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_10_2";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-params-parser" = dontDistribute super."scotty-params-parser";
+ "scotty-resource" = dontDistribute super."scotty-resource";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scotty-view" = dontDistribute super."scotty-view";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scrape-changes" = dontDistribute super."scrape-changes";
+ "scrobble" = dontDistribute super."scrobble";
+ "scroll" = dontDistribute super."scroll";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2-cairo" = dontDistribute super."sdl2-cairo";
+ "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
+ "sdl2-compositor" = dontDistribute super."sdl2-compositor";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = doDistribute super."second-transfer_0_7_1_0";
+ "secp256k1" = dontDistribute super."secp256k1";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver-range" = dontDistribute super."semver-range";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensei" = dontDistribute super."sensei";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
+ "serv" = dontDistribute super."serv";
+ "serv-wai" = dontDistribute super."serv-wai";
+ "servant" = doDistribute super."servant_0_4_4_7";
+ "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7";
+ "servant-cassava" = dontDistribute super."servant-cassava";
+ "servant-client" = doDistribute super."servant-client_0_4_4_7";
+ "servant-csharp" = dontDistribute super."servant-csharp";
+ "servant-docs" = doDistribute super."servant-docs_0_4_4_7";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-elm" = dontDistribute super."servant-elm";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-foreign" = dontDistribute super."servant-foreign";
+ "servant-github" = dontDistribute super."servant-github";
+ "servant-haxl-client" = dontDistribute super."servant-haxl-client";
+ "servant-js" = dontDistribute super."servant-js";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-quickcheck" = dontDistribute super."servant-quickcheck";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = doDistribute super."servant-server_0_4_4_7";
+ "servant-swagger" = doDistribute super."servant-swagger_0_1_2";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = doDistribute super."set-extra_1_3_2";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setgame" = dontDistribute super."setgame";
+ "setops" = dontDistribute super."setops";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-grammar" = dontDistribute super."sexp-grammar";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_8_6";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shake-persist" = dontDistribute super."shake-persist";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare-babel" = dontDistribute super."shakespeare-babel";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-i18n" = dontDistribute super."shakespeare-i18n";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shakespeare-text" = dontDistribute super."shakespeare-text";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "sharc-timbre" = dontDistribute super."sharc-timbre";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shine" = dontDistribute super."shine";
+ "shine-varying" = dontDistribute super."shine-varying";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplest-sqlite" = dontDistribute super."simplest-sqlite";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skeleton" = dontDistribute super."skeleton";
+ "skell" = dontDistribute super."skell";
+ "skemmtun" = dontDistribute super."skemmtun";
+ "skulk" = dontDistribute super."skulk";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "sleep" = dontDistribute super."sleep";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-language" = dontDistribute super."snap-language";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-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" = doDistribute super."socket_0_5_3_1";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "socketson" = dontDistribute super."socketson";
+ "soegtk" = dontDistribute super."soegtk";
+ "solr" = dontDistribute super."solr";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparkle" = dontDistribute super."sparkle";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "sproxy" = dontDistribute super."sproxy";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "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" = doDistribute super."stack_1_0_2";
+ "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stack-run" = dontDistribute super."stack-run";
+ "stackage-curator" = doDistribute super."stackage-curator_0_13_3";
+ "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-record" = dontDistribute super."state-record";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-client" = dontDistribute super."statsd-client";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
+ "str" = dontDistribute super."str";
+ "stratosphere" = dontDistribute super."stratosphere";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream" = dontDistribute super."stream";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-png" = dontDistribute super."streaming-png";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streaming-wai" = dontDistribute super."streaming-wai";
+ "strict-base-types" = doDistribute super."strict-base-types_0_4_0";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "string-typelits" = dontDistribute super."string-typelits";
+ "stringlike" = dontDistribute super."stringlike";
+ "stringprep" = dontDistribute super."stringprep";
+ "strings" = dontDistribute super."strings";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "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";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "super-user-spark" = dontDistribute super."super-user-spark";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "supplemented" = dontDistribute super."supplemented";
+ "suspend" = dontDistribute super."suspend";
+ "svg-builder" = dontDistribute super."svg-builder";
+ "svg-tree" = doDistribute super."svg-tree_0_3_2";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger2" = doDistribute super."swagger2_1_2_1";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "symengine-hs" = dontDistribute super."symengine-hs";
+ "sync" = dontDistribute super."sync";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-filter" = dontDistribute super."synthesizer-filter";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-canonicalpath" = dontDistribute super."system-canonicalpath";
+ "system-command" = dontDistribute super."system-command";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-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";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "tai64" = dontDistribute super."tai64";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tardis" = doDistribute super."tardis_0_3_0_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "task-distribution" = dontDistribute super."task-distribution";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0";
+ "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tateti-tateti" = dontDistribute super."tateti-tateti";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "telegram-api" = dontDistribute super."telegram-api";
+ "teleport" = dontDistribute super."teleport";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "template-yj" = dontDistribute super."template-yj";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempo" = dontDistribute super."tempo";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo" = doDistribute super."terminfo_0_4_0_2";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "termplot" = dontDistribute super."termplot";
+ "terntup" = dontDistribute super."terntup";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-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-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-postgresql" = dontDistribute super."text-postgresql";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-region" = dontDistribute super."text-region";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "textual" = dontDistribute super."textual";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-cas" = dontDistribute super."th-cas";
+ "th-context" = dontDistribute super."th-context";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-kinds-fork" = dontDistribute super."th-kinds-fork";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "th-utilities" = dontDistribute super."th-utilities";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-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";
+ "timemap" = dontDistribute super."timemap";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = doDistribute super."tinylog_0_12_1";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "tiphys" = dontDistribute super."tiphys";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls-debug" = doDistribute super."tls-debug_0_4_1";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "total" = dontDistribute super."total";
+ "total-alternative" = dontDistribute super."total-alternative";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "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-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-eff" = dontDistribute super."transformers-eff";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "transient-universe" = dontDistribute super."transient-universe";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-fun" = dontDistribute super."tree-fun";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treersec" = dontDistribute super."treersec";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "tripLL" = dontDistribute super."tripLL";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslib" = dontDistribute super."tslib";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttask" = dontDistribute super."ttask";
+ "tttool" = doDistribute super."tttool_1_5_1";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple" = dontDistribute super."tuple";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "turing" = dontDistribute super."turing";
+ "turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle-options" = dontDistribute super."turtle-options";
+ "tweak" = dontDistribute super."tweak";
+ "twee" = dontDistribute super."twee";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twentyseven" = dontDistribute super."twentyseven";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cache" = dontDistribute super."type-cache";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-combinators" = dontDistribute super."type-combinators";
+ "type-combinators-quote" = dontDistribute super."type-combinators-quote";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-fun" = dontDistribute super."type-fun";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
+ "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";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_1_0";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "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";
+ "uncertain" = dontDistribute super."uncertain";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "unfoldable-restricted" = dontDistribute super."unfoldable-restricted";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-show" = dontDistribute super."unicode-show";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union" = dontDistribute super."union";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique" = dontDistribute super."unique";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "unit-constraint" = dontDistribute super."unit-constraint";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unordered-graphs" = dontDistribute super."unordered-graphs";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unsequential" = dontDistribute super."unsequential";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "users" = doDistribute super."users_0_4_0_0";
+ "users-persistent" = doDistribute super."users-persistent_0_4_0_0";
+ "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0";
+ "users-test" = doDistribute super."users-test_0_4_0_0";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcatt" = dontDistribute super."vcatt";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-sized" = dontDistribute super."vector-sized";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = dontDistribute super."vector-space-points";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verdict" = dontDistribute super."verdict";
+ "verdict-json" = dontDistribute super."verdict-json";
+ "verilog" = dontDistribute super."verilog";
+ "versions" = dontDistribute super."versions";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
+ "vinyl-plus" = dontDistribute super."vinyl-plus";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "vinyl-vectors" = dontDistribute super."vinyl-vectors";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "visibility" = dontDistribute super."visibility";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vrpn" = dontDistribute super."vrpn";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "vulkan" = dontDistribute super."vulkan";
+ "wacom-daemon" = dontDistribute super."wacom-daemon";
+ "waddle" = dontDistribute super."waddle";
+ "wai-accept-language" = dontDistribute super."wai-accept-language";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-devel" = dontDistribute super."wai-devel";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_2";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-session-alt" = dontDistribute super."wai-session-alt";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-thrift" = dontDistribute super."wai-thrift";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_2_2";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-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-angular" = doDistribute super."webdriver-angular_0_1_9";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webfinger-client" = dontDistribute super."webfinger-client";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "werewolf" = dontDistribute super."werewolf";
+ "werewolf-slack" = dontDistribute super."werewolf-slack";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wigner-symbols" = dontDistribute super."wigner-symbols";
+ "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";
+ "with-location" = doDistribute super."with-location_0_0_0";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
+ "word24" = dontDistribute super."word24";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "workflow-osx" = dontDistribute super."workflow-osx";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsdl" = dontDistribute super."wsdl";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-util" = dontDistribute super."x509-util";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdcc" = dontDistribute super."xdcc";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml" = doDistribute super."xhtml_3000_2_1";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsx-tabular" = dontDistribute super."xlsx-tabular";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-query" = dontDistribute super."xml-query";
+ "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit";
+ "xml-query-xml-types" = dontDistribute super."xml-query-xml-types";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "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-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_3";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-csp" = dontDistribute super."yesod-csp";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
+ "yesod-job-queue" = dontDistribute super."yesod-job-queue";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-raml-bin" = dontDistribute super."yesod-raml-bin";
+ "yesod-raml-docs" = dontDistribute super."yesod-raml-docs";
+ "yesod-raml-mock" = dontDistribute super."yesod-raml-mock";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoctoparsec" = dontDistribute super."yoctoparsec";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zerobin" = dontDistribute super."zerobin";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zim-parser" = doDistribute super."zim-parser_0_1_0_0";
+ "zip" = dontDistribute super."zip";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipkin" = dontDistribute super."zipkin";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix
new file mode 100644
index 00000000000..4b25949f41f
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-5.18.nix
@@ -0,0 +1,8209 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: {
+
+ # core libraries provided by the compiler
+ Cabal = null;
+ array = null;
+ base = null;
+ bin-package-db = null;
+ binary = null;
+ bytestring = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ ghc-prim = null;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ time = null;
+ transformers = null;
+ unix = null;
+
+ # lts-5.18 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AFSM" = dontDistribute super."AFSM";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_5";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "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";
+ "ChannelT" = dontDistribute super."ChannelT";
+ "Chart" = doDistribute super."Chart_1_5_4";
+ "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4";
+ "Chart-diagrams" = dontDistribute super."Chart-diagrams";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "ContextAlgebra" = dontDistribute super."ContextAlgebra";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreDump" = dontDistribute super."CoreDump";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = doDistribute super."Earley_0_10_1_0";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForestStructures" = dontDistribute super."ForestStructures";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
+ "Fractaler" = dontDistribute super."Fractaler";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLM" = dontDistribute super."GLM";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "Gifcurry" = dontDistribute super."Gifcurry";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
+ "HaTeX-meta" = dontDistribute super."HaTeX-meta";
+ "HaTeX-qq" = dontDistribute super."HaTeX-qq";
+ "HaVSA" = dontDistribute super."HaVSA";
+ "Hach" = dontDistribute super."Hach";
+ "HackMail" = dontDistribute super."HackMail";
+ "Haggressive" = dontDistribute super."Haggressive";
+ "HandlerSocketClient" = dontDistribute super."HandlerSocketClient";
+ "Hangman" = dontDistribute super."Hangman";
+ "HarmTrace" = dontDistribute super."HarmTrace";
+ "HarmTrace-Base" = dontDistribute super."HarmTrace-Base";
+ "HasGP" = dontDistribute super."HasGP";
+ "Haschoo" = dontDistribute super."Haschoo";
+ "Hashell" = dontDistribute super."Hashell";
+ "HaskRel" = dontDistribute super."HaskRel";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hate" = dontDistribute super."Hate";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "HerbiePlugin" = dontDistribute super."HerbiePlugin";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Hish" = dontDistribute super."Hish";
+ "Histogram" = dontDistribute super."Histogram";
+ "Hmpf" = dontDistribute super."Hmpf";
+ "Hoed" = dontDistribute super."Hoed";
+ "HoleyMonoid" = dontDistribute super."HoleyMonoid";
+ "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution";
+ "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce";
+ "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine";
+ "Holumbus-Storage" = dontDistribute super."Holumbus-Storage";
+ "Homology" = dontDistribute super."Homology";
+ "HongoDB" = dontDistribute super."HongoDB";
+ "HostAndPort" = dontDistribute super."HostAndPort";
+ "Hricket" = dontDistribute super."Hricket";
+ "Hs2lib" = dontDistribute super."Hs2lib";
+ "HsASA" = dontDistribute super."HsASA";
+ "HsHaruPDF" = dontDistribute super."HsHaruPDF";
+ "HsHyperEstraier" = dontDistribute super."HsHyperEstraier";
+ "HsJudy" = dontDistribute super."HsJudy";
+ "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "HulkImport" = dontDistribute super."HulkImport";
+ "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres";
+ "IDynamic" = dontDistribute super."IDynamic";
+ "IFS" = dontDistribute super."IFS";
+ "INblobs" = dontDistribute super."INblobs";
+ "IOR" = dontDistribute super."IOR";
+ "IORefCAS" = dontDistribute super."IORefCAS";
+ "IOSpec" = dontDistribute super."IOSpec";
+ "IcoGrid" = dontDistribute super."IcoGrid";
+ "Imlib" = dontDistribute super."Imlib";
+ "ImperativeHaskell" = dontDistribute super."ImperativeHaskell";
+ "IndentParser" = dontDistribute super."IndentParser";
+ "IndexedList" = dontDistribute super."IndexedList";
+ "InfixApplicative" = dontDistribute super."InfixApplicative";
+ "Interpolation" = dontDistribute super."Interpolation";
+ "Interpolation-maxs" = dontDistribute super."Interpolation-maxs";
+ "Irc" = dontDistribute super."Irc";
+ "IrrHaskell" = dontDistribute super."IrrHaskell";
+ "IsNull" = dontDistribute super."IsNull";
+ "JSON-Combinator" = dontDistribute super."JSON-Combinator";
+ "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples";
+ "JSONb" = dontDistribute super."JSONb";
+ "JYU-Utils" = dontDistribute super."JYU-Utils";
+ "JackMiniMix" = dontDistribute super."JackMiniMix";
+ "Javasf" = dontDistribute super."Javasf";
+ "Javav" = dontDistribute super."Javav";
+ "JsContracts" = dontDistribute super."JsContracts";
+ "JsonGrammar" = dontDistribute super."JsonGrammar";
+ "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JunkDB" = dontDistribute super."JunkDB";
+ "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
+ "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
+ "JustParse" = dontDistribute super."JustParse";
+ "KMP" = dontDistribute super."KMP";
+ "KSP" = dontDistribute super."KSP";
+ "Kalman" = dontDistribute super."Kalman";
+ "KdTree" = dontDistribute super."KdTree";
+ "Ketchup" = dontDistribute super."Ketchup";
+ "KiCS" = dontDistribute super."KiCS";
+ "KiCS-debugger" = dontDistribute super."KiCS-debugger";
+ "KiCS-prophecy" = dontDistribute super."KiCS-prophecy";
+ "Kleislify" = dontDistribute super."Kleislify";
+ "Konf" = dontDistribute super."Konf";
+ "Kriens" = dontDistribute super."Kriens";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LATS" = dontDistribute super."LATS";
+ "LDAP" = dontDistribute super."LDAP";
+ "LRU" = dontDistribute super."LRU";
+ "LTree" = dontDistribute super."LTree";
+ "LambdaCalculator" = dontDistribute super."LambdaCalculator";
+ "LambdaHack" = dontDistribute super."LambdaHack";
+ "LambdaINet" = dontDistribute super."LambdaINet";
+ "LambdaNet" = dontDistribute super."LambdaNet";
+ "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote";
+ "LambdaShell" = dontDistribute super."LambdaShell";
+ "Lambdajudge" = dontDistribute super."Lambdajudge";
+ "Lambdaya" = dontDistribute super."Lambdaya";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListWriter" = dontDistribute super."ListWriter";
+ "ListZipper" = dontDistribute super."ListZipper";
+ "Logic" = dontDistribute super."Logic";
+ "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees";
+ "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI";
+ "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network";
+ "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes";
+ "LslPlus" = dontDistribute super."LslPlus";
+ "Lucu" = dontDistribute super."Lucu";
+ "MASMGen" = dontDistribute super."MASMGen";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MTGBuilder" = dontDistribute super."MTGBuilder";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT" = dontDistribute super."MaybeT";
+ "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf";
+ "MaybeT-transformers" = dontDistribute super."MaybeT-transformers";
+ "MazesOfMonad" = dontDistribute super."MazesOfMonad";
+ "MeanShift" = dontDistribute super."MeanShift";
+ "Measure" = dontDistribute super."Measure";
+ "MetaHDBC" = dontDistribute super."MetaHDBC";
+ "MetaObject" = dontDistribute super."MetaObject";
+ "Metrics" = dontDistribute super."Metrics";
+ "Mhailist" = dontDistribute super."Mhailist";
+ "Michelangelo" = dontDistribute super."Michelangelo";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingK" = dontDistribute super."MissingK";
+ "MissingM" = dontDistribute super."MissingM";
+ "MissingPy" = dontDistribute super."MissingPy";
+ "Modulo" = dontDistribute super."Modulo";
+ "Moe" = dontDistribute super."Moe";
+ "MoeDict" = dontDistribute super."MoeDict";
+ "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl";
+ "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign";
+ "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign";
+ "MonadCompose" = dontDistribute super."MonadCompose";
+ "MonadLab" = dontDistribute super."MonadLab";
+ "MonadRandomLazy" = dontDistribute super."MonadRandomLazy";
+ "MonadStack" = dontDistribute super."MonadStack";
+ "Monadius" = dontDistribute super."Monadius";
+ "Monaris" = dontDistribute super."Monaris";
+ "Monatron" = dontDistribute super."Monatron";
+ "Monatron-IO" = dontDistribute super."Monatron-IO";
+ "Monocle" = dontDistribute super."Monocle";
+ "MorseCode" = dontDistribute super."MorseCode";
+ "MuCheck" = dontDistribute super."MuCheck";
+ "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit";
+ "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec";
+ "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck";
+ "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck";
+ "Munkres" = dontDistribute super."Munkres";
+ "Munkres-simple" = dontDistribute super."Munkres-simple";
+ "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid";
+ "MyPrimes" = dontDistribute super."MyPrimes";
+ "NGrams" = dontDistribute super."NGrams";
+ "NTRU" = dontDistribute super."NTRU";
+ "NXT" = dontDistribute super."NXT";
+ "NXTDSL" = dontDistribute super."NXTDSL";
+ "NanoProlog" = dontDistribute super."NanoProlog";
+ "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets";
+ "NaturalSort" = dontDistribute super."NaturalSort";
+ "NearContextAlgebra" = dontDistribute super."NearContextAlgebra";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "Ninjas" = dontDistribute super."Ninjas";
+ "NoSlow" = dontDistribute super."NoSlow";
+ "NoTrace" = dontDistribute super."NoTrace";
+ "Noise" = dontDistribute super."Noise";
+ "Nomyx" = dontDistribute super."Nomyx";
+ "Nomyx-Core" = dontDistribute super."Nomyx-Core";
+ "Nomyx-Language" = dontDistribute super."Nomyx-Language";
+ "Nomyx-Rules" = dontDistribute super."Nomyx-Rules";
+ "Nomyx-Web" = dontDistribute super."Nomyx-Web";
+ "NonEmpty" = dontDistribute super."NonEmpty";
+ "NonEmptyList" = dontDistribute super."NonEmptyList";
+ "NumLazyByteString" = dontDistribute super."NumLazyByteString";
+ "NumberSieves" = dontDistribute super."NumberSieves";
+ "NumberTheory" = dontDistribute super."NumberTheory";
+ "Numbers" = dontDistribute super."Numbers";
+ "Nussinov78" = dontDistribute super."Nussinov78";
+ "Nutri" = dontDistribute super."Nutri";
+ "OGL" = dontDistribute super."OGL";
+ "OSM" = dontDistribute super."OSM";
+ "OTP" = dontDistribute super."OTP";
+ "Object" = dontDistribute super."Object";
+ "ObjectIO" = dontDistribute super."ObjectIO";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OneTuple" = dontDistribute super."OneTuple";
+ "OpenAFP" = dontDistribute super."OpenAFP";
+ "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils";
+ "OpenAL" = dontDistribute super."OpenAL";
+ "OpenCL" = dontDistribute super."OpenCL";
+ "OpenCLRaw" = dontDistribute super."OpenCLRaw";
+ "OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PTQ" = dontDistribute super."PTQ";
+ "PUH-Project" = dontDistribute super."PUH-Project";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QLearn" = dontDistribute super."QLearn";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "Quelea" = dontDistribute super."Quelea";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_8_1";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "QuickPlot" = dontDistribute super."QuickPlot";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAlien" = doDistribute super."RNAlien_1_0_0";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RoyalMonad" = dontDistribute super."RoyalMonad";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = dontDistribute super."SVGFonts";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SimpleServer" = dontDistribute super."SimpleServer";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Slides" = dontDistribute super."Slides";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-lucid" = dontDistribute super."Spock-lucid";
+ "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tahin" = dontDistribute super."Tahin";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "Verba" = dontDistribute super."Verba";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "Vulkan" = dontDistribute super."Vulkan";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "WaveFront" = dontDistribute super."WaveFront";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordAlignment" = dontDistribute super."WordAlignment";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
+ "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" = doDistribute super."aeson_0_9_0_1";
+ "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-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
+ "aeson-prefix" = dontDistribute super."aeson-prefix";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "aeson-yak" = dontDistribute super."aeson-yak";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "ag-pictgen" = dontDistribute super."ag-pictgen";
+ "agda-server" = dontDistribute super."agda-server";
+ "agda-snippets" = dontDistribute super."agda-snippets";
+ "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = doDistribute super."airship_0_4_3_0";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-branches" = dontDistribute super."aivika-branches";
+ "aivika-distributed" = dontDistribute super."aivika-distributed";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "alga" = dontDistribute super."alga";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = doDistribute super."amazonka_1_3_7";
+ "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7";
+ "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7";
+ "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager";
+ "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7";
+ "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7";
+ "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7";
+ "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7";
+ "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7";
+ "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7";
+ "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7";
+ "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events";
+ "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7";
+ "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7";
+ "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7";
+ "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7";
+ "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7";
+ "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp";
+ "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7";
+ "amazonka-config" = doDistribute super."amazonka-config_1_3_7";
+ "amazonka-core" = doDistribute super."amazonka-core_1_3_7";
+ "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7";
+ "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7";
+ "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7";
+ "amazonka-dms" = dontDistribute super."amazonka-dms";
+ "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7";
+ "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7";
+ "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7";
+ "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7";
+ "amazonka-ecr" = dontDistribute super."amazonka-ecr";
+ "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7";
+ "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7";
+ "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7";
+ "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7";
+ "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7";
+ "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7";
+ "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7";
+ "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7";
+ "amazonka-gamelift" = dontDistribute super."amazonka-gamelift";
+ "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7";
+ "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7";
+ "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7";
+ "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7";
+ "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7";
+ "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7";
+ "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7";
+ "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7";
+ "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7";
+ "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7";
+ "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7";
+ "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering";
+ "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7";
+ "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7";
+ "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7";
+ "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7";
+ "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7";
+ "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7";
+ "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7";
+ "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7";
+ "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7";
+ "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7";
+ "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7";
+ "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7";
+ "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7";
+ "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7";
+ "amazonka-support" = doDistribute super."amazonka-support_1_3_7";
+ "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7";
+ "amazonka-test" = doDistribute super."amazonka-test_1_3_7";
+ "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7";
+ "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android" = dontDistribute super."android";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "animalcase" = dontDistribute super."animalcase";
+ "annah" = dontDistribute super."annah";
+ "annihilator" = dontDistribute super."annihilator";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansigraph" = dontDistribute super."ansigraph";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-field-json-th" = dontDistribute super."api-field-json-th";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = doDistribute super."apiary_1_4_5";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-http-client" = dontDistribute super."apiary-http-client";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "applicative-splice" = dontDistribute super."applicative-splice";
+ "apply-refact" = doDistribute super."apply-refact_0_1_0_0";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arena" = dontDistribute super."arena";
+ "arff" = dontDistribute super."arff";
+ "arghwxhaskell" = dontDistribute super."arghwxhaskell";
+ "argon" = doDistribute super."argon_0_4_0_0";
+ "argon2" = dontDistribute super."argon2";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = dontDistribute super."arithmoi";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = dontDistribute super."asn1-data";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atndapi" = dontDistribute super."atndapi";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "atp-haskell" = dontDistribute super."atp-haskell";
+ "atrans" = dontDistribute super."atrans";
+ "attempt" = dontDistribute super."attempt";
+ "atto-lisp" = dontDistribute super."atto-lisp";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-conduit" = dontDistribute super."attoparsec-conduit";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "autoexporter" = dontDistribute super."autoexporter";
+ "automitive-cse" = dontDistribute super."automitive-cse";
+ "automotive-cse" = dontDistribute super."automotive-cse";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "avatar-generator" = dontDistribute super."avatar-generator";
+ "average" = dontDistribute super."average";
+ "avers-server" = doDistribute super."avers-server_0_0_3";
+ "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-prelude" = doDistribute super."base-prelude_0_1_21";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "basic-sop" = dontDistribute super."basic-sop";
+ "baskell" = dontDistribute super."baskell";
+ "battlenet" = dontDistribute super."battlenet";
+ "battlenet-yesod" = dontDistribute super."battlenet-yesod";
+ "battleships" = dontDistribute super."battleships";
+ "bayes-stack" = dontDistribute super."bayes-stack";
+ "bbdb" = dontDistribute super."bbdb";
+ "bbi" = dontDistribute super."bbi";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beam" = dontDistribute super."beam";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "bench" = dontDistribute super."bench";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "bencoding" = dontDistribute super."bencoding";
+ "bento" = dontDistribute super."bento";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibdb" = dontDistribute super."bibdb";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bighugethesaurus" = dontDistribute super."bighugethesaurus";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-enum" = dontDistribute super."binary-enum";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-wlc" = dontDistribute super."bindings-wlc";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "bindynamic" = dontDistribute super."bindynamic";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bini" = dontDistribute super."bini";
+ "bio" = dontDistribute super."bio";
+ "biohazard" = dontDistribute super."biohazard";
+ "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit";
+ "biosff" = dontDistribute super."biosff";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-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" = dontDistribute super."bloodhound";
+ "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
+ "bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "bond" = dontDistribute super."bond";
+ "bond-haskell" = dontDistribute super."bond-haskell";
+ "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boombox" = dontDistribute super."boombox";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "botpp" = dontDistribute super."botpp";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = doDistribute super."bower-json_0_7_0_0";
+ "bowntz" = dontDistribute super."bowntz";
+ "bpann" = dontDistribute super."bpann";
+ "braid" = dontDistribute super."braid";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "buffer-pipe" = dontDistribute super."buffer-pipe";
+ "buffon" = dontDistribute super."buffon";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "butterflies" = dontDistribute super."butterflies";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_27_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-info" = dontDistribute super."cabal-info";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "cacophony" = doDistribute super."cacophony_0_4_0";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camfort" = dontDistribute super."camfort";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-listen-http" = dontDistribute super."canteven-listen-http";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "canteven-template" = dontDistribute super."canteven-template";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "car-pool" = dontDistribute super."car-pool";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "cartel" = doDistribute super."cartel_0_14_2_8";
+ "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "casr-logbook" = dontDistribute super."casr-logbook";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "category-printf" = dontDistribute super."category-printf";
+ "category-traced" = dontDistribute super."category-traced";
+ "cayley-dickson" = dontDistribute super."cayley-dickson";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "certificate" = dontDistribute super."certificate";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = doDistribute super."cgi_3001_2_2_3";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate-highlight" = dontDistribute super."cheapskate-highlight";
+ "cheapskate-lucid" = dontDistribute super."cheapskate-lucid";
+ "cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chorale" = dontDistribute super."chorale";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "ciphersaber2" = dontDistribute super."ciphersaber2";
+ "circ" = dontDistribute super."circ";
+ "circlehs" = dontDistribute super."circlehs";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clang-pure" = dontDistribute super."clang-pure";
+ "clanki" = dontDistribute super."clanki";
+ "clarifai" = dontDistribute super."clarifai";
+ "clash" = dontDistribute super."clash";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
+ "clock" = doDistribute super."clock_0_6_0_1";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "clumpiness" = dontDistribute super."clumpiness";
+ "cluss" = dontDistribute super."cluss";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmph" = dontDistribute super."cmph";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "color-counter" = dontDistribute super."color-counter";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commander" = dontDistribute super."commander";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "compensated" = dontDistribute super."compensated";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-ltr" = dontDistribute super."compose-ltr";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = dontDistribute super."concurrent-extra";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-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";
+ "configuration-tools" = dontDistribute super."configuration-tools";
+ "confsolve" = dontDistribute super."confsolve";
+ "congruence-relation" = dontDistribute super."congruence-relation";
+ "conjugateGradient" = dontDistribute super."conjugateGradient";
+ "conjure" = dontDistribute super."conjure";
+ "conlogger" = dontDistribute super."conlogger";
+ "connection-pool" = dontDistribute super."connection-pool";
+ "consistent" = dontDistribute super."consistent";
+ "console-program" = dontDistribute super."console-program";
+ "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin";
+ "constrained-categories" = dontDistribute super."constrained-categories";
+ "constrained-normal" = dontDistribute super."constrained-normal";
+ "constraint-classes" = dontDistribute super."constraint-classes";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consumers" = dontDistribute super."consumers";
+ "container" = dontDistribute super."container";
+ "container-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";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convert" = dontDistribute super."convert";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copilot-theorem" = dontDistribute super."copilot-theorem";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplex-hs" = dontDistribute super."cplex-hs";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_19_3";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "craze" = dontDistribute super."craze";
+ "crc" = dontDistribute super."crc";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = doDistribute super."cron_0_3_2";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-enigma" = dontDistribute super."crypto-enigma";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptohash" = doDistribute super."cryptohash_0_11_6";
+ "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
+ "cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
+ "cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
+ "cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
+ "cryptonite-openssl" = dontDistribute super."cryptonite-openssl";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-table" = dontDistribute super."csv-table";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3d11binding" = dontDistribute super."d3d11binding";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "danibot" = dontDistribute super."danibot";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = doDistribute super."darcs_2_10_3";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-base" = dontDistribute super."data-base";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-construction" = dontDistribute super."data-construction";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-extra" = dontDistribute super."data-default-extra";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
+ "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
+ "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
+ "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
+ "data-default-instances-text" = dontDistribute super."data-default-instances-text";
+ "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
+ "data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-embed" = dontDistribute super."data-embed";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extend-generic" = dontDistribute super."data-extend-generic";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-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-or" = dontDistribute super."data-or";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-repr" = dontDistribute super."data-repr";
+ "data-result" = dontDistribute super."data-result";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-rtuple" = dontDistribute super."data-rtuple";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "dataurl" = dontDistribute super."dataurl";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawdle" = dontDistribute super."dawdle";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = doDistribute super."dbmigrations_1_0";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-babel" = dontDistribute super."ddc-core-babel";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "debug-time" = dontDistribute super."debug-time";
+ "decepticons" = dontDistribute super."decepticons";
+ "decimal-arithmetic" = dontDistribute super."decimal-arithmetic";
+ "declarative" = doDistribute super."declarative_0_1_0_1";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deepcontrol" = dontDistribute super."deepcontrol";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = doDistribute super."dejafu_0_2_0_0";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delay" = dontDistribute super."delay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delimiter-separated" = dontDistribute super."delimiter-separated";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-state" = dontDistribute super."dependent-state";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-monoid" = dontDistribute super."derive-monoid";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams-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-tikz" = dontDistribute super."diagrams-tikz";
+ "diagrams-wx" = dontDistribute super."diagrams-wx";
+ "dialog" = dontDistribute super."dialog";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-gestalt" = dontDistribute super."diff-gestalt";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional-codata" = dontDistribute super."dimensional-codata";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discogs-haskell" = dontDistribute super."discogs-haskell";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-closure" = dontDistribute super."distributed-closure";
+ "distributed-process" = doDistribute super."distributed-process_0_5_5_1";
+ "distributed-process-async" = dontDistribute super."distributed-process-async";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-client-server" = dontDistribute super."distributed-process-client-server";
+ "distributed-process-ekg" = dontDistribute super."distributed-process-ekg";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-lifted" = dontDistribute super."distributed-process-lifted";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet";
+ "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor";
+ "distributed-process-task" = dontDistribute super."distributed-process-task";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "dixi" = doDistribute super."dixi_0_6_0_5";
+ "djembe" = dontDistribute super."djembe";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "doctest" = doDistribute super."doctest_0_10_1";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-parser" = dontDistribute super."dom-parser";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = doDistribute super."dotenv_0_1_0_9";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dotnet-timespan" = dontDistribute super."dotnet-timespan";
+ "double-metaphone" = dontDistribute super."double-metaphone";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "dpor" = dontDistribute super."dpor";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynobud" = dontDistribute super."dynobud";
+ "dywapitchtrack" = dontDistribute super."dywapitchtrack";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-bitcoin" = dontDistribute super."easy-bitcoin";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editpipe" = dontDistribute super."editpipe";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "eithers" = dontDistribute super."eithers";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elision" = dontDistribute super."elision";
+ "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-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";
+ "envelope" = dontDistribute super."envelope";
+ "envparse" = dontDistribute super."envparse";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-analyze" = dontDistribute super."error-analyze";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "error-util" = dontDistribute super."error-util";
+ "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance";
+ "ersatz" = dontDistribute super."ersatz";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = doDistribute super."ether_0_3_1_1";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
+ "eventstore" = doDistribute super."eventstore_0_10_0_2";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exception-hierarchy" = dontDistribute super."exception-hierarchy";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "existential" = dontDistribute super."existential";
+ "exists" = dontDistribute super."exists";
+ "exit-codes" = dontDistribute super."exit-codes";
+ "exp-extended" = dontDistribute super."exp-extended";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "external-sort" = dontDistribute super."external-sort";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "fadno-braids" = dontDistribute super."fadno-braids";
+ "failable-list" = dontDistribute super."failable-list";
+ "failure" = dontDistribute super."failure";
+ "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-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "filediff" = dontDistribute super."filediff";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-clumpiness" = dontDistribute super."find-clumpiness";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "finite-typelits" = dontDistribute super."finite-typelits";
+ "first-and-last" = dontDistribute super."first-and-last";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixfile" = dontDistribute super."fixfile";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-maybe" = dontDistribute super."flat-maybe";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flat-tex" = dontDistribute super."flat-tex";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fltkhs-demos" = dontDistribute super."fltkhs-demos";
+ "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos";
+ "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples";
+ "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fn" = doDistribute super."fn_0_2_0_2";
+ "fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_1_6";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "fordo" = dontDistribute super."fordo";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "formura" = dontDistribute super."formura";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "foscam-directory" = dontDistribute super."foscam-directory";
+ "foscam-filename" = dontDistribute super."foscam-filename";
+ "foscam-sort" = dontDistribute super."foscam-sort";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = dontDistribute super."fpco-api";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "freddy" = dontDistribute super."freddy";
+ "free-concurrent" = dontDistribute super."free-concurrent";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "free-vl" = dontDistribute super."free-vl";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresco-binding" = dontDistribute super."fresco-binding";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friday-scale-dct" = dontDistribute super."friday-scale-dct";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frown" = dontDistribute super."frown";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funbot-git-hook" = dontDistribute super."funbot-git-hook";
+ "funcons-tools" = dontDistribute super."funcons-tools";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functional-kmp" = dontDistribute super."functional-kmp";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functor-utils" = dontDistribute super."functor-utils";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gdo" = dontDistribute super."gdo";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gelatin" = dontDistribute super."gelatin";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_9_0";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-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-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";
+ "ghc-dump-tree" = dontDistribute super."ghc-dump-tree";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-options" = dontDistribute super."ghc-options";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix";
+ "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
+ "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
+ "ghc-server" = dontDistribute super."ghc-server";
+ "ghc-simple" = dontDistribute super."ghc-simple";
+ "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
+ "ghc-syb" = dontDistribute super."ghc-syb";
+ "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_5_1";
+ "ghcjs-ajax" = dontDistribute super."ghcjs-ajax";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-hplay" = dontDistribute super."ghcjs-hplay";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gi-atk" = dontDistribute super."gi-atk";
+ "gi-cairo" = dontDistribute super."gi-cairo";
+ "gi-gdk" = dontDistribute super."gi-gdk";
+ "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf";
+ "gi-gio" = dontDistribute super."gi-gio";
+ "gi-girepository" = dontDistribute super."gi-girepository";
+ "gi-glib" = dontDistribute super."gi-glib";
+ "gi-gobject" = dontDistribute super."gi-gobject";
+ "gi-gst" = dontDistribute super."gi-gst";
+ "gi-gstaudio" = dontDistribute super."gi-gstaudio";
+ "gi-gstbase" = dontDistribute super."gi-gstbase";
+ "gi-gstvideo" = dontDistribute super."gi-gstvideo";
+ "gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
+ "gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
+ "gi-notify" = dontDistribute super."gi-notify";
+ "gi-pango" = dontDistribute super."gi-pango";
+ "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";
+ "giphy-api" = dontDistribute super."giphy-api";
+ "gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
+ "git-all" = dontDistribute super."git-all";
+ "git-checklist" = dontDistribute super."git-checklist";
+ "git-date" = dontDistribute super."git-date";
+ "git-embed" = dontDistribute super."git-embed";
+ "git-freq" = dontDistribute super."git-freq";
+ "git-gpush" = dontDistribute super."git-gpush";
+ "git-jump" = dontDistribute super."git-jump";
+ "git-monitor" = dontDistribute super."git-monitor";
+ "git-object" = dontDistribute super."git-object";
+ "git-repair" = dontDistribute super."git-repair";
+ "git-sanity" = dontDistribute super."git-sanity";
+ "git-vogue" = dontDistribute super."git-vogue";
+ "gitHUD" = dontDistribute super."gitHUD";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-release" = dontDistribute super."github-release";
+ "github-utils" = dontDistribute super."github-utils";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
+ "givegif" = dontDistribute super."givegif";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glicko" = dontDistribute super."glicko";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnss-converters" = dontDistribute super."gnss-converters";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "goa" = dontDistribute super."goa";
+ "goal-core" = dontDistribute super."goal-core";
+ "goal-geometry" = dontDistribute super."goal-geometry";
+ "goal-probability" = dontDistribute super."goal-probability";
+ "goal-simulation" = dontDistribute super."goal-simulation";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "gogol" = dontDistribute super."gogol";
+ "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer";
+ "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller";
+ "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer";
+ "gogol-admin-directory" = dontDistribute super."gogol-admin-directory";
+ "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration";
+ "gogol-admin-reports" = dontDistribute super."gogol-admin-reports";
+ "gogol-adsense" = dontDistribute super."gogol-adsense";
+ "gogol-adsense-host" = dontDistribute super."gogol-adsense-host";
+ "gogol-affiliates" = dontDistribute super."gogol-affiliates";
+ "gogol-analytics" = dontDistribute super."gogol-analytics";
+ "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise";
+ "gogol-android-publisher" = dontDistribute super."gogol-android-publisher";
+ "gogol-appengine" = dontDistribute super."gogol-appengine";
+ "gogol-apps-activity" = dontDistribute super."gogol-apps-activity";
+ "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar";
+ "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing";
+ "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller";
+ "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks";
+ "gogol-appstate" = dontDistribute super."gogol-appstate";
+ "gogol-autoscaler" = dontDistribute super."gogol-autoscaler";
+ "gogol-bigquery" = dontDistribute super."gogol-bigquery";
+ "gogol-billing" = dontDistribute super."gogol-billing";
+ "gogol-blogger" = dontDistribute super."gogol-blogger";
+ "gogol-books" = dontDistribute super."gogol-books";
+ "gogol-civicinfo" = dontDistribute super."gogol-civicinfo";
+ "gogol-classroom" = dontDistribute super."gogol-classroom";
+ "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace";
+ "gogol-compute" = dontDistribute super."gogol-compute";
+ "gogol-container" = dontDistribute super."gogol-container";
+ "gogol-core" = dontDistribute super."gogol-core";
+ "gogol-customsearch" = dontDistribute super."gogol-customsearch";
+ "gogol-dataflow" = dontDistribute super."gogol-dataflow";
+ "gogol-datastore" = dontDistribute super."gogol-datastore";
+ "gogol-debugger" = dontDistribute super."gogol-debugger";
+ "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager";
+ "gogol-dfareporting" = dontDistribute super."gogol-dfareporting";
+ "gogol-discovery" = dontDistribute super."gogol-discovery";
+ "gogol-dns" = dontDistribute super."gogol-dns";
+ "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids";
+ "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search";
+ "gogol-drive" = dontDistribute super."gogol-drive";
+ "gogol-fitness" = dontDistribute super."gogol-fitness";
+ "gogol-fonts" = dontDistribute super."gogol-fonts";
+ "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch";
+ "gogol-fusiontables" = dontDistribute super."gogol-fusiontables";
+ "gogol-games" = dontDistribute super."gogol-games";
+ "gogol-games-configuration" = dontDistribute super."gogol-games-configuration";
+ "gogol-games-management" = dontDistribute super."gogol-games-management";
+ "gogol-genomics" = dontDistribute super."gogol-genomics";
+ "gogol-gmail" = dontDistribute super."gogol-gmail";
+ "gogol-groups-migration" = dontDistribute super."gogol-groups-migration";
+ "gogol-groups-settings" = dontDistribute super."gogol-groups-settings";
+ "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit";
+ "gogol-latencytest" = dontDistribute super."gogol-latencytest";
+ "gogol-logging" = dontDistribute super."gogol-logging";
+ "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate";
+ "gogol-maps-engine" = dontDistribute super."gogol-maps-engine";
+ "gogol-mirror" = dontDistribute super."gogol-mirror";
+ "gogol-monitoring" = dontDistribute super."gogol-monitoring";
+ "gogol-oauth2" = dontDistribute super."gogol-oauth2";
+ "gogol-pagespeed" = dontDistribute super."gogol-pagespeed";
+ "gogol-partners" = dontDistribute super."gogol-partners";
+ "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner";
+ "gogol-plus" = dontDistribute super."gogol-plus";
+ "gogol-plus-domains" = dontDistribute super."gogol-plus-domains";
+ "gogol-prediction" = dontDistribute super."gogol-prediction";
+ "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon";
+ "gogol-pubsub" = dontDistribute super."gogol-pubsub";
+ "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress";
+ "gogol-replicapool" = dontDistribute super."gogol-replicapool";
+ "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater";
+ "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager";
+ "gogol-resourceviews" = dontDistribute super."gogol-resourceviews";
+ "gogol-shopping-content" = dontDistribute super."gogol-shopping-content";
+ "gogol-siteverification" = dontDistribute super."gogol-siteverification";
+ "gogol-spectrum" = dontDistribute super."gogol-spectrum";
+ "gogol-sqladmin" = dontDistribute super."gogol-sqladmin";
+ "gogol-storage" = dontDistribute super."gogol-storage";
+ "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer";
+ "gogol-tagmanager" = dontDistribute super."gogol-tagmanager";
+ "gogol-taskqueue" = dontDistribute super."gogol-taskqueue";
+ "gogol-translate" = dontDistribute super."gogol-translate";
+ "gogol-urlshortener" = dontDistribute super."gogol-urlshortener";
+ "gogol-useraccounts" = dontDistribute super."gogol-useraccounts";
+ "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools";
+ "gogol-youtube" = dontDistribute super."gogol-youtube";
+ "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics";
+ "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting";
+ "gooey" = dontDistribute super."gooey";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gore-and-ash" = dontDistribute super."gore-and-ash";
+ "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor";
+ "gore-and-ash-async" = dontDistribute super."gore-and-ash-async";
+ "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo";
+ "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw";
+ "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging";
+ "gore-and-ash-network" = dontDistribute super."gore-and-ash-network";
+ "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl";
+ "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpio" = dontDistribute super."gpio";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_2_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphtype" = dontDistribute super."graphtype";
+ "grasp" = dontDistribute super."grasp";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "graylog" = dontDistribute super."graylog";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "gremlin-haskell" = dontDistribute super."gremlin-haskell";
+ "greplicate" = dontDistribute super."greplicate";
+ "grid" = dontDistribute super."grid";
+ "gridfs" = dontDistribute super."gridfs";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groundhog-converters" = dontDistribute super."groundhog-converters";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "guid" = dontDistribute super."guid";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hPDB-examples" = dontDistribute super."hPDB-examples";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hScraper" = dontDistribute super."hScraper";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "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-leksah" = dontDistribute super."haddock-leksah";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hahp" = dontDistribute super."hahp";
+ "haiji" = dontDistribute super."haiji";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = doDistribute super."hakyll_4_7_5_2";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-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";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handa-opengl" = dontDistribute super."handa-opengl";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "handwriting" = dontDistribute super."handwriting";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "haphviz" = dontDistribute super."haphviz";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "hapstone" = dontDistribute super."hapstone";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hardware-edsl" = dontDistribute super."hardware-edsl";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harpy" = dontDistribute super."harpy";
+ "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";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline" = doDistribute super."haskeline_0_7_2_3";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-exp-parser" = dontDistribute super."haskell-exp-parser";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-gi" = dontDistribute super."haskell-gi";
+ "haskell-gi-base" = dontDistribute super."haskell-gi-base";
+ "haskell-import-graph" = dontDistribute super."haskell-import-graph";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-kubernetes" = dontDistribute super."haskell-kubernetes";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpfr" = dontDistribute super."haskell-mpfr";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = dontDistribute super."haskell-names";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-read-editor" = dontDistribute super."haskell-read-editor";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-tor" = dontDistribute super."haskell-tor";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell2010" = dontDistribute super."haskell2010";
+ "haskell98" = dontDistribute super."haskell98";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-core" = dontDistribute super."haskoin-core";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-node" = dontDistribute super."haskoin-node";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_19_6";
+ "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative";
+ "hasql-pool" = dontDistribute super."hasql-pool";
+ "hasql-postgres" = dontDistribute super."hasql-postgres";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hasql-th" = dontDistribute super."hasql-th";
+ "hasql-transaction" = dontDistribute super."hasql-transaction";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-gapi" = dontDistribute super."haste-gapi";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hastily" = dontDistribute super."hastily";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl-amazonka" = dontDistribute super."haxl-amazonka";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcoap" = dontDistribute super."hcoap";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "hdr-histogram" = dontDistribute super."hdr-histogram";
+ "headergen" = dontDistribute super."headergen";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "helix" = dontDistribute super."helix";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "heredocs" = dontDistribute super."heredocs";
+ "herf-time" = dontDistribute super."herf-time";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesh" = dontDistribute super."hesh";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfmt" = dontDistribute super."hfmt";
+ "hfoil" = dontDistribute super."hfoil";
+ "hformat" = dontDistribute super."hformat";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrev" = dontDistribute super."hgrev";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hi3status" = dontDistribute super."hi3status";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindley-milner" = dontDistribute super."hindley-milner";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify-bytestring" = dontDistribute super."hinotify-bytestring";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_3";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hip" = dontDistribute super."hip";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipchat-hs" = dontDistribute super."hipchat-hs";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hit-graph" = dontDistribute super."hit-graph";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_5_3";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hkdf" = dontDistribute super."hkdf";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hleap" = dontDistribute super."hleap";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlint" = doDistribute super."hlint_1_9_31";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17_1";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hoppy-generator" = dontDistribute super."hoppy-generator";
+ "hoppy-runtime" = dontDistribute super."hoppy-runtime";
+ "hoppy-std" = dontDistribute super."hoppy-std";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "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";
+ "hpack" = dontDistribute super."hpack";
+ "hpaco" = dontDistribute super."hpaco";
+ "hpaco-lib" = dontDistribute super."hpaco-lib";
+ "hpage" = dontDistribute super."hpage";
+ "hpapi" = dontDistribute super."hpapi";
+ "hpaste" = dontDistribute super."hpaste";
+ "hpasteit" = dontDistribute super."hpasteit";
+ "hpath" = dontDistribute super."hpath";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hpdft" = dontDistribute super."hpdft";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = doDistribute super."hprotoc_2_1_12";
+ "hprotoc-fork" = dontDistribute super."hprotoc-fork";
+ "hps" = dontDistribute super."hps";
+ "hps-cairo" = dontDistribute super."hps-cairo";
+ "hps-kmeans" = dontDistribute super."hps-kmeans";
+ "hpuz" = dontDistribute super."hpuz";
+ "hpygments" = dontDistribute super."hpygments";
+ "hpylos" = dontDistribute super."hpylos";
+ "hpyrg" = dontDistribute super."hpyrg";
+ "hquantlib" = dontDistribute super."hquantlib";
+ "hquery" = dontDistribute super."hquery";
+ "hranker" = dontDistribute super."hranker";
+ "hreader" = dontDistribute super."hreader";
+ "hricket" = dontDistribute super."hricket";
+ "hruby" = dontDistribute super."hruby";
+ "hs-GeoIP" = dontDistribute super."hs-GeoIP";
+ "hs-blake2" = dontDistribute super."hs-blake2";
+ "hs-captcha" = dontDistribute super."hs-captcha";
+ "hs-carbon" = dontDistribute super."hs-carbon";
+ "hs-carbon-examples" = dontDistribute super."hs-carbon-examples";
+ "hs-cdb" = dontDistribute super."hs-cdb";
+ "hs-dotnet" = dontDistribute super."hs-dotnet";
+ "hs-duktape" = dontDistribute super."hs-duktape";
+ "hs-excelx" = dontDistribute super."hs-excelx";
+ "hs-ffmpeg" = dontDistribute super."hs-ffmpeg";
+ "hs-fltk" = dontDistribute super."hs-fltk";
+ "hs-gchart" = dontDistribute super."hs-gchart";
+ "hs-gen-iface" = dontDistribute super."hs-gen-iface";
+ "hs-gizapp" = dontDistribute super."hs-gizapp";
+ "hs-inspector" = dontDistribute super."hs-inspector";
+ "hs-java" = dontDistribute super."hs-java";
+ "hs-json-rpc" = dontDistribute super."hs-json-rpc";
+ "hs-logo" = dontDistribute super."hs-logo";
+ "hs-mesos" = dontDistribute super."hs-mesos";
+ "hs-nombre-generator" = dontDistribute super."hs-nombre-generator";
+ "hs-pgms" = dontDistribute super."hs-pgms";
+ "hs-php-session" = dontDistribute super."hs-php-session";
+ "hs-pkg-config" = dontDistribute super."hs-pkg-config";
+ "hs-pkpass" = dontDistribute super."hs-pkpass";
+ "hs-re" = dontDistribute super."hs-re";
+ "hs-scrape" = dontDistribute super."hs-scrape";
+ "hs-twitter" = dontDistribute super."hs-twitter";
+ "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver";
+ "hs-vcard" = dontDistribute super."hs-vcard";
+ "hs2048" = dontDistribute super."hs2048";
+ "hs2bf" = dontDistribute super."hs2bf";
+ "hs2dot" = dontDistribute super."hs2dot";
+ "hsConfigure" = dontDistribute super."hsConfigure";
+ "hsSqlite3" = dontDistribute super."hsSqlite3";
+ "hsXenCtrl" = dontDistribute super."hsXenCtrl";
+ "hsay" = dontDistribute super."hsay";
+ "hsb2hs" = dontDistribute super."hsb2hs";
+ "hsbackup" = dontDistribute super."hsbackup";
+ "hsbencher" = dontDistribute super."hsbencher";
+ "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed";
+ "hsbencher-fusion" = dontDistribute super."hsbencher-fusion";
+ "hsc2hs" = dontDistribute super."hsc2hs";
+ "hsc3" = dontDistribute super."hsc3";
+ "hsc3-auditor" = dontDistribute super."hsc3-auditor";
+ "hsc3-cairo" = dontDistribute super."hsc3-cairo";
+ "hsc3-data" = dontDistribute super."hsc3-data";
+ "hsc3-db" = dontDistribute super."hsc3-db";
+ "hsc3-dot" = dontDistribute super."hsc3-dot";
+ "hsc3-forth" = dontDistribute super."hsc3-forth";
+ "hsc3-graphs" = dontDistribute super."hsc3-graphs";
+ "hsc3-lang" = dontDistribute super."hsc3-lang";
+ "hsc3-lisp" = dontDistribute super."hsc3-lisp";
+ "hsc3-plot" = dontDistribute super."hsc3-plot";
+ "hsc3-process" = dontDistribute super."hsc3-process";
+ "hsc3-rec" = dontDistribute super."hsc3-rec";
+ "hsc3-rw" = dontDistribute super."hsc3-rw";
+ "hsc3-server" = dontDistribute super."hsc3-server";
+ "hsc3-sf" = dontDistribute super."hsc3-sf";
+ "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile";
+ "hsc3-unsafe" = dontDistribute super."hsc3-unsafe";
+ "hsc3-utils" = dontDistribute super."hsc3-utils";
+ "hscamwire" = dontDistribute super."hscamwire";
+ "hscassandra" = dontDistribute super."hscassandra";
+ "hscd" = dontDistribute super."hscd";
+ "hsclock" = dontDistribute super."hsclock";
+ "hscolour" = doDistribute super."hscolour_1_23";
+ "hscope" = dontDistribute super."hscope";
+ "hscrtmpl" = dontDistribute super."hscrtmpl";
+ "hscuid" = dontDistribute super."hscuid";
+ "hscurses" = dontDistribute super."hscurses";
+ "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex";
+ "hsdev" = dontDistribute super."hsdev";
+ "hsdif" = dontDistribute super."hsdif";
+ "hsdip" = dontDistribute super."hsdip";
+ "hsdns" = dontDistribute super."hsdns";
+ "hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai" = doDistribute super."hspec-wai_0_6_5";
+ "hspec2" = dontDistribute super."hspec2";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsseccomp" = dontDistribute super."hsseccomp";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hssqlppp-th" = dontDistribute super."hssqlppp-th";
+ "hstats" = dontDistribute super."hstats";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-parse" = dontDistribute super."html-parse";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-session" = dontDistribute super."http-client-session";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-dispatch" = dontDistribute super."http-dispatch";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kinder" = dontDistribute super."http-kinder";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-response-decoder" = dontDistribute super."http-response-decoder";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-test" = dontDistribute super."http-test";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_4_5";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huckleberry" = dontDistribute super."huckleberry";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hw-bits" = dontDistribute super."hw-bits";
+ "hw-conduit" = dontDistribute super."hw-conduit";
+ "hw-diagnostics" = dontDistribute super."hw-diagnostics";
+ "hw-json" = dontDistribute super."hw-json";
+ "hw-parser" = dontDistribute super."hw-parser";
+ "hw-prim" = dontDistribute super."hw-prim";
+ "hw-rankselect" = dontDistribute super."hw-rankselect";
+ "hw-succinct" = dontDistribute super."hw-succinct";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylogen" = dontDistribute super."hylogen";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hypher" = dontDistribute super."hypher";
+ "hzaif" = dontDistribute super."hzaif";
+ "hzk" = dontDistribute super."hzk";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "ibus-hs" = dontDistribute super."ibus-hs";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna" = dontDistribute super."idna";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = doDistribute super."ig_0_6_1";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "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-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "inf-interval" = dontDistribute super."inf-interval";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-java" = dontDistribute super."inline-java";
+ "inquire" = dontDistribute super."inquire";
+ "insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "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-machine" = dontDistribute super."io-machine";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = doDistribute super."irc-client_0_2_6_0";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-dcc" = dontDistribute super."irc-dcc";
+ "irc-fun-bot" = dontDistribute super."irc-fun-bot";
+ "irc-fun-client" = dontDistribute super."irc-fun-client";
+ "irc-fun-color" = dontDistribute super."irc-fun-color";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "irc-fun-types" = dontDistribute super."irc-fun-types";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iridium" = dontDistribute super."iridium";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "isohunt" = dontDistribute super."isohunt";
+ "ispositive" = dontDistribute super."ispositive";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-artifact" = dontDistribute super."ivory-artifact";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-eval" = dontDistribute super."ivory-eval";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-serialize" = dontDistribute super."ivory-serialize";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-poker" = dontDistribute super."java-poker";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javaclass" = dontDistribute super."javaclass";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-ast" = dontDistribute super."json-ast";
+ "json-ast-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";
+ "jwt" = doDistribute super."jwt_0_6_0";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kanji" = dontDistribute super."kanji";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katip" = dontDistribute super."katip";
+ "katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
+ "katt" = dontDistribute super."katt";
+ "kazura-queue" = dontDistribute super."kazura-queue";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = doDistribute super."keycode_0_1_1";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-ir" = dontDistribute super."lambdacube-ir";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdaya-bus" = dontDistribute super."lambdaya-bus";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c" = doDistribute super."language-c_0_4_7";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_14_7";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = doDistribute super."language-thrift_0_7_0_1";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "language-webidl" = dontDistribute super."language-webidl";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leancheck" = dontDistribute super."leancheck";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-prelude" = dontDistribute super."lens-prelude";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lens-utils" = dontDistribute super."lens-utils";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lenz" = dontDistribute super."lenz";
+ "lenz-template" = dontDistribute super."lenz-template";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lfst" = dontDistribute super."lfst";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "libravatar" = dontDistribute super."libravatar";
+ "libroman" = dontDistribute super."libroman";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxls" = dontDistribute super."libxls";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "link-relations" = dontDistribute super."link-relations";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linode" = dontDistribute super."linode";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
+ "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "list-zip-def" = dontDistribute super."list-zip-def";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "lmonad" = dontDistribute super."lmonad";
+ "lmonad-yesod" = dontDistribute super."lmonad-yesod";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located" = dontDistribute super."located";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "locked-poll" = dontDistribute super."locked-poll";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = dontDistribute super."logfloat";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-effect" = dontDistribute super."logging-effect";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logict-state" = dontDistribute super."logict-state";
+ "logplex-parse" = dontDistribute super."logplex-parse";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "lol" = dontDistribute super."lol";
+ "lol-apps" = dontDistribute super."lol-apps";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lp-diagrams" = dontDistribute super."lp-diagrams";
+ "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-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";
+ "luminance" = doDistribute super."luminance_0_9_1_2";
+ "luminance-samples" = doDistribute super."luminance-samples_0_9_1";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "macbeth-lib" = dontDistribute super."macbeth-lib";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines-binary" = dontDistribute super."machines-binary";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandulia" = dontDistribute super."mandulia";
+ "manifold-random" = dontDistribute super."manifold-random";
+ "manifolds" = dontDistribute super."manifolds";
+ "map-exts" = dontDistribute super."map-exts";
+ "mappy" = dontDistribute super."mappy";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matcher" = dontDistribute super."matcher";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathista" = dontDistribute super."mathista";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdapi" = dontDistribute super."mdapi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mdp" = dontDistribute super."mdp";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "megaparsec" = doDistribute super."megaparsec_4_3_0";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memory" = doDistribute super."memory_0_11";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mezzolens" = dontDistribute super."mezzolens";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = doDistribute super."microlens_0_4_2_1";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1";
+ "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1";
+ "microlens-th" = doDistribute super."microlens-th_0_3_0_2";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midair" = dontDistribute super."midair";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-string" = dontDistribute super."mime-string";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minilens" = dontDistribute super."minilens";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "mnist-idx" = dontDistribute super."mnist-idx";
+ "moan" = dontDistribute super."moan";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "mohws" = dontDistribute super."mohws";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-connect" = dontDistribute super."monad-connect";
+ "monad-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-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = doDistribute super."monad-time_0_1";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = doDistribute super."monad-unlift_0_1_2_0";
+ "monad-unlift-ref" = dontDistribute super."monad-unlift-ref";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mondo" = dontDistribute super."mondo";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "monoid-absorbing" = dontDistribute super."monoid-absorbing";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = doDistribute super."morte_1_4_2";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mpris" = dontDistribute super."mpris";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "mrm" = dontDistribute super."mrm";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msh" = dontDistribute super."msh";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = dontDistribute super."mtlparse";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "mulang" = dontDistribute super."mulang";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiaddr" = dontDistribute super."multiaddr";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur" = dontDistribute super."murmur";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-probability" = doDistribute super."mwc-probability_1_0_3";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-erl" = dontDistribute super."nano-erl";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanovg" = dontDistribute super."nanovg";
+ "nanq" = dontDistribute super."nanq";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "native" = dontDistribute super."native";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "neat" = dontDistribute super."neat";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network-address" = dontDistribute super."network-address";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-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-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2";
+ "network-uri-static" = dontDistribute super."network-uri-static";
+ "network-wai-router" = dontDistribute super."network-wai-router";
+ "network-websocket" = dontDistribute super."network-websocket";
+ "networked-game" = dontDistribute super."networked-game";
+ "newports" = dontDistribute super."newports";
+ "newsynth" = dontDistribute super."newsynth";
+ "newt" = dontDistribute super."newt";
+ "newtype-deriving" = dontDistribute super."newtype-deriving";
+ "newtype-th" = dontDistribute super."newtype-th";
+ "newtyper" = dontDistribute super."newtyper";
+ "nextstep-plist" = dontDistribute super."nextstep-plist";
+ "nf" = dontDistribute super."nf";
+ "ngrams-loader" = dontDistribute super."ngrams-loader";
+ "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";
+ "objective" = doDistribute super."objective_1_0_5";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octane" = dontDistribute super."octane";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "oidc-client" = dontDistribute super."oidc-client";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "opaleye-trans" = dontDistribute super."opaleye-trans";
+ "open-haddock" = dontDistribute super."open-haddock";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-signals" = dontDistribute super."open-signals";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencog-atomspace" = dontDistribute super."opencog-atomspace";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
+ "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "opensource" = dontDistribute super."opensource";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-alacarte" = dontDistribute super."operational-alacarte";
+ "operational-extra" = dontDistribute super."operational-extra";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "option" = dontDistribute super."option";
+ "optional" = dontDistribute super."optional";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
+ "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";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packman" = dontDistribute super."packman";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_16_0_2";
+ "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-include" = dontDistribute super."pandoc-include";
+ "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "paranoia" = dontDistribute super."paranoia";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-trace" = dontDistribute super."parsec-trace";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parser241" = dontDistribute super."parser241";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partage" = dontDistribute super."partage";
+ "partial" = dontDistribute super."partial";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path-io" = doDistribute super."path-io_0_2_0";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "perfecthash" = dontDistribute super."perfecthash";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
+ "persistent-audit" = dontDistribute super."persistent-audit";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-database-url" = dontDistribute super."persistent-database-url";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-iproute" = dontDistribute super."persistent-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pg-store" = dontDistribute super."pg-store";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
+ "phoityne-vscode" = dontDistribute super."phoityne-vscode";
+ "phone-numbers" = dontDistribute super."phone-numbers";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pinchot" = doDistribute super."pinchot_0_6_0_0";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bzip" = dontDistribute super."pipes-bzip";
+ "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple";
+ "pipes-transduce" = dontDistribute super."pipes-transduce";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pitchtrack" = dontDistribute super."pitchtrack";
+ "pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "plan-b" = dontDistribute super."plan-b";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plist-buddy" = dontDistribute super."plist-buddy";
+ "plivo" = dontDistribute super."plivo";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-configfile" = dontDistribute super."polar-configfile";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-control" = dontDistribute super."poly-control";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polymap" = dontDistribute super."polymap";
+ "polynom" = dontDistribute super."polynom";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pong-server" = dontDistribute super."pong-server";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pool-conduit" = dontDistribute super."pool-conduit";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-connector" = dontDistribute super."postgresql-connector";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-error-codes" = dontDistribute super."postgresql-error-codes";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-transactional" = dontDistribute super."postgresql-transactional";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "predicates" = dontDistribute super."predicates";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-compat" = dontDistribute super."prelude-compat";
+ "prelude-edsl" = dontDistribute super."prelude-edsl";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "prelude2010" = dontDistribute super."prelude2010";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "present" = dontDistribute super."present";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-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_7";
+ "process-iterio" = dontDistribute super."process-iterio";
+ "process-leksah" = dontDistribute super."process-leksah";
+ "process-listlike" = dontDistribute super."process-listlike";
+ "process-progress" = dontDistribute super."process-progress";
+ "process-qq" = dontDistribute super."process-qq";
+ "process-streaming" = dontDistribute super."process-streaming";
+ "processing" = dontDistribute super."processing";
+ "processor-creative-kit" = dontDistribute super."processor-creative-kit";
+ "procrastinating-structure" = dontDistribute super."procrastinating-structure";
+ "procrastinating-variable" = dontDistribute super."procrastinating-variable";
+ "procstat" = dontDistribute super."procstat";
+ "proctest" = dontDistribute super."proctest";
+ "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prologue" = dontDistribute super."prologue";
+ "prometheus" = dontDistribute super."prometheus";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "propane" = dontDistribute super."propane";
+ "propellor" = dontDistribute super."propellor";
+ "properties" = dontDistribute super."properties";
+ "property-list" = dontDistribute super."property-list";
+ "proplang" = dontDistribute super."proplang";
+ "props" = dontDistribute super."props";
+ "prosper" = dontDistribute super."prosper";
+ "proteaaudio" = dontDistribute super."proteaaudio";
+ "protobuf-native" = dontDistribute super."protobuf-native";
+ "protobuf-simple" = dontDistribute super."protobuf-simple";
+ "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12";
+ "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "protolude" = dontDistribute super."protolude";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxied" = dontDistribute super."proxied";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = doDistribute super."psc-ide_0_5_0";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psql-helpers" = dontDistribute super."psql-helpers";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = doDistribute super."publicsuffix_0_20151212";
+ "publicsuffixlist" = dontDistribute super."publicsuffixlist";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "punycode" = dontDistribute super."punycode";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = doDistribute super."purescript_0_7_6_1";
+ "purescript-bridge" = dontDistribute super."purescript-bridge";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "pursuit-client" = dontDistribute super."pursuit-client";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "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-simple" = dontDistribute super."quickcheck-simple";
+ "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = dontDistribute super."quickpull";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "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" = doDistribute super."rainbow_0_26_0_6";
+ "rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_4";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "random-tree" = dontDistribute super."random-tree";
+ "random-variates" = dontDistribute super."random-variates";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratel" = dontDistribute super."ratel";
+ "ratel-wai" = dontDistribute super."ratel-wai";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactivity" = dontDistribute super."reactivity";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "read-env-var" = dontDistribute super."read-env-var";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "readshp" = dontDistribute super."readshp";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "rebase" = dontDistribute super."rebase";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = doDistribute super."redis-io_0_5_2";
+ "redis-job-queue" = dontDistribute super."redis-job-queue";
+ "redis-resp" = doDistribute super."redis-resp_0_3_2";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reedsolomon" = dontDistribute super."reedsolomon";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-animation" = dontDistribute super."reflex-animation";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-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" = doDistribute super."regex-tdfa_1_2_1";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-type" = dontDistribute super."regex-type";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr" = dontDistribute super."regexpr";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
+ "regress" = dontDistribute super."regress";
+ "regular" = dontDistribute super."regular";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "regular-xmlpickler" = dontDistribute super."regular-xmlpickler";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch" = dontDistribute super."rematch";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remote-json" = dontDistribute super."remote-json";
+ "remote-json-client" = dontDistribute super."remote-json-client";
+ "remote-json-server" = dontDistribute super."remote-json-server";
+ "remote-monad" = dontDistribute super."remote-monad";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "reqcatcher" = dontDistribute super."reqcatcher";
+ "request-monad" = dontDistribute super."request-monad";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-pool-monad" = dontDistribute super."resource-pool-monad";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "respond" = dontDistribute super."respond";
+ "rest-core" = doDistribute super."rest-core_0_37";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_19_0_1";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-arguments" = dontDistribute super."reverse-arguments";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = doDistribute super."riak_0_9_1_1";
+ "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rlist" = dontDistribute super."rlist";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trie" = dontDistribute super."rose-trie";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "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";
+ "rss-conduit" = dontDistribute super."rss-conduit";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtcm" = dontDistribute super."rtcm";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s-cargot" = dontDistribute super."s-cargot";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-length" = dontDistribute super."safe-length";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "sampling" = dontDistribute super."sampling";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandlib" = dontDistribute super."sandlib";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sarsi" = dontDistribute super."sarsi";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbvPlugin" = dontDistribute super."sbvPlugin";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = doDistribute super."scalpel_0_2_1_1";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scanner" = dontDistribute super."scanner";
+ "scanner-attoparsec" = dontDistribute super."scanner-attoparsec";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_10_2";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-params-parser" = dontDistribute super."scotty-params-parser";
+ "scotty-resource" = dontDistribute super."scotty-resource";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scotty-view" = dontDistribute super."scotty-view";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scrape-changes" = dontDistribute super."scrape-changes";
+ "scrobble" = dontDistribute super."scrobble";
+ "scroll" = dontDistribute super."scroll";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2-cairo" = dontDistribute super."sdl2-cairo";
+ "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
+ "sdl2-compositor" = dontDistribute super."sdl2-compositor";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = doDistribute super."second-transfer_0_7_1_0";
+ "secp256k1" = dontDistribute super."secp256k1";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver-range" = dontDistribute super."semver-range";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensei" = dontDistribute super."sensei";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
+ "serv" = dontDistribute super."serv";
+ "serv-wai" = dontDistribute super."serv-wai";
+ "servant" = doDistribute super."servant_0_4_4_7";
+ "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7";
+ "servant-cassava" = dontDistribute super."servant-cassava";
+ "servant-client" = doDistribute super."servant-client_0_4_4_7";
+ "servant-csharp" = dontDistribute super."servant-csharp";
+ "servant-docs" = doDistribute super."servant-docs_0_4_4_7";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-elm" = dontDistribute super."servant-elm";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-foreign" = dontDistribute super."servant-foreign";
+ "servant-github" = dontDistribute super."servant-github";
+ "servant-haxl-client" = dontDistribute super."servant-haxl-client";
+ "servant-js" = dontDistribute super."servant-js";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-quickcheck" = dontDistribute super."servant-quickcheck";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = doDistribute super."servant-server_0_4_4_7";
+ "servant-swagger" = doDistribute super."servant-swagger_0_1_2";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = doDistribute super."set-extra_1_3_2";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setgame" = dontDistribute super."setgame";
+ "setops" = dontDistribute super."setops";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-grammar" = dontDistribute super."sexp-grammar";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_8_6";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shake-persist" = dontDistribute super."shake-persist";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare-babel" = dontDistribute super."shakespeare-babel";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-i18n" = dontDistribute super."shakespeare-i18n";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shakespeare-text" = dontDistribute super."shakespeare-text";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "sharc-timbre" = dontDistribute super."sharc-timbre";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shine" = dontDistribute super."shine";
+ "shine-varying" = dontDistribute super."shine-varying";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_23";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplest-sqlite" = dontDistribute super."simplest-sqlite";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skeleton" = dontDistribute super."skeleton";
+ "skell" = dontDistribute super."skell";
+ "skemmtun" = dontDistribute super."skemmtun";
+ "skulk" = dontDistribute super."skulk";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "sleep" = dontDistribute super."sleep";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-language" = dontDistribute super."snap-language";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-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" = doDistribute super."socket_0_5_3_1";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "socketson" = dontDistribute super."socketson";
+ "soegtk" = dontDistribute super."soegtk";
+ "solr" = dontDistribute super."solr";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparkle" = dontDistribute super."sparkle";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "sproxy" = dontDistribute super."sproxy";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "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" = doDistribute super."stack_1_0_2";
+ "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stack-run" = dontDistribute super."stack-run";
+ "stackage-curator" = doDistribute super."stackage-curator_0_13_3";
+ "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "star-to-star-contra" = dontDistribute super."star-to-star-contra";
+ "starling" = dontDistribute super."starling";
+ "starrover2" = dontDistribute super."starrover2";
+ "stash" = dontDistribute super."stash";
+ "state" = dontDistribute super."state";
+ "state-record" = dontDistribute super."state-record";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "static-hash" = dontDistribute super."static-hash";
+ "static-resources" = dontDistribute super."static-resources";
+ "staticanalysis" = dontDistribute super."staticanalysis";
+ "statistics-dirichlet" = dontDistribute super."statistics-dirichlet";
+ "statistics-fusion" = dontDistribute super."statistics-fusion";
+ "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar";
+ "stats" = dontDistribute super."stats";
+ "statsd" = dontDistribute super."statsd";
+ "statsd-client" = dontDistribute super."statsd-client";
+ "statsd-datadog" = dontDistribute super."statsd-datadog";
+ "statvfs" = dontDistribute super."statvfs";
+ "stb-image" = dontDistribute super."stb-image";
+ "stb-truetype" = dontDistribute super."stb-truetype";
+ "stdata" = dontDistribute super."stdata";
+ "stdf" = dontDistribute super."stdf";
+ "steambrowser" = dontDistribute super."steambrowser";
+ "steeloverseer" = dontDistribute super."steeloverseer";
+ "stemmer" = dontDistribute super."stemmer";
+ "step-function" = dontDistribute super."step-function";
+ "stepwise" = dontDistribute super."stepwise";
+ "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey";
+ "stitch" = dontDistribute super."stitch";
+ "stm-channelize" = dontDistribute super."stm-channelize";
+ "stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-firehose" = dontDistribute super."stm-firehose";
+ "stm-io-hooks" = dontDistribute super."stm-io-hooks";
+ "stm-lifted" = dontDistribute super."stm-lifted";
+ "stm-linkedlist" = dontDistribute super."stm-linkedlist";
+ "stm-orelse-io" = dontDistribute super."stm-orelse-io";
+ "stm-promise" = dontDistribute super."stm-promise";
+ "stm-queue-extras" = dontDistribute super."stm-queue-extras";
+ "stm-sbchan" = dontDistribute super."stm-sbchan";
+ "stm-split" = dontDistribute super."stm-split";
+ "stm-tlist" = dontDistribute super."stm-tlist";
+ "stmcontrol" = dontDistribute super."stmcontrol";
+ "stomp-conduit" = dontDistribute super."stomp-conduit";
+ "stomp-patterns" = dontDistribute super."stomp-patterns";
+ "stomp-queue" = dontDistribute super."stomp-queue";
+ "stompl" = dontDistribute super."stompl";
+ "stopwatch" = dontDistribute super."stopwatch";
+ "storable" = dontDistribute super."storable";
+ "storable-record" = dontDistribute super."storable-record";
+ "storable-static-array" = dontDistribute super."storable-static-array";
+ "storable-tuple" = dontDistribute super."storable-tuple";
+ "storablevector" = dontDistribute super."storablevector";
+ "storablevector-carray" = dontDistribute super."storablevector-carray";
+ "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
+ "str" = dontDistribute super."str";
+ "stratosphere" = dontDistribute super."stratosphere";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream" = dontDistribute super."stream";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-png" = dontDistribute super."streaming-png";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streaming-wai" = dontDistribute super."streaming-wai";
+ "strict-base-types" = doDistribute super."strict-base-types_0_4_0";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "string-typelits" = dontDistribute super."string-typelits";
+ "stringlike" = dontDistribute super."stringlike";
+ "stringprep" = dontDistribute super."stringprep";
+ "strings" = dontDistribute super."strings";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "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";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "super-user-spark" = dontDistribute super."super-user-spark";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "supplemented" = dontDistribute super."supplemented";
+ "suspend" = dontDistribute super."suspend";
+ "svg-builder" = dontDistribute super."svg-builder";
+ "svg-tree" = doDistribute super."svg-tree_0_3_2";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger2" = doDistribute super."swagger2_1_2_1";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "symengine-hs" = dontDistribute super."symengine-hs";
+ "sync" = dontDistribute super."sync";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-filter" = dontDistribute super."synthesizer-filter";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-canonicalpath" = dontDistribute super."system-canonicalpath";
+ "system-command" = dontDistribute super."system-command";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-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";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "tai64" = dontDistribute super."tai64";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tardis" = doDistribute super."tardis_0_3_0_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "task-distribution" = dontDistribute super."task-distribution";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0";
+ "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tateti-tateti" = dontDistribute super."tateti-tateti";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "telegram-api" = dontDistribute super."telegram-api";
+ "teleport" = dontDistribute super."teleport";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "template-yj" = dontDistribute super."template-yj";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempo" = dontDistribute super."tempo";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo" = doDistribute super."terminfo_0_4_0_2";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "termplot" = dontDistribute super."termplot";
+ "terntup" = dontDistribute super."terntup";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-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-ldap" = dontDistribute super."text-ldap";
+ "text-locale-encoding" = dontDistribute super."text-locale-encoding";
+ "text-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-postgresql" = dontDistribute super."text-postgresql";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-region" = dontDistribute super."text-region";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "text-show-instances" = dontDistribute super."text-show-instances";
+ "text-stream-decode" = dontDistribute super."text-stream-decode";
+ "text-utf7" = dontDistribute super."text-utf7";
+ "text-xml-generic" = dontDistribute super."text-xml-generic";
+ "text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "textual" = dontDistribute super."textual";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-cas" = dontDistribute super."th-cas";
+ "th-context" = dontDistribute super."th-context";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-kinds-fork" = dontDistribute super."th-kinds-fork";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "th-utilities" = dontDistribute super."th-utilities";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "thespian" = dontDistribute super."thespian";
+ "theta-functions" = dontDistribute super."theta-functions";
+ "thih" = dontDistribute super."thih";
+ "thimk" = dontDistribute super."thimk";
+ "thorn" = dontDistribute super."thorn";
+ "thread-local-storage" = dontDistribute super."thread-local-storage";
+ "threadPool" = dontDistribute super."threadPool";
+ "threadmanager" = dontDistribute super."threadmanager";
+ "threads-pool" = dontDistribute super."threads-pool";
+ "threads-supervisor" = dontDistribute super."threads-supervisor";
+ "threadscope" = dontDistribute super."threadscope";
+ "threefish" = dontDistribute super."threefish";
+ "threepenny-gui" = dontDistribute super."threepenny-gui";
+ "thrift" = dontDistribute super."thrift";
+ "thrist" = dontDistribute super."thrist";
+ "throttle" = dontDistribute super."throttle";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "tianbar" = dontDistribute super."tianbar";
+ "tic-tac-toe" = dontDistribute super."tic-tac-toe";
+ "tickle" = dontDistribute super."tickle";
+ "tictactoe3d" = dontDistribute super."tictactoe3d";
+ "tidal" = dontDistribute super."tidal";
+ "tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-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";
+ "timemap" = dontDistribute super."timemap";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = doDistribute super."tinylog_0_12_1";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "tiphys" = dontDistribute super."tiphys";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls-debug" = doDistribute super."tls-debug_0_4_1";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "total" = dontDistribute super."total";
+ "total-alternative" = dontDistribute super."total-alternative";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "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-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-eff" = dontDistribute super."transformers-eff";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "transient-universe" = dontDistribute super."transient-universe";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-fun" = dontDistribute super."tree-fun";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treersec" = dontDistribute super."treersec";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "tripLL" = dontDistribute super."tripLL";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslib" = dontDistribute super."tslib";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttask" = dontDistribute super."ttask";
+ "tttool" = doDistribute super."tttool_1_5_1";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple" = dontDistribute super."tuple";
+ "tuple-gen" = dontDistribute super."tuple-gen";
+ "tuple-generic" = dontDistribute super."tuple-generic";
+ "tuple-hlist" = dontDistribute super."tuple-hlist";
+ "tuple-lenses" = dontDistribute super."tuple-lenses";
+ "tuple-morph" = dontDistribute super."tuple-morph";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "turing" = dontDistribute super."turing";
+ "turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle-options" = dontDistribute super."turtle-options";
+ "tweak" = dontDistribute super."tweak";
+ "twee" = dontDistribute super."twee";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twentyseven" = dontDistribute super."twentyseven";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cache" = dontDistribute super."type-cache";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-combinators" = dontDistribute super."type-combinators";
+ "type-combinators-quote" = dontDistribute super."type-combinators-quote";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-fun" = dontDistribute super."type-fun";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-operators" = dontDistribute super."type-operators";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typed-spreadsheet" = dontDistribute super."typed-spreadsheet";
+ "typed-wire" = dontDistribute super."typed-wire";
+ "typed-wire-utils" = dontDistribute super."typed-wire-utils";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel" = dontDistribute super."typelevel";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uber" = dontDistribute super."uber";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus" = dontDistribute super."udbus";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unbreak" = dontDistribute super."unbreak";
+ "uncertain" = dontDistribute super."uncertain";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "unfoldable-restricted" = dontDistribute super."unfoldable-restricted";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-show" = dontDistribute super."unicode-show";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union" = dontDistribute super."union";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique" = dontDistribute super."unique";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "unit-constraint" = dontDistribute super."unit-constraint";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unordered-graphs" = dontDistribute super."unordered-graphs";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unsequential" = dontDistribute super."unsequential";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "users" = doDistribute super."users_0_4_0_0";
+ "users-persistent" = doDistribute super."users-persistent_0_4_0_0";
+ "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0";
+ "users-test" = doDistribute super."users-test_0_4_0_0";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcatt" = dontDistribute super."vcatt";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-sized" = dontDistribute super."vector-sized";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = dontDistribute super."vector-space-points";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verdict" = dontDistribute super."verdict";
+ "verdict-json" = dontDistribute super."verdict-json";
+ "verilog" = dontDistribute super."verilog";
+ "versions" = dontDistribute super."versions";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
+ "vinyl-plus" = dontDistribute super."vinyl-plus";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "vinyl-vectors" = dontDistribute super."vinyl-vectors";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "visibility" = dontDistribute super."visibility";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vrpn" = dontDistribute super."vrpn";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "vulkan" = dontDistribute super."vulkan";
+ "wacom-daemon" = dontDistribute super."wacom-daemon";
+ "waddle" = dontDistribute super."waddle";
+ "wai-accept-language" = dontDistribute super."wai-accept-language";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-devel" = dontDistribute super."wai-devel";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-lens" = dontDistribute super."wai-lens";
+ "wai-lite" = dontDistribute super."wai-lite";
+ "wai-logger-prefork" = dontDistribute super."wai-logger-prefork";
+ "wai-middleware-cache" = dontDistribute super."wai-middleware-cache";
+ "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis";
+ "wai-middleware-catch" = dontDistribute super."wai-middleware-catch";
+ "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type";
+ "wai-middleware-etag" = dontDistribute super."wai-middleware-etag";
+ "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip";
+ "wai-middleware-headers" = dontDistribute super."wai-middleware-headers";
+ "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac";
+ "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client";
+ "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-session-alt" = dontDistribute super."wai-session-alt";
+ "wai-session-clientsession" = dontDistribute super."wai-session-clientsession";
+ "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet";
+ "wai-static-cache" = dontDistribute super."wai-static-cache";
+ "wai-static-pages" = dontDistribute super."wai-static-pages";
+ "wai-test" = dontDistribute super."wai-test";
+ "wai-thrift" = dontDistribute super."wai-thrift";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_2_2";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "warp-tls-uid" = dontDistribute super."warp-tls-uid";
+ "watchdog" = dontDistribute super."watchdog";
+ "watcher" = dontDistribute super."watcher";
+ "watchit" = dontDistribute super."watchit";
+ "wavconvert" = dontDistribute super."wavconvert";
+ "wavesurfer" = dontDistribute super."wavesurfer";
+ "wavy" = dontDistribute super."wavy";
+ "wcwidth" = dontDistribute super."wcwidth";
+ "weather-api" = dontDistribute super."weather-api";
+ "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
+ "web-css" = dontDistribute super."web-css";
+ "web-encodings" = dontDistribute super."web-encodings";
+ "web-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-angular" = doDistribute super."webdriver-angular_0_1_9";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webfinger-client" = dontDistribute super."webfinger-client";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "werewolf" = dontDistribute super."werewolf";
+ "werewolf-slack" = dontDistribute super."werewolf-slack";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wigner-symbols" = dontDistribute super."wigner-symbols";
+ "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";
+ "with-location" = doDistribute super."with-location_0_0_0";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "wlc-hs" = dontDistribute super."wlc-hs";
+ "wobsurv" = dontDistribute super."wobsurv";
+ "woffex" = dontDistribute super."woffex";
+ "wol" = dontDistribute super."wol";
+ "wolf" = dontDistribute super."wolf";
+ "woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
+ "word24" = dontDistribute super."word24";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "workflow-osx" = dontDistribute super."workflow-osx";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsdl" = dontDistribute super."wsdl";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-util" = dontDistribute super."x509-util";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdcc" = dontDistribute super."xdcc";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml" = doDistribute super."xhtml_3000_2_1";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsx-tabular" = dontDistribute super."xlsx-tabular";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-query" = dontDistribute super."xml-query";
+ "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit";
+ "xml-query-xml-types" = dontDistribute super."xml-query-xml-types";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "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-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_3";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-csp" = dontDistribute super."yesod-csp";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
+ "yesod-job-queue" = dontDistribute super."yesod-job-queue";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-raml-bin" = dontDistribute super."yesod-raml-bin";
+ "yesod-raml-docs" = dontDistribute super."yesod-raml-docs";
+ "yesod-raml-mock" = dontDistribute super."yesod-raml-mock";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoctoparsec" = dontDistribute super."yoctoparsec";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zerobin" = dontDistribute super."zerobin";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zim-parser" = doDistribute super."zim-parser_0_1_0_0";
+ "zip" = dontDistribute super."zip";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipkin" = dontDistribute super."zipkin";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix
index 586fa1423ab..c60a485d171 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix
@@ -339,6 +339,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -474,6 +475,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -563,6 +565,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -599,6 +602,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -633,6 +637,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -709,6 +714,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -976,7 +982,6 @@ 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";
@@ -1007,6 +1012,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1040,6 +1046,7 @@ self: super: {
"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";
@@ -1341,6 +1348,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1584,6 +1592,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1616,6 +1625,7 @@ self: super: {
"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";
@@ -1710,6 +1720,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1834,6 +1845,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1979,6 +1991,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2111,9 +2124,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2130,6 +2145,7 @@ self: super: {
"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";
@@ -2242,6 +2258,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2354,6 +2371,7 @@ self: super: {
"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-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2476,7 +2494,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2547,6 +2568,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2727,6 +2749,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg" = doDistribute super."ekg_0_4_0_8";
"ekg-bosun" = dontDistribute super."ekg-bosun";
@@ -2746,6 +2769,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_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";
@@ -2760,6 +2784,7 @@ self: super: {
"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";
@@ -2834,11 +2859,13 @@ self: super: {
"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_10_0_1";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2888,6 +2915,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"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";
@@ -3023,6 +3051,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3182,6 +3211,7 @@ self: super: {
"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";
@@ -3209,12 +3239,15 @@ self: super: {
"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-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";
@@ -3239,6 +3272,7 @@ 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";
@@ -3267,9 +3301,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3282,6 +3318,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_2";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3506,6 +3543,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3588,6 +3626,7 @@ self: super: {
"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";
@@ -3655,6 +3694,8 @@ self: super: {
"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";
@@ -3727,6 +3768,7 @@ self: super: {
"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";
@@ -4008,6 +4050,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4073,6 +4116,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4447,6 +4491,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4464,6 +4509,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4550,6 +4596,7 @@ self: super: {
"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";
@@ -4595,6 +4642,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4604,6 +4652,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4614,6 +4663,7 @@ self: super: {
"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";
@@ -4623,6 +4673,7 @@ self: super: {
"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";
@@ -4643,6 +4694,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4752,6 +4804,7 @@ self: super: {
"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";
@@ -5025,6 +5078,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5169,6 +5223,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5405,6 +5460,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5415,6 +5471,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5639,11 +5696,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5673,6 +5732,7 @@ self: super: {
"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";
@@ -5720,6 +5780,7 @@ self: super: {
"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";
@@ -5734,6 +5795,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5825,6 +5887,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5842,6 +5905,7 @@ self: super: {
"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";
@@ -5896,6 +5960,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6113,6 +6178,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6171,6 +6237,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6205,6 +6272,7 @@ self: super: {
"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";
@@ -6293,6 +6361,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6302,6 +6371,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = doDistribute super."pusher-http-haskell_0_3_0_1";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6330,6 +6400,7 @@ self: super: {
"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";
@@ -6463,6 +6534,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6477,8 +6549,10 @@ self: super: {
"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-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0";
@@ -6489,6 +6563,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6641,6 +6716,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6822,6 +6898,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6846,6 +6923,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6950,6 +7028,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -7010,6 +7089,7 @@ self: super: {
"sme" = dontDistribute super."sme";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7030,6 +7110,7 @@ self: super: {
"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";
@@ -7098,6 +7179,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7165,6 +7247,7 @@ self: super: {
"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";
@@ -7245,6 +7328,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7285,6 +7369,7 @@ self: super: {
"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";
@@ -7298,6 +7383,7 @@ self: super: {
"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";
@@ -7471,6 +7557,7 @@ self: super: {
"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";
@@ -7486,6 +7573,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7498,6 +7586,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7517,6 +7606,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7532,6 +7622,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7572,6 +7663,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7657,6 +7749,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7718,6 +7811,7 @@ self: super: {
"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_5";
@@ -7774,6 +7868,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7792,6 +7887,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -8007,6 +8103,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8025,6 +8122,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8084,6 +8182,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8103,6 +8202,7 @@ self: super: {
"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";
@@ -8146,6 +8246,7 @@ self: super: {
"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";
@@ -8164,6 +8265,7 @@ self: super: {
"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";
@@ -8268,6 +8370,7 @@ self: super: {
"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";
@@ -8341,6 +8444,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8418,6 +8522,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix
index f1ce759151c..f4e2dbd8150 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -471,6 +472,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -560,6 +562,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -596,6 +599,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -630,6 +634,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -706,6 +711,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -973,7 +979,6 @@ 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";
@@ -1004,6 +1009,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1037,6 +1043,7 @@ self: super: {
"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";
@@ -1337,6 +1344,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1579,6 +1587,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1611,6 +1620,7 @@ self: super: {
"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";
@@ -1705,6 +1715,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1829,6 +1840,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1973,6 +1985,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2104,9 +2117,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2123,6 +2138,7 @@ self: super: {
"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";
@@ -2235,6 +2251,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2347,6 +2364,7 @@ self: super: {
"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";
@@ -2468,7 +2486,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2538,6 +2559,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2718,6 +2740,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2735,6 +2758,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_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";
@@ -2749,6 +2773,7 @@ self: super: {
"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";
@@ -2821,11 +2846,13 @@ self: super: {
"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_10_0_2";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2874,6 +2901,7 @@ self: super: {
"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";
@@ -3008,6 +3036,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3167,6 +3196,7 @@ self: super: {
"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";
@@ -3193,12 +3223,15 @@ self: super: {
"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-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";
@@ -3223,6 +3256,7 @@ 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";
@@ -3251,9 +3285,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3265,6 +3301,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3489,6 +3526,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3571,6 +3609,7 @@ self: super: {
"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";
@@ -3638,6 +3677,8 @@ self: super: {
"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";
@@ -3710,6 +3751,7 @@ self: super: {
"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";
@@ -3991,6 +4033,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4056,6 +4099,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4430,6 +4474,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4447,6 +4492,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4533,6 +4579,7 @@ self: super: {
"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";
@@ -4577,6 +4624,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4586,6 +4634,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4596,6 +4645,7 @@ self: super: {
"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";
@@ -4605,6 +4655,7 @@ self: super: {
"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";
@@ -4625,6 +4676,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4734,6 +4786,7 @@ self: super: {
"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";
@@ -5007,6 +5060,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5150,6 +5204,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5385,6 +5440,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5395,6 +5451,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5619,11 +5676,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5653,6 +5712,7 @@ self: super: {
"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";
@@ -5700,6 +5760,7 @@ self: super: {
"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";
@@ -5714,6 +5775,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5805,6 +5867,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5822,6 +5885,7 @@ self: super: {
"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";
@@ -5875,6 +5939,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6092,6 +6157,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6150,6 +6216,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6184,6 +6251,7 @@ self: super: {
"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";
@@ -6272,6 +6340,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6280,6 +6349,7 @@ self: super: {
"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";
@@ -6308,6 +6378,7 @@ self: super: {
"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";
@@ -6441,6 +6512,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6454,8 +6526,10 @@ self: super: {
"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";
@@ -6465,6 +6539,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6617,6 +6692,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6798,6 +6874,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6822,6 +6899,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6926,6 +7004,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6984,6 +7063,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7004,6 +7084,7 @@ self: super: {
"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";
@@ -7071,6 +7152,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7138,6 +7220,7 @@ self: super: {
"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";
@@ -7194,6 +7277,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_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7217,6 +7301,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7257,6 +7342,7 @@ self: super: {
"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";
@@ -7270,6 +7356,7 @@ self: super: {
"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";
@@ -7443,6 +7530,7 @@ self: super: {
"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";
@@ -7458,6 +7546,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7470,6 +7559,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7489,6 +7579,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7504,6 +7595,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7544,6 +7636,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7629,6 +7722,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7690,6 +7784,7 @@ self: super: {
"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_5";
@@ -7746,6 +7841,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7764,6 +7860,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7978,6 +8075,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7996,6 +8094,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8052,6 +8151,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8071,6 +8171,7 @@ self: super: {
"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";
@@ -8114,6 +8215,7 @@ self: super: {
"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";
@@ -8132,6 +8234,7 @@ self: super: {
"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";
@@ -8236,6 +8339,7 @@ self: super: {
"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";
@@ -8309,6 +8413,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8386,6 +8491,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix
index e123a04f318..699de394bb2 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -470,6 +471,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -559,6 +561,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -595,6 +598,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -629,6 +633,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -705,6 +710,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -972,7 +978,6 @@ 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";
@@ -1003,6 +1008,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1036,6 +1042,7 @@ self: super: {
"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";
@@ -1335,6 +1342,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1577,6 +1585,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1609,6 +1618,7 @@ self: super: {
"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";
@@ -1703,6 +1713,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1827,6 +1838,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1971,6 +1983,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2101,9 +2114,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2120,6 +2135,7 @@ self: super: {
"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";
@@ -2231,6 +2247,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2343,6 +2360,7 @@ self: super: {
"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";
@@ -2464,7 +2482,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2532,6 +2553,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2710,6 +2732,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2727,6 +2750,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2741,6 +2765,7 @@ self: super: {
"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";
@@ -2813,11 +2838,13 @@ self: super: {
"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_10_0_2";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2866,6 +2893,7 @@ self: super: {
"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";
@@ -2999,6 +3027,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3158,6 +3187,7 @@ self: super: {
"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";
@@ -3184,12 +3214,15 @@ self: super: {
"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-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";
@@ -3213,6 +3246,7 @@ 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";
@@ -3241,9 +3275,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3255,6 +3291,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3479,6 +3516,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3561,6 +3599,7 @@ self: super: {
"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";
@@ -3628,6 +3667,8 @@ self: super: {
"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";
@@ -3700,6 +3741,7 @@ self: super: {
"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";
@@ -3981,6 +4023,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4046,6 +4089,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4418,6 +4462,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4435,6 +4480,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4521,6 +4567,7 @@ self: super: {
"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";
@@ -4565,6 +4612,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4574,6 +4622,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4584,6 +4633,7 @@ self: super: {
"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";
@@ -4593,6 +4643,7 @@ self: super: {
"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";
@@ -4613,6 +4664,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4722,6 +4774,7 @@ self: super: {
"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";
@@ -4995,6 +5048,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5050,6 +5104,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5136,6 +5191,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5371,6 +5427,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5381,6 +5438,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5603,11 +5661,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5635,6 +5695,7 @@ self: super: {
"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";
@@ -5682,6 +5743,7 @@ self: super: {
"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";
@@ -5696,6 +5758,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5787,6 +5850,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5804,6 +5868,7 @@ self: super: {
"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";
@@ -5856,6 +5921,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6072,6 +6138,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6130,6 +6197,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6164,6 +6232,7 @@ self: super: {
"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";
@@ -6252,6 +6321,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6260,6 +6330,7 @@ self: super: {
"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";
@@ -6288,6 +6359,7 @@ self: super: {
"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";
@@ -6420,6 +6492,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6433,8 +6506,10 @@ self: super: {
"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";
@@ -6444,6 +6519,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6596,6 +6672,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6777,6 +6854,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6801,6 +6879,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6905,6 +6984,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6963,6 +7043,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6983,6 +7064,7 @@ self: super: {
"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";
@@ -7050,6 +7132,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7117,6 +7200,7 @@ self: super: {
"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";
@@ -7173,6 +7257,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_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7196,6 +7281,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7236,6 +7322,7 @@ self: super: {
"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";
@@ -7249,6 +7336,7 @@ self: super: {
"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";
@@ -7421,6 +7509,7 @@ self: super: {
"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";
@@ -7436,6 +7525,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7448,6 +7538,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7467,6 +7558,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7482,6 +7574,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7522,6 +7615,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7607,6 +7701,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7668,6 +7763,7 @@ self: super: {
"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_5";
@@ -7723,6 +7819,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7741,6 +7838,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7955,6 +8053,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7973,6 +8072,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8029,6 +8129,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8048,6 +8149,7 @@ self: super: {
"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";
@@ -8091,6 +8193,7 @@ self: super: {
"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";
@@ -8109,6 +8212,7 @@ self: super: {
"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";
@@ -8213,6 +8317,7 @@ self: super: {
"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";
@@ -8286,6 +8391,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8363,6 +8469,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix
index 6657efbd460..1843f1160d5 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -470,6 +471,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -559,6 +561,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -595,6 +598,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -629,6 +633,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -705,6 +710,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -972,7 +978,6 @@ 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";
@@ -1003,6 +1008,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1036,6 +1042,7 @@ self: super: {
"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";
@@ -1335,6 +1342,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1577,6 +1585,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1609,6 +1618,7 @@ self: super: {
"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";
@@ -1702,6 +1712,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_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1826,6 +1837,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1968,6 +1980,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2098,9 +2111,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2117,6 +2132,7 @@ self: super: {
"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";
@@ -2228,6 +2244,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2340,6 +2357,7 @@ self: super: {
"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";
@@ -2461,7 +2479,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2529,6 +2550,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2707,6 +2729,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2724,6 +2747,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2738,6 +2762,7 @@ self: super: {
"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";
@@ -2810,11 +2835,13 @@ self: super: {
"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_10_0_2";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2863,6 +2890,7 @@ self: super: {
"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";
@@ -2996,6 +3024,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3155,6 +3184,7 @@ self: super: {
"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";
@@ -3181,12 +3211,15 @@ self: super: {
"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-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";
@@ -3210,6 +3243,7 @@ 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";
@@ -3238,9 +3272,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3252,6 +3288,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3476,6 +3513,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3558,6 +3596,7 @@ self: super: {
"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";
@@ -3625,6 +3664,8 @@ self: super: {
"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";
@@ -3696,6 +3737,7 @@ self: super: {
"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";
@@ -3977,6 +4019,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4042,6 +4085,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4413,6 +4457,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4430,6 +4475,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4516,6 +4562,7 @@ self: super: {
"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";
@@ -4560,6 +4607,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4569,6 +4617,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4579,6 +4628,7 @@ self: super: {
"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";
@@ -4588,6 +4638,7 @@ self: super: {
"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";
@@ -4608,6 +4659,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4717,6 +4769,7 @@ self: super: {
"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";
@@ -4990,6 +5043,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5045,6 +5099,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5131,6 +5186,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5366,6 +5422,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5376,6 +5433,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5598,11 +5656,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5630,6 +5690,7 @@ self: super: {
"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";
@@ -5677,6 +5738,7 @@ self: super: {
"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";
@@ -5691,6 +5753,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5782,6 +5845,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5799,6 +5863,7 @@ self: super: {
"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";
@@ -5851,6 +5916,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6067,6 +6133,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6125,6 +6192,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6159,6 +6227,7 @@ self: super: {
"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";
@@ -6247,6 +6316,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6255,6 +6325,7 @@ self: super: {
"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";
@@ -6283,6 +6354,7 @@ self: super: {
"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";
@@ -6415,6 +6487,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6428,8 +6501,10 @@ self: super: {
"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";
@@ -6439,6 +6514,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6591,6 +6667,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6772,6 +6849,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6796,6 +6874,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6900,6 +6979,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6958,6 +7038,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6978,6 +7059,7 @@ self: super: {
"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";
@@ -7045,6 +7127,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7112,6 +7195,7 @@ self: super: {
"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";
@@ -7168,6 +7252,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_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7191,6 +7276,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7231,6 +7317,7 @@ self: super: {
"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";
@@ -7244,6 +7331,7 @@ self: super: {
"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";
@@ -7416,6 +7504,7 @@ self: super: {
"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";
@@ -7431,6 +7520,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7443,6 +7533,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7462,6 +7553,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7477,6 +7569,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7517,6 +7610,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7602,6 +7696,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7663,6 +7758,7 @@ self: super: {
"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_5";
@@ -7718,6 +7814,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7736,6 +7833,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7948,6 +8046,7 @@ self: super: {
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7966,6 +8065,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8022,6 +8122,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8040,6 +8141,7 @@ self: super: {
"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";
@@ -8083,6 +8185,7 @@ self: super: {
"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";
@@ -8101,6 +8204,7 @@ self: super: {
"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";
@@ -8205,6 +8309,7 @@ self: super: {
"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";
@@ -8278,6 +8383,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8355,6 +8461,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix
index 24c834831c7..9635c9adee0 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -469,6 +470,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -558,6 +560,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -594,6 +597,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -628,6 +632,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -704,6 +709,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -971,7 +977,6 @@ 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";
@@ -1002,6 +1007,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1035,6 +1041,7 @@ self: super: {
"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";
@@ -1334,6 +1341,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1369,6 +1377,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1476,6 +1485,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1574,6 +1584,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1606,6 +1617,7 @@ self: super: {
"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";
@@ -1698,6 +1710,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_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1821,6 +1834,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1963,6 +1977,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2093,9 +2108,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2112,6 +2129,7 @@ self: super: {
"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";
@@ -2222,6 +2240,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2334,6 +2353,7 @@ self: super: {
"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";
@@ -2455,7 +2475,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2523,6 +2546,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2701,6 +2725,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2718,6 +2743,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2732,6 +2758,7 @@ self: super: {
"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";
@@ -2804,11 +2831,13 @@ self: super: {
"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_10_0_2";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2857,6 +2886,7 @@ self: super: {
"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";
@@ -2990,6 +3020,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3148,6 +3179,7 @@ self: super: {
"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";
@@ -3173,12 +3205,15 @@ self: super: {
"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-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";
@@ -3202,6 +3237,7 @@ 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";
@@ -3230,9 +3266,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3244,6 +3282,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3468,6 +3507,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3549,6 +3589,7 @@ self: super: {
"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";
@@ -3616,6 +3657,8 @@ self: super: {
"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";
@@ -3687,6 +3730,7 @@ self: super: {
"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";
@@ -3867,6 +3911,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3966,6 +4011,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4031,6 +4077,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4402,6 +4449,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4419,6 +4467,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4505,6 +4554,7 @@ self: super: {
"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";
@@ -4549,6 +4599,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4558,6 +4609,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4568,6 +4620,7 @@ self: super: {
"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";
@@ -4577,6 +4630,7 @@ self: super: {
"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";
@@ -4597,6 +4651,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4706,6 +4761,7 @@ self: super: {
"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";
@@ -4978,6 +5034,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5033,6 +5090,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5119,6 +5177,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5353,6 +5412,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5363,6 +5423,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5584,11 +5645,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5616,6 +5679,7 @@ self: super: {
"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";
@@ -5663,6 +5727,7 @@ self: super: {
"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";
@@ -5677,6 +5742,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5768,6 +5834,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5785,6 +5852,7 @@ self: super: {
"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";
@@ -5837,6 +5905,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6051,6 +6120,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6109,6 +6179,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6143,6 +6214,7 @@ self: super: {
"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";
@@ -6231,6 +6303,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6239,6 +6312,7 @@ self: super: {
"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";
@@ -6267,6 +6341,7 @@ self: super: {
"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";
@@ -6399,6 +6474,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6412,8 +6488,10 @@ self: super: {
"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";
@@ -6423,6 +6501,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6575,6 +6654,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6756,6 +6836,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6780,6 +6861,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6884,6 +6966,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6942,6 +7025,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6962,6 +7046,7 @@ self: super: {
"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";
@@ -7029,6 +7114,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7096,6 +7182,7 @@ self: super: {
"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";
@@ -7152,6 +7239,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_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7175,6 +7263,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7215,6 +7304,7 @@ self: super: {
"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";
@@ -7228,6 +7318,7 @@ self: super: {
"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";
@@ -7400,6 +7491,7 @@ self: super: {
"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";
@@ -7415,6 +7507,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7427,6 +7520,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7446,6 +7540,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7461,6 +7556,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7501,6 +7597,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7585,6 +7682,7 @@ self: super: {
"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";
@@ -7646,6 +7744,7 @@ self: super: {
"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_5";
@@ -7701,6 +7800,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7719,6 +7819,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7931,6 +8032,7 @@ self: super: {
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7949,6 +8051,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8004,6 +8107,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8022,6 +8126,7 @@ self: super: {
"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";
@@ -8065,6 +8170,7 @@ self: super: {
"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";
@@ -8082,6 +8188,7 @@ self: super: {
"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";
@@ -8186,6 +8293,7 @@ self: super: {
"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";
@@ -8259,6 +8367,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8336,6 +8445,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix
index 80ba60f0ab7..b7a9a1dd2ec 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -469,6 +470,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -558,6 +560,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -594,6 +597,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -628,6 +632,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -704,6 +709,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -971,7 +977,6 @@ 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";
@@ -1002,6 +1007,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1035,6 +1041,7 @@ self: super: {
"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";
@@ -1334,6 +1341,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1369,6 +1377,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1476,6 +1485,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1574,6 +1584,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1606,6 +1617,7 @@ self: super: {
"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";
@@ -1698,6 +1710,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_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1821,6 +1834,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1960,6 +1974,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2090,9 +2105,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2109,6 +2126,7 @@ self: super: {
"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";
@@ -2219,6 +2237,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2331,6 +2350,7 @@ self: super: {
"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";
@@ -2452,7 +2472,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2520,6 +2543,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2698,6 +2722,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2715,6 +2740,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2729,6 +2755,7 @@ self: super: {
"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";
@@ -2801,11 +2828,13 @@ self: super: {
"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_10_0_2";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2854,6 +2883,7 @@ self: super: {
"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";
@@ -2987,6 +3017,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3145,6 +3176,7 @@ self: super: {
"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";
@@ -3170,12 +3202,15 @@ self: super: {
"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-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";
@@ -3199,6 +3234,7 @@ 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";
@@ -3227,9 +3263,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3241,6 +3279,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3465,6 +3504,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3546,6 +3586,7 @@ self: super: {
"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";
@@ -3613,6 +3654,8 @@ self: super: {
"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";
@@ -3684,6 +3727,7 @@ self: super: {
"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";
@@ -3864,6 +3908,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3962,6 +4007,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4027,6 +4073,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4397,6 +4444,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4414,6 +4462,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4500,6 +4549,7 @@ self: super: {
"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";
@@ -4544,6 +4594,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4553,6 +4604,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4563,6 +4615,7 @@ self: super: {
"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";
@@ -4572,6 +4625,7 @@ self: super: {
"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";
@@ -4592,6 +4646,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4701,6 +4756,7 @@ self: super: {
"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";
@@ -4973,6 +5029,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5028,6 +5085,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5114,6 +5172,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5347,6 +5406,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5357,6 +5417,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5578,11 +5639,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5610,6 +5673,7 @@ self: super: {
"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";
@@ -5657,6 +5721,7 @@ self: super: {
"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";
@@ -5671,6 +5736,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5762,6 +5828,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5779,6 +5846,7 @@ self: super: {
"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";
@@ -5831,6 +5899,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6043,6 +6112,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6101,6 +6171,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6135,6 +6206,7 @@ self: super: {
"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";
@@ -6223,6 +6295,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6231,6 +6304,7 @@ self: super: {
"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";
@@ -6259,6 +6333,7 @@ self: super: {
"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";
@@ -6391,6 +6466,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6404,8 +6480,10 @@ self: super: {
"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";
@@ -6415,6 +6493,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6567,6 +6646,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6747,6 +6827,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6771,6 +6852,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6875,6 +6957,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6933,6 +7016,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6953,6 +7037,7 @@ self: super: {
"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";
@@ -7020,6 +7105,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7087,6 +7173,7 @@ self: super: {
"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";
@@ -7143,6 +7230,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_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7166,6 +7254,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7204,6 +7293,7 @@ self: super: {
"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";
@@ -7217,6 +7307,7 @@ self: super: {
"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";
@@ -7389,6 +7480,7 @@ self: super: {
"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";
@@ -7404,6 +7496,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7416,6 +7509,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7435,6 +7529,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7450,6 +7545,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7490,6 +7586,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7574,6 +7671,7 @@ self: super: {
"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";
@@ -7635,6 +7733,7 @@ self: super: {
"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_5";
@@ -7689,6 +7788,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7707,6 +7807,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7919,6 +8020,7 @@ self: super: {
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7937,6 +8039,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7992,6 +8095,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8010,6 +8114,7 @@ self: super: {
"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";
@@ -8053,6 +8158,7 @@ self: super: {
"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";
@@ -8070,6 +8176,7 @@ self: super: {
"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";
@@ -8174,6 +8281,7 @@ self: super: {
"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";
@@ -8247,6 +8355,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8324,6 +8433,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix
index 508263e7022..e6b94dae995 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -469,6 +470,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -558,6 +560,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -594,6 +597,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -628,6 +632,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -704,6 +709,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -971,7 +977,6 @@ 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";
@@ -1002,6 +1007,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1035,6 +1041,7 @@ self: super: {
"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";
@@ -1334,6 +1341,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1369,6 +1377,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1476,6 +1485,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1574,6 +1584,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1606,6 +1617,7 @@ self: super: {
"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";
@@ -1698,6 +1710,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_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1821,6 +1834,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1960,6 +1974,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2090,9 +2105,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2109,6 +2126,7 @@ self: super: {
"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";
@@ -2219,6 +2237,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2331,6 +2350,7 @@ self: super: {
"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";
@@ -2452,7 +2472,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2520,6 +2543,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2698,6 +2722,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2715,6 +2740,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2729,6 +2755,7 @@ self: super: {
"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";
@@ -2801,11 +2828,13 @@ self: super: {
"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_10_0_2";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2854,6 +2883,7 @@ self: super: {
"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";
@@ -2987,6 +3017,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3145,6 +3176,7 @@ self: super: {
"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";
@@ -3170,12 +3202,15 @@ self: super: {
"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-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";
@@ -3199,6 +3234,7 @@ 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";
@@ -3227,9 +3263,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3241,6 +3279,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3465,6 +3504,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3546,6 +3586,7 @@ self: super: {
"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";
@@ -3613,6 +3654,8 @@ self: super: {
"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";
@@ -3684,6 +3727,7 @@ self: super: {
"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";
@@ -3864,6 +3908,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3962,6 +4007,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4027,6 +4073,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4397,6 +4444,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4414,6 +4462,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4500,6 +4549,7 @@ self: super: {
"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";
@@ -4544,6 +4594,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4553,6 +4604,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4563,6 +4615,7 @@ self: super: {
"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";
@@ -4572,6 +4625,7 @@ self: super: {
"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";
@@ -4592,6 +4646,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4701,6 +4756,7 @@ self: super: {
"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";
@@ -4973,6 +5029,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5028,6 +5085,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5114,6 +5172,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5347,6 +5406,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5357,6 +5417,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5578,11 +5639,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5610,6 +5673,7 @@ self: super: {
"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";
@@ -5657,6 +5721,7 @@ self: super: {
"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";
@@ -5671,6 +5736,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5762,6 +5828,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5779,6 +5846,7 @@ self: super: {
"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";
@@ -5831,6 +5899,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6043,6 +6112,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6101,6 +6171,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6135,6 +6206,7 @@ self: super: {
"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";
@@ -6223,6 +6295,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6231,6 +6304,7 @@ self: super: {
"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";
@@ -6259,6 +6333,7 @@ self: super: {
"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";
@@ -6391,6 +6466,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6404,8 +6480,10 @@ self: super: {
"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";
@@ -6415,6 +6493,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6567,6 +6646,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6747,6 +6827,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6771,6 +6852,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6875,6 +6957,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6933,6 +7016,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6953,6 +7037,7 @@ self: super: {
"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";
@@ -7020,6 +7105,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7087,6 +7173,7 @@ self: super: {
"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";
@@ -7143,6 +7230,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_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7166,6 +7254,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7204,6 +7293,7 @@ self: super: {
"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";
@@ -7217,6 +7307,7 @@ self: super: {
"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";
@@ -7389,6 +7480,7 @@ self: super: {
"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";
@@ -7404,6 +7496,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7416,6 +7509,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"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";
@@ -7435,6 +7529,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7450,6 +7545,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7490,6 +7586,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7574,6 +7671,7 @@ self: super: {
"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";
@@ -7635,6 +7733,7 @@ self: super: {
"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_5";
@@ -7689,6 +7788,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7707,6 +7807,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7919,6 +8020,7 @@ self: super: {
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7937,6 +8039,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7991,6 +8094,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8009,6 +8113,7 @@ self: super: {
"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";
@@ -8052,6 +8157,7 @@ self: super: {
"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";
@@ -8069,6 +8175,7 @@ self: super: {
"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";
@@ -8173,6 +8280,7 @@ self: super: {
"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";
@@ -8246,6 +8354,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8323,6 +8432,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix
index bc831536c5c..86967cf60af 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -469,6 +470,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -558,6 +560,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -594,6 +597,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -628,6 +632,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -704,6 +709,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -971,7 +977,6 @@ 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";
@@ -1002,6 +1007,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1035,6 +1041,7 @@ self: super: {
"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";
@@ -1333,6 +1340,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1368,6 +1376,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1475,6 +1484,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1573,6 +1583,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1605,6 +1616,7 @@ self: super: {
"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";
@@ -1697,6 +1709,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_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1820,6 +1833,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1958,6 +1972,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2088,9 +2103,11 @@ self: super: {
"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";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2107,6 +2124,7 @@ self: super: {
"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";
@@ -2217,6 +2235,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2329,6 +2348,7 @@ self: super: {
"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";
@@ -2450,7 +2470,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2517,6 +2540,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2695,6 +2719,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2712,6 +2737,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2726,6 +2752,7 @@ self: super: {
"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";
@@ -2798,11 +2825,13 @@ self: super: {
"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_10_0_2";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
"ex-pool" = dontDistribute super."ex-pool";
"exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exact-pi" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2851,6 +2880,7 @@ self: super: {
"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";
@@ -2984,6 +3014,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3142,6 +3173,7 @@ self: super: {
"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";
@@ -3167,12 +3199,15 @@ self: super: {
"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-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";
@@ -3196,6 +3231,7 @@ 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";
@@ -3224,9 +3260,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3238,6 +3276,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"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_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3462,6 +3501,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3543,6 +3583,7 @@ self: super: {
"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";
@@ -3610,6 +3651,8 @@ self: super: {
"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";
@@ -3680,6 +3723,7 @@ self: super: {
"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";
@@ -3825,6 +3869,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_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3858,6 +3903,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3956,6 +4002,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4020,6 +4067,7 @@ self: super: {
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
@@ -4390,6 +4438,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4407,6 +4456,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4492,6 +4542,7 @@ self: super: {
"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";
@@ -4535,6 +4586,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4544,6 +4596,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"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";
@@ -4554,6 +4607,7 @@ self: super: {
"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";
@@ -4563,6 +4617,7 @@ self: super: {
"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";
@@ -4583,6 +4638,7 @@ self: super: {
"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_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4691,6 +4747,7 @@ self: super: {
"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";
@@ -4963,6 +5020,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5018,6 +5076,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5104,6 +5163,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5337,6 +5397,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5347,6 +5408,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5568,11 +5630,13 @@ self: super: {
"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-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -5599,6 +5663,7 @@ self: super: {
"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";
@@ -5646,6 +5711,7 @@ self: super: {
"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";
@@ -5660,6 +5726,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5751,6 +5818,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5768,6 +5836,7 @@ self: super: {
"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";
@@ -5818,6 +5887,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6029,6 +6099,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6087,6 +6158,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6121,6 +6193,7 @@ self: super: {
"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";
@@ -6209,6 +6282,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";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6217,6 +6291,7 @@ self: super: {
"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";
@@ -6245,6 +6320,7 @@ self: super: {
"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";
@@ -6377,6 +6453,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6390,8 +6467,10 @@ self: super: {
"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";
@@ -6401,6 +6480,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6553,6 +6633,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6733,6 +6814,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6756,6 +6838,7 @@ self: super: {
"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-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6859,6 +6942,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6917,6 +7001,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6936,6 +7021,7 @@ self: super: {
"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";
@@ -7003,6 +7089,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_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7070,6 +7157,7 @@ self: super: {
"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";
@@ -7126,6 +7214,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_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7149,6 +7238,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7187,6 +7277,7 @@ self: super: {
"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";
@@ -7200,6 +7291,7 @@ self: super: {
"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";
@@ -7372,6 +7464,7 @@ self: super: {
"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";
@@ -7387,6 +7480,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7398,6 +7492,7 @@ self: super: {
"texmath" = doDistribute super."texmath_0_8_5";
"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";
@@ -7417,6 +7512,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7432,6 +7528,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7472,6 +7569,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"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";
@@ -7556,6 +7654,7 @@ self: super: {
"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";
@@ -7617,6 +7716,7 @@ self: super: {
"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_5";
@@ -7671,6 +7771,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7689,6 +7790,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_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7901,6 +8003,7 @@ self: super: {
"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-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7919,6 +8022,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7973,6 +8077,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -7991,6 +8096,7 @@ self: super: {
"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";
@@ -8033,6 +8139,7 @@ self: super: {
"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";
@@ -8050,6 +8157,7 @@ self: super: {
"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";
@@ -8154,6 +8262,7 @@ self: super: {
"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";
@@ -8226,6 +8335,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
@@ -8265,6 +8375,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_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8302,6 +8413,7 @@ self: super: {
"zeromq-haskell" = dontDistribute super."zeromq-haskell";
"zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
"zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix
index 2fb8e65450f..4cfc9a7b4e6 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -2036,31 +2036,6 @@ self: {
}) {};
"BlogLiterately" = callPackage
- ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs
- , containers, data-default, directory, filepath, HaXml, haxr
- , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc
- , pandoc-citeproc, pandoc-types, parsec, process, split, strict
- , tagsoup, temporary, transformers
- }:
- mkDerivation {
- pname = "BlogLiterately";
- version = "0.8.2.2";
- sha256 = "8542a047940fcccbfca14985d22757f9a034c06103cd587e40744aa53e3adc87";
- 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";
- }) {};
-
- "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
@@ -2083,7 +2058,6 @@ self: {
homepage = "http://byorgey.wordpress.com/blogliterately/";
description = "A tool for posting Haskelly articles to blogs";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BlogLiterately-diagrams_0_1_4_3" = callPackage
@@ -2324,8 +2298,8 @@ self: {
({ mkDerivation, base, mtl }:
mkDerivation {
pname = "CC-delcont";
- version = "0.2";
- sha256 = "814d54bd23b7caca1ca90661f1ca9fdd727b178447fc2952a7f75f1fe40e872e";
+ version = "0.2.1.0";
+ sha256 = "6c6b36b7bc7d98727307dab460805834456e2bced4b50d413ce81f55a0ec6203";
libraryHaskellDepends = [ base mtl ];
homepage = "http://code.haskell.org/~dolio/CC-delcont";
description = "Delimited continuations and dynamically scoped variables";
@@ -6553,6 +6527,7 @@ self: {
text transformers trifecta unordered-containers vector
];
executableHaskellDepends = [ ansi-wl-pprint base cmdargs ];
+ jailbreak = true;
homepage = "https://github.com/choener/FormalGrammars";
description = "(Context-free) grammars in formal language theory";
license = stdenv.lib.licenses.gpl3;
@@ -6992,7 +6967,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
- "GLURaw" = callPackage
+ "GLURaw_2_0_0_1" = callPackage
({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }:
mkDerivation {
pname = "GLURaw";
@@ -7000,6 +6975,21 @@ self: {
sha256 = "d561b2e170e6048f7f1b18647fa569f28684291e25924b41f169ecfdc281ab40";
libraryHaskellDepends = [ base OpenGLRaw transformers ];
librarySystemDepends = [ freeglut mesa ];
+ jailbreak = true;
+ homepage = "http://www.haskell.org/haskellwiki/Opengl";
+ description = "A raw binding for the OpenGL graphics system";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
+
+ "GLURaw" = callPackage
+ ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }:
+ mkDerivation {
+ pname = "GLURaw";
+ version = "2.0.0.2";
+ sha256 = "884b3dbefbaabdc66cf8e240d33adb0d491bcf9119e53a7d42b8cf0972df15de";
+ libraryHaskellDepends = [ base OpenGLRaw transformers ];
+ librarySystemDepends = [ freeglut mesa ];
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A raw binding for the OpenGL graphics system";
license = stdenv.lib.licenses.bsd3;
@@ -7103,13 +7093,14 @@ self: {
executableHaskellDepends = [
array base bytestring OpenGLRaw random
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A binding for the OpenGL Utility Toolkit";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
- "GLUT" = callPackage
+ "GLUT_2_7_0_7" = callPackage
({ mkDerivation, array, base, bytestring, containers, freeglut
, mesa, OpenGL, OpenGLRaw, random, StateVar, transformers
}:
@@ -7126,11 +7117,34 @@ self: {
executableHaskellDepends = [
array base bytestring OpenGLRaw random
];
+ jailbreak = true;
+ homepage = "http://www.haskell.org/haskellwiki/Opengl";
+ description = "A binding for the OpenGL Utility Toolkit";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
+
+ "GLUT" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, OpenGL
+ , OpenGLRaw, random, StateVar, transformers
+ }:
+ mkDerivation {
+ pname = "GLUT";
+ version = "2.7.0.10";
+ sha256 = "4b11cbf9b7876c0ec14bf0673006bd23e7ffc7d396568987b326a1b706497569";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ array base containers OpenGL StateVar transformers
+ ];
+ executableHaskellDepends = [
+ array base bytestring OpenGLRaw random
+ ];
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" ];
- }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
+ }) {};
"GLUtil" = callPackage
({ mkDerivation, array, base, bytestring, containers, directory
@@ -7139,8 +7153,8 @@ self: {
}:
mkDerivation {
pname = "GLUtil";
- version = "0.9.0";
- sha256 = "45978efe489c938a0ddf1928a96c956550c08db2d388242a31f86014a2e16e61";
+ version = "0.9.0.1";
+ sha256 = "573a5aca29e64cd2b7610c940235ec43b5a07d9b239fec030d3e3037dc7a1f59";
libraryHaskellDepends = [
array base bytestring containers directory filepath hpp JuicyPixels
linear OpenGL OpenGLRaw transformers vector
@@ -10317,7 +10331,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "HaTeX" = callPackage
+ "HaTeX_3_16_2_0" = callPackage
({ mkDerivation, base, bytestring, containers, matrix, parsec
, QuickCheck, tasty, tasty-quickcheck, text, transformers
, wl-pprint-extras
@@ -10336,6 +10350,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.1";
+ sha256 = "cebe2465b4e23e98392e044c24a706456acaae90964d34de135f04b76e9197b9";
+ 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
@@ -10370,6 +10406,7 @@ self: {
antiquoter base haskell-src-meta HaTeX template-haskell text
uniplate
];
+ jailbreak = true;
description = "Quasiquoters for HaTeX";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -11241,19 +11278,20 @@ self: {
"Hoed" = callPackage
({ mkDerivation, array, base, bytestring, cereal, containers
, directory, filepath, FPretty, libgraph, mtl, process, RBTree
- , regex-posix, template-haskell, threepenny-gui
+ , regex-posix, template-haskell, threepenny-gui, time
}:
mkDerivation {
pname = "Hoed";
- version = "0.3.5";
- sha256 = "b14c654effc7d4926f73966be56de290d9b0d5159371fc184320033aabba1f1f";
+ version = "0.3.6";
+ sha256 = "8508f5077a0a45662af4dddd44bf1ce55fb4cd007b0246ce193ff6d439c351db";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
array base bytestring cereal containers directory filepath FPretty
libgraph mtl process RBTree regex-posix template-haskell
- threepenny-gui
+ threepenny-gui time
];
+ jailbreak = true;
homepage = "https://wiki.haskell.org/Hoed";
description = "Lightweight algorithmic debugging";
license = stdenv.lib.licenses.bsd3;
@@ -12183,24 +12221,21 @@ self: {
"JsonGrammar" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, containers
- , hashable, HUnit, language-typescript, mtl, semigroups
- , stack-prism, template-haskell, test-framework
- , test-framework-hunit, text, time, unordered-containers, vector
+ , HUnit, language-typescript, mtl, stack-prism, test-framework
+ , test-framework-hunit, text, unordered-containers, vector
}:
mkDerivation {
pname = "JsonGrammar";
- version = "1.0.3";
- sha256 = "0d3879f9735dce25bdd52b01d0fb07c92eaf32a79aed1a16a67429cae3b297ee";
+ version = "1.0.4";
+ sha256 = "cb411635c4f9e30e0e59ed4a0b3294b5df78ccd70dc646a0eb896a56451e72bd";
libraryHaskellDepends = [
- aeson attoparsec base bytestring containers hashable
- language-typescript mtl semigroups stack-prism template-haskell
- text time unordered-containers vector
+ aeson attoparsec base bytestring containers language-typescript mtl
+ stack-prism text unordered-containers vector
];
testHaskellDepends = [
aeson base HUnit language-typescript stack-prism test-framework
test-framework-hunit text
];
- jailbreak = true;
homepage = "https://github.com/MedeaMelana/JsonGrammar2";
description = "Combinators for bidirectional JSON parsing";
license = stdenv.lib.licenses.bsd3;
@@ -12510,7 +12545,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "JuicyPixels-repa" = callPackage
+ "JuicyPixels-repa_0_7_0_1" = callPackage
({ mkDerivation, base, bytestring, JuicyPixels, repa, vector }:
mkDerivation {
pname = "JuicyPixels-repa";
@@ -12521,6 +12556,20 @@ self: {
];
description = "Convenience functions to obtain array representations of images";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "JuicyPixels-repa" = callPackage
+ ({ mkDerivation, base, bytestring, JuicyPixels, repa, vector }:
+ mkDerivation {
+ pname = "JuicyPixels-repa";
+ version = "0.7.1.0";
+ sha256 = "b8f11203dd397885fadfd66a03f3720f164fc17f964f3dba6a494afc8411267e";
+ libraryHaskellDepends = [
+ base bytestring JuicyPixels repa vector
+ ];
+ description = "Convenience functions to obtain array representations of images";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"JuicyPixels-scale-dct" = callPackage
@@ -13171,7 +13220,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) ncurses;};
- "LibZip" = callPackage
+ "LibZip_0_10_2" = callPackage
({ mkDerivation, base, bindings-libzip, bytestring, filepath, mtl
, time
}:
@@ -13182,13 +13231,14 @@ self: {
libraryHaskellDepends = [
base bindings-libzip bytestring filepath mtl time
];
+ jailbreak = true;
homepage = "http://bitbucket.org/astanin/hs-libzip/";
description = "Bindings to libzip, a library for manipulating zip archives";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "LibZip_0_11_1" = callPackage
+ "LibZip" = callPackage
({ mkDerivation, base, bindings-libzip, bytestring, directory
, filepath, HUnit, mtl, time, utf8-string
}:
@@ -13203,7 +13253,6 @@ self: {
base bindings-libzip bytestring directory filepath HUnit mtl time
utf8-string
];
- jailbreak = true;
homepage = "http://bitbucket.org/astanin/hs-libzip/";
description = "Bindings to libzip, a library for manipulating zip archives";
license = stdenv.lib.licenses.bsd3;
@@ -13978,7 +14027,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "MissingH" = callPackage
+ "MissingH_1_3_0_1" = callPackage
({ mkDerivation, array, base, containers, directory
, errorcall-eq-instance, filepath, hslogger, HUnit, mtl, network
, old-locale, old-time, parsec, process, QuickCheck, random
@@ -14003,6 +14052,32 @@ self: {
homepage = "http://software.complete.org/missingh";
description = "Large utility library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "MissingH" = 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";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"MissingK" = callPackage
@@ -14950,6 +15025,20 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "NoTrace_0_3_0_1" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "NoTrace";
+ version = "0.3.0.1";
+ sha256 = "a8efac60b33bb9a50b08036b94b75746150aa79e2cf4a10f3c627f4982cd5f4f";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base ];
+ 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
({ mkDerivation, array, base, data-default, vector }:
mkDerivation {
@@ -15303,8 +15392,8 @@ self: {
}:
mkDerivation {
pname = "Obsidian";
- version = "0.1.0.0";
- sha256 = "0174c2d414abd166e9e6aea3efea49faeda46a0a142ec116249192488a54ab91";
+ version = "0.4.0.0";
+ sha256 = "b6cfeea9713bb5eeb20a3eeece383e11df2ef78eab10ad2c64e7513603325dd0";
libraryHaskellDepends = [
base containers cuda language-c-quote mainland-pretty mtl
mwc-random process rdtsc text value-supply vector
@@ -15366,6 +15455,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "Octree_0_5_4_3" = callPackage
+ ({ mkDerivation, AC-Vector, base, markdown-unlit, QuickCheck }:
+ mkDerivation {
+ pname = "Octree";
+ version = "0.5.4.3";
+ sha256 = "4fd8aa7fbbcc2387e06159b0d96c8ede26812ebe85b5d6931ce4bb8b1972b465";
+ libraryHaskellDepends = [ AC-Vector base QuickCheck ];
+ testHaskellDepends = [ AC-Vector base markdown-unlit QuickCheck ];
+ 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
({ mkDerivation, base, QuickCheck }:
mkDerivation {
@@ -15593,6 +15696,26 @@ self: {
base bytestring containers GLURaw ObjectName OpenGLRaw StateVar
text transformers
];
+ jailbreak = true;
+ homepage = "http://www.haskell.org/haskellwiki/Opengl";
+ description = "A binding for the OpenGL graphics system";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "OpenGL_3_0_0_2" = callPackage
+ ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName
+ , OpenGLRaw, StateVar, text, transformers
+ }:
+ mkDerivation {
+ pname = "OpenGL";
+ version = "3.0.0.2";
+ sha256 = "13ee4a24d7caad61d3b63146be6620b523bde5b79f223c291f9f25ae9fd9681a";
+ libraryHaskellDepends = [
+ base bytestring containers GLURaw ObjectName OpenGLRaw StateVar
+ text transformers
+ ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A binding for the OpenGL graphics system";
license = stdenv.lib.licenses.bsd3;
@@ -15605,8 +15728,8 @@ self: {
}:
mkDerivation {
pname = "OpenGL";
- version = "3.0.0.2";
- sha256 = "13ee4a24d7caad61d3b63146be6620b523bde5b79f223c291f9f25ae9fd9681a";
+ version = "3.0.1.0";
+ sha256 = "f45c0c65aa31108391d5d86bb65b3e945e0c1102b7d09db4b356c060f3afa2da";
libraryHaskellDepends = [
base bytestring containers GLURaw ObjectName OpenGLRaw StateVar
text transformers
@@ -15691,7 +15814,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) mesa;};
- "OpenGLRaw" = callPackage
+ "OpenGLRaw_3_1_0_0" = callPackage
({ mkDerivation, base, bytestring, containers, fixed, half, mesa
, text, transformers
}:
@@ -15706,6 +15829,24 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A raw binding for the OpenGL graphics system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) mesa;};
+
+ "OpenGLRaw" = callPackage
+ ({ mkDerivation, base, bytestring, containers, fixed, half, mesa
+ , text, transformers
+ }:
+ mkDerivation {
+ pname = "OpenGLRaw";
+ version = "3.2.0.0";
+ sha256 = "21346bfd1b2b7df9ae97df6f57d81dd03edd57c1965bf5b2befbfffad45229c5";
+ libraryHaskellDepends = [
+ base bytestring containers fixed half text transformers
+ ];
+ librarySystemDepends = [ mesa ];
+ homepage = "http://www.haskell.org/haskellwiki/Opengl";
+ description = "A raw binding for the OpenGL graphics system";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs) mesa;};
@@ -16321,8 +16462,8 @@ self: {
}:
mkDerivation {
pname = "Plot-ho-matic";
- version = "0.9.0.7";
- sha256 = "48b55a36a471db30444ca4118402f2eece7cf20034a9737db5cd4b8723cbbf90";
+ version = "0.9.0.8";
+ sha256 = "22b6f69b384eb9883560b837cdf8dbe70b76099a10818adca803298c22cbe3bd";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -18385,8 +18526,8 @@ self: {
}:
mkDerivation {
pname = "ShellCheck";
- version = "0.4.3";
- sha256 = "df71c303c43ae79846c9f9198a4d4ba2c4c2ee4c06974491d7130fcea0b8efdf";
+ version = "0.4.4";
+ sha256 = "6cc50790d25b6f330037c3612c21460aa75839cc32c65e10ea6b35f9f4488768";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -20944,7 +21085,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "Win32_2_3_1_0" = callPackage
+ "Win32" = callPackage
({ mkDerivation, advapi32, base, bytestring, gdi32, shell32
, shfolder, user32, winmm
}:
@@ -20963,7 +21104,7 @@ self: {
}) {advapi32 = null; gdi32 = null; shell32 = null;
shfolder = null; user32 = null; winmm = null;};
- "Win32" = callPackage
+ "Win32_2_3_1_1" = callPackage
({ mkDerivation, advapi32, base, bytestring, gdi32, shell32
, shfolder, user32, winmm
}:
@@ -21649,7 +21790,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "Yampa" = callPackage
+ "Yampa_0_10_4" = callPackage
({ mkDerivation, base, deepseq, random }:
mkDerivation {
pname = "Yampa";
@@ -21660,6 +21801,20 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Yampa";
description = "Library for programming hybrid systems";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "Yampa" = callPackage
+ ({ mkDerivation, base, deepseq, random }:
+ mkDerivation {
+ pname = "Yampa";
+ version = "0.10.5";
+ sha256 = "ebb5fb1091f913b246fb2e9dd8278d642dbb88bfd248e34fff1ac796299cf6d7";
+ libraryHaskellDepends = [ base deepseq random ];
+ testHaskellDepends = [ base ];
+ 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" ];
}) {};
@@ -21772,6 +21927,7 @@ self: {
libraryHaskellDepends = [
base CC-delcont containers mtl network unix
];
+ jailbreak = true;
homepage = "https://github.com/jkarni/ZipperFS";
description = "Oleg's Zipper FS";
license = stdenv.lib.licenses.publicDomain;
@@ -22332,6 +22488,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "accelerate-typelits" = callPackage
+ ({ mkDerivation, accelerate, accelerate-random, base, HUnit-Plus
+ , mwc-random, QuickCheck, smallcheck, tasty, tasty-hunit
+ , tasty-quickcheck, tasty-smallcheck
+ }:
+ mkDerivation {
+ pname = "accelerate-typelits";
+ version = "0.1.0.0";
+ sha256 = "956e31783b2d6929bc33736af96d528ffbcb8d40bad8a6639496e5fd84c8a120";
+ revision = "2";
+ editedCabalFile = "943e69f04f202c193de0de06d4c70918c2ca8a2f1fa0f9b7cf6e0d501ff196d5";
+ libraryHaskellDepends = [
+ accelerate accelerate-random base mwc-random QuickCheck smallcheck
+ ];
+ testHaskellDepends = [
+ accelerate accelerate-random base HUnit-Plus mwc-random QuickCheck
+ smallcheck tasty tasty-hunit tasty-quickcheck tasty-smallcheck
+ ];
+ description = "a typesafe way encode accelerate matrices and vectors";
+ license = stdenv.lib.licenses.isc;
+ }) {};
+
"accelerate-utility" = callPackage
({ mkDerivation, accelerate, base, utility-ht }:
mkDerivation {
@@ -23131,10 +23309,9 @@ self: {
({ mkDerivation, base, QuickCheck }:
mkDerivation {
pname = "activehs-base";
- version = "0.3.0.3";
- sha256 = "6258c61cd325735f033e5bf388c96502fa4fd283e67c2465ce473f9ffc1a83e0";
+ version = "0.3.0.4";
+ sha256 = "92d516583737ceb2272807eab8280ebb3b36e679c5a219ca9813d0c695efb13e";
libraryHaskellDepends = [ base QuickCheck ];
- jailbreak = true;
description = "Basic definitions for activehs";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -26008,27 +26185,6 @@ self: {
}) {};
"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.0";
- sha256 = "b1822a420e13d253b6f62e096a2a0879aa20e53ab6e2866e95b98ddbee5dec85";
- 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";
- }) {};
-
- "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
@@ -26044,11 +26200,9 @@ 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-apigateway_1_3_7" = callPackage
@@ -26072,24 +26226,6 @@ self: {
}) {};
"amazonka-apigateway" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-apigateway";
- version = "1.4.0";
- sha256 = "0db9b5216d5746d053df9e05217dd19d42623b1ddf3bc1dc33955935730a389c";
- 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";
- }) {};
-
- "amazonka-apigateway_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26102,11 +26238,9 @@ 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-autoscaling_0_3_3" = callPackage
@@ -26172,24 +26306,6 @@ self: {
}) {};
"amazonka-autoscaling" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-autoscaling";
- version = "1.4.0";
- sha256 = "ead0e710801c76fb4568dfb80acafba61428a872760191d808d8ff3304e9dcd8";
- 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";
- }) {};
-
- "amazonka-autoscaling_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26202,32 +26318,12 @@ 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-certificatemanager" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-certificatemanager";
- version = "1.4.0";
- sha256 = "9480dd882cb47061f1c1aa14993d70f20d7b888a27ad3d0279afc7488f543a77";
- 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 Certificate Manager SDK";
- license = "unknown";
- }) {};
-
- "amazonka-certificatemanager_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26240,11 +26336,9 @@ self: {
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-cloudformation_0_3_3" = callPackage
@@ -26310,24 +26404,6 @@ self: {
}) {};
"amazonka-cloudformation" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudformation";
- version = "1.4.0";
- sha256 = "bbd009ca7de4670690206efd08d0b89e97a05e7c1d7bab50d84f521ceebda927";
- 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";
- }) {};
-
- "amazonka-cloudformation_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26340,11 +26416,9 @@ 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-cloudfront_0_3_3" = callPackage
@@ -26410,24 +26484,6 @@ self: {
}) {};
"amazonka-cloudfront" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudfront";
- version = "1.4.0";
- sha256 = "a4d75366edd0b0ffb9b33e83de100b0b6b3dc38b1f5632526881cf269d90f0a6";
- 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";
- }) {};
-
- "amazonka-cloudfront_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26440,11 +26496,9 @@ 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-cloudhsm_0_3_3" = callPackage
@@ -26510,24 +26564,6 @@ self: {
}) {};
"amazonka-cloudhsm" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudhsm";
- version = "1.4.0";
- sha256 = "0cf44dfce3e233729645d77f5c34bcb93c05b86de6d2993e85d6188c0260d82c";
- 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";
- }) {};
-
- "amazonka-cloudhsm_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26540,11 +26576,9 @@ 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-cloudsearch_0_3_3" = callPackage
@@ -26610,24 +26644,6 @@ self: {
}) {};
"amazonka-cloudsearch" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudsearch";
- version = "1.4.0";
- sha256 = "ab38b598a56b9711fcdb889b8d4350707e5d6278c7de8d670595eff6eed81f4a";
- 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";
- }) {};
-
- "amazonka-cloudsearch_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26640,11 +26656,9 @@ 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-domains_0_3_3" = callPackage
@@ -26710,24 +26724,6 @@ self: {
}) {};
"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.0";
- sha256 = "25028c168eef469738ccfe68a4badedf3018d889e24a84a51b28874400354cf8";
- 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";
- }) {};
-
- "amazonka-cloudsearch-domains_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26740,11 +26736,9 @@ 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-cloudtrail_0_3_3" = callPackage
@@ -26810,24 +26804,6 @@ self: {
}) {};
"amazonka-cloudtrail" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudtrail";
- version = "1.4.0";
- sha256 = "29c6efbadddd29f1fb966e24cef7bf680118a1a190b65abe110d7c9bbd7d0428";
- 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";
- }) {};
-
- "amazonka-cloudtrail_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26840,11 +26816,9 @@ 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-cloudwatch_0_3_3" = callPackage
@@ -26910,24 +26884,6 @@ self: {
}) {};
"amazonka-cloudwatch" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudwatch";
- version = "1.4.0";
- sha256 = "cb60c6624aee9b159f6ed4566c589d5d28566451120b9dab6dddeb39d30f2874";
- 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";
- }) {};
-
- "amazonka-cloudwatch_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26940,32 +26896,12 @@ 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-events" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudwatch-events";
- version = "1.4.0";
- sha256 = "5cb2ed261e2410cdeefe5bb32bc9b375d3b2a02c04ad0be75c19a9e063f2be6c";
- 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 Events SDK";
- license = "unknown";
- }) {};
-
- "amazonka-cloudwatch-events_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26978,11 +26914,9 @@ 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 Events SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudwatch-logs_0_3_3" = callPackage
@@ -27048,24 +26982,6 @@ self: {
}) {};
"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.0";
- sha256 = "bf66e0c1a2c2fb87ec3afa981b567b7cbb39a92227dc05b4e89e813c08500f4f";
- 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";
- }) {};
-
- "amazonka-cloudwatch-logs_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27078,11 +26994,9 @@ 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-codecommit_1_3_7" = callPackage
@@ -27106,24 +27020,6 @@ self: {
}) {};
"amazonka-codecommit" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-codecommit";
- version = "1.4.0";
- sha256 = "ed0c9e78cbf0d4466f59f4f9b93bc2bd995138f24377e77351841aa11a5cbda0";
- 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";
- }) {};
-
- "amazonka-codecommit_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27136,11 +27032,9 @@ 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-codedeploy_0_3_3" = callPackage
@@ -27206,24 +27100,6 @@ self: {
}) {};
"amazonka-codedeploy" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-codedeploy";
- version = "1.4.0";
- sha256 = "54dcede69badb68d6bd1b0d44ae39a511840305dca9efe7c60cef08a101810e7";
- 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";
- }) {};
-
- "amazonka-codedeploy_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27236,11 +27112,9 @@ 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-codepipeline_1_3_7" = callPackage
@@ -27264,24 +27138,6 @@ self: {
}) {};
"amazonka-codepipeline" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-codepipeline";
- version = "1.4.0";
- sha256 = "a285b6ccdb0d653e6da8ccd7347d11f69f75882b28843b51d44e1fd00a759019";
- 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";
- }) {};
-
- "amazonka-codepipeline_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27294,11 +27150,9 @@ 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-cognito-identity_0_3_3" = callPackage
@@ -27364,24 +27218,6 @@ self: {
}) {};
"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.0";
- sha256 = "787e0de095b2f8c2d657091c6cd473816d7e51b8c444ced4057570df14bdaaa4";
- 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";
- }) {};
-
- "amazonka-cognito-identity_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27394,11 +27230,9 @@ 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-idp" = callPackage
@@ -27414,7 +27248,6 @@ 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 Provider SDK";
license = "unknown";
@@ -27483,24 +27316,6 @@ self: {
}) {};
"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.0";
- sha256 = "47181614278b6eb836519bdbe34e3a99293a2ae2a1f33dcd1f2278619114fde4";
- 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";
- }) {};
-
- "amazonka-cognito-sync_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27513,11 +27328,9 @@ 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-config_0_3_3" = callPackage
@@ -27583,24 +27396,6 @@ self: {
}) {};
"amazonka-config" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-config";
- version = "1.4.0";
- sha256 = "083d80c419f5ae269171ba8022300f5366ba83cd653e56a1a5b82b2c45131d5f";
- 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";
- }) {};
-
- "amazonka-config_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27613,11 +27408,9 @@ 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-core_0_3_3" = callPackage
@@ -27751,36 +27544,6 @@ self: {
}) {};
"amazonka-core" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring
- , case-insensitive, conduit, conduit-extra, cryptonite, 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.0";
- sha256 = "0001c7e562b35b65c458fadf42ecfb069a6d0fd19d806cd998538f47640996fc";
- libraryHaskellDepends = [
- aeson attoparsec base bifunctors bytestring case-insensitive
- conduit conduit-extra cryptonite 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";
- }) {};
-
- "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
@@ -27808,7 +27571,6 @@ 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
@@ -27874,24 +27636,6 @@ self: {
}) {};
"amazonka-datapipeline" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-datapipeline";
- version = "1.4.0";
- sha256 = "cc3fc5311709e78485fadd429f04c077fab72b73d4be28b6a0d6e8f1a35111f9";
- 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";
- }) {};
-
- "amazonka-datapipeline_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27904,11 +27648,9 @@ 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-devicefarm_1_3_7" = callPackage
@@ -27932,24 +27674,6 @@ self: {
}) {};
"amazonka-devicefarm" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-devicefarm";
- version = "1.4.0";
- sha256 = "8b1bdbb0ff4778cf5c7f72b5a01509b182b4d90628e640ef0fa6709ce09dbea0";
- 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";
- }) {};
-
- "amazonka-devicefarm_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27962,11 +27686,9 @@ 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-directconnect_0_3_3" = callPackage
@@ -28032,24 +27754,6 @@ self: {
}) {};
"amazonka-directconnect" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-directconnect";
- version = "1.4.0";
- sha256 = "6450a238d41679b03d02313c8aa01082c516d888723a73f4e2e5f0f83038d783";
- 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";
- }) {};
-
- "amazonka-directconnect_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28062,32 +27766,12 @@ 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-dms" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-dms";
- version = "1.4.0";
- sha256 = "0473dfb47b3d0896240b7a74ad769ec44e39bfd77a264d64ff1c0b1f0c032392";
- 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 Database Migration Service SDK";
- license = "unknown";
- }) {};
-
- "amazonka-dms_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28100,11 +27784,9 @@ self: {
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-ds_1_3_7" = callPackage
@@ -28128,24 +27810,6 @@ self: {
}) {};
"amazonka-ds" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-ds";
- version = "1.4.0";
- sha256 = "8452fa1e22b4be61794fb5dd613468c4c320d1be60a935064eee215a472e1db0";
- 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";
- }) {};
-
- "amazonka-ds_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28158,11 +27822,9 @@ 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-dynamodb_0_3_3" = callPackage
@@ -28228,24 +27890,6 @@ self: {
}) {};
"amazonka-dynamodb" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-dynamodb";
- version = "1.4.0";
- sha256 = "0647f2f6f803996b2e4ac3d7cc991582f1332d458e793afe439e2a260e89914b";
- 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";
- }) {};
-
- "amazonka-dynamodb_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28258,11 +27902,9 @@ 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-streams_1_3_7" = callPackage
@@ -28286,24 +27928,6 @@ self: {
}) {};
"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.0";
- sha256 = "34e548d216e8eec247ae3563fa780fa072e137e1102866ea2f0e43ae5d3c4a59";
- 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";
- }) {};
-
- "amazonka-dynamodb-streams_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28316,11 +27940,9 @@ 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-ec2_0_3_3" = callPackage
@@ -28406,8 +28028,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-ec2";
- version = "1.4.0";
- sha256 = "dfe0782c39bf6ac20cd60273acaa8008ad5f2572ab5ea4868dcf577f77bdcb80";
+ version = "1.4.1";
+ sha256 = "677a49261781900b757307b5ab5714862016f777d12d246536a30c9806e9f6bf";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
@@ -28419,45 +28041,7 @@ self: {
license = "unknown";
}) {};
- "amazonka-ec2_1_4_1" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-ec2";
- version = "1.4.1";
- sha256 = "677a49261781900b757307b5ab5714862016f777d12d246536a30c9806e9f6bf";
- 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 Elastic Compute Cloud 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.0";
- sha256 = "868774dc8cd8d0ef020a1166e92bf3430b3a2746c7467b911e7824981da9862f";
- 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 Registry SDK";
- license = "unknown";
- }) {};
-
- "amazonka-ecr_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28470,11 +28054,9 @@ 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 Registry SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-ecs_0_3_3" = callPackage
@@ -28540,24 +28122,6 @@ self: {
}) {};
"amazonka-ecs" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-ecs";
- version = "1.4.0";
- sha256 = "38b5a174e2835095eab92e0352202744f9cca05f33350518de9bf8ef77416cdb";
- 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";
- }) {};
-
- "amazonka-ecs_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28570,11 +28134,9 @@ 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-efs_1_3_7" = callPackage
@@ -28598,24 +28160,6 @@ self: {
}) {};
"amazonka-efs" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-efs";
- version = "1.4.0";
- sha256 = "f175a1b7c34225bf09983035e047d8ed4c6510c2aa9ce9fa3e7db6bd791ae713";
- 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";
- }) {};
-
- "amazonka-efs_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28628,11 +28172,9 @@ 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-elasticache_0_3_3" = callPackage
@@ -28698,24 +28240,6 @@ self: {
}) {};
"amazonka-elasticache" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-elasticache";
- version = "1.4.0";
- sha256 = "d2006ef83242d723c83bf44e33d4160e65316fdbf8756ef03167f11ec133e55b";
- 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";
- }) {};
-
- "amazonka-elasticache_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28728,11 +28252,9 @@ 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-elasticbeanstalk_0_3_3" = callPackage
@@ -28798,24 +28320,6 @@ self: {
}) {};
"amazonka-elasticbeanstalk" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-elasticbeanstalk";
- version = "1.4.0";
- sha256 = "b83c1eb2797c3106c168323c698224ae3825b47482d321c8240b017d1e6d0d11";
- 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";
- }) {};
-
- "amazonka-elasticbeanstalk_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28828,11 +28332,9 @@ 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-elasticsearch_1_3_7" = callPackage
@@ -28856,24 +28358,6 @@ self: {
}) {};
"amazonka-elasticsearch" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-elasticsearch";
- version = "1.4.0";
- sha256 = "717e01030f814e813103a2a2822d8f0de4fb1228806cdad1fc8282fb2b954df0";
- 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";
- }) {};
-
- "amazonka-elasticsearch_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28886,11 +28370,9 @@ 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-elastictranscoder_0_3_3" = callPackage
@@ -28956,24 +28438,6 @@ self: {
}) {};
"amazonka-elastictranscoder" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-elastictranscoder";
- version = "1.4.0";
- sha256 = "24d6288da5bfb182a2bf93ae30dfcd3411ca77ad65f7481336038a895161ff3a";
- 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";
- }) {};
-
- "amazonka-elastictranscoder_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28986,11 +28450,9 @@ 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-elb_0_3_3" = callPackage
@@ -29056,24 +28518,6 @@ self: {
}) {};
"amazonka-elb" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-elb";
- version = "1.4.0";
- sha256 = "96a8724d1d57c4e5428b5dc8c37f281942b8d71e555f28d458b0e10d2596425a";
- 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";
- }) {};
-
- "amazonka-elb_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29086,11 +28530,9 @@ 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-emr_0_3_3" = callPackage
@@ -29156,24 +28598,6 @@ self: {
}) {};
"amazonka-emr" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-emr";
- version = "1.4.0";
- sha256 = "91fff413f9c29fdd7508dd3d3266af44cf622fd0779daf8d139d714368bbe0c3";
- 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";
- }) {};
-
- "amazonka-emr_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29186,32 +28610,12 @@ 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-gamelift" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-gamelift";
- version = "1.4.0";
- sha256 = "042fb93fd5afe3508974d3eaf8b4207d2ebb4cdd3c9b03d1e88c7743d98af2e4";
- 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 GameLift SDK";
- license = "unknown";
- }) {};
-
- "amazonka-gamelift_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29224,11 +28628,9 @@ self: {
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-glacier_0_3_3" = callPackage
@@ -29294,24 +28696,6 @@ self: {
}) {};
"amazonka-glacier" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-glacier";
- version = "1.4.0";
- sha256 = "40e0655b3ff4a800e16067e5169e27915ad85a7f88a5fafc05da81d015807299";
- 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";
- }) {};
-
- "amazonka-glacier_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29324,11 +28708,9 @@ 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-iam_0_3_3" = callPackage
@@ -29394,24 +28776,6 @@ self: {
}) {};
"amazonka-iam" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-iam";
- version = "1.4.0";
- sha256 = "0b2b0448b510008265630e9f446a8bd902e7b7aa0082d16beb44947767b242b1";
- 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";
- }) {};
-
- "amazonka-iam_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29424,11 +28788,9 @@ 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-importexport_0_3_3" = callPackage
@@ -29494,24 +28856,6 @@ self: {
}) {};
"amazonka-importexport" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-importexport";
- version = "1.4.0";
- sha256 = "8f7151dc995efd7e4fd431e334747aa32162cdbea3b2801a4546a8835e0b5890";
- 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";
- }) {};
-
- "amazonka-importexport_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29524,11 +28868,9 @@ 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-inspector_1_3_7" = callPackage
@@ -29552,24 +28894,6 @@ self: {
}) {};
"amazonka-inspector" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-inspector";
- version = "1.4.0";
- sha256 = "ec30d3990a60a48052d602afc72c7e68c328221d1d6091a32ec34bc5cbbdd3a8";
- 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";
- }) {};
-
- "amazonka-inspector_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29582,11 +28906,9 @@ 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-iot_1_3_7" = callPackage
@@ -29610,24 +28932,6 @@ self: {
}) {};
"amazonka-iot" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-iot";
- version = "1.4.0";
- sha256 = "1de4267169ad51c49cf580a7b0adc2012a752f029eb7304b0d54bb794d06144c";
- 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";
- }) {};
-
- "amazonka-iot_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29640,11 +28944,9 @@ 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-dataplane_1_3_7" = callPackage
@@ -29668,24 +28970,6 @@ self: {
}) {};
"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.0";
- sha256 = "a1d211e4c4aa712853b57f2f2b684b0f84354d7fde659b8d76b6e7e4346b934b";
- 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";
- }) {};
-
- "amazonka-iot-dataplane_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29698,11 +28982,9 @@ 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-kinesis_0_3_3" = callPackage
@@ -29768,24 +29050,6 @@ self: {
}) {};
"amazonka-kinesis" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-kinesis";
- version = "1.4.0";
- sha256 = "616c6686de7ea7c11aee5d27bf91ff6034de2e2b0439b97be936b9541bb4c4e2";
- 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";
- }) {};
-
- "amazonka-kinesis_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29798,11 +29062,9 @@ 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-firehose_1_3_7" = callPackage
@@ -29826,24 +29088,6 @@ self: {
}) {};
"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.0";
- sha256 = "effcb460fb24ba7efa6236e7a5f2b590df7e56ca335f5f8a03e454f063b2738a";
- 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";
- }) {};
-
- "amazonka-kinesis-firehose_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29856,11 +29100,9 @@ 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-kms_0_3_3" = callPackage
@@ -29926,24 +29168,6 @@ self: {
}) {};
"amazonka-kms" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-kms";
- version = "1.4.0";
- sha256 = "ad32894e1a75ab0af4142dc82a8518ad1926267824a373860ac7258088ddd6b0";
- 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";
- }) {};
-
- "amazonka-kms_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29956,11 +29180,9 @@ 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-lambda_0_3_3" = callPackage
@@ -30026,24 +29248,6 @@ self: {
}) {};
"amazonka-lambda" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-lambda";
- version = "1.4.0";
- sha256 = "19b9c73538267eaaea661bc9bc3b88cfbefde4ba0d43b307eb7d0d3ec457618f";
- 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";
- }) {};
-
- "amazonka-lambda_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30056,11 +29260,9 @@ 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-marketplace-analytics_1_3_7" = callPackage
@@ -30084,24 +29286,6 @@ self: {
}) {};
"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.0";
- sha256 = "e51d718ee9ca998a4563cfca375f8be5a617009e65b486afafcbca191efb425e";
- 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";
- }) {};
-
- "amazonka-marketplace-analytics_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30114,32 +29298,12 @@ 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-metering" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-marketplace-metering";
- version = "1.4.0";
- sha256 = "33d765f729c127cd474012395e0cf98a6dd0e2ed22c9d6adb6adedf0b001d856";
- 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 Metering SDK";
- license = "unknown";
- }) {};
-
- "amazonka-marketplace-metering_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30152,11 +29316,9 @@ 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 Metering SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-ml_0_3_6" = callPackage
@@ -30194,24 +29356,6 @@ self: {
}) {};
"amazonka-ml" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-ml";
- version = "1.4.0";
- sha256 = "f333580d48a6c65b3e019f620758fc1407be75edc01e6f2d9fc690a2852e883c";
- 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";
- }) {};
-
- "amazonka-ml_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30224,11 +29368,9 @@ 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-opsworks_0_3_3" = callPackage
@@ -30294,24 +29436,6 @@ self: {
}) {};
"amazonka-opsworks" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-opsworks";
- version = "1.4.0";
- sha256 = "e5c85a070a7ead1447bf31482dfb0149d15c38b6dc0bc48e8690ceb1eac9076d";
- 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";
- }) {};
-
- "amazonka-opsworks_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30324,11 +29448,9 @@ 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-rds_0_3_3" = callPackage
@@ -30399,8 +29521,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-rds";
- version = "1.4.0";
- sha256 = "7846b510b312cadb76b49374d8fdc199698cb696ed8bcc118043c079ac1ddd84";
+ version = "1.4.1";
+ sha256 = "6c4443c56b947b6b60e4dcfa84390f35f081d7bd3e80f2e5d8bcecb49be3e045";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
@@ -30412,26 +29534,6 @@ self: {
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
- "amazonka-rds_1_4_1" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-rds";
- version = "1.4.1";
- sha256 = "6c4443c56b947b6b60e4dcfa84390f35f081d7bd3e80f2e5d8bcecb49be3e045";
- 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 Relational Database Service SDK";
- license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"amazonka-redshift_0_3_3" = callPackage
({ mkDerivation, amazonka-core, base }:
mkDerivation {
@@ -30495,24 +29597,6 @@ self: {
}) {};
"amazonka-redshift" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-redshift";
- version = "1.4.0";
- sha256 = "a92f1b58416098f623d83b66cb3b0e09c3505fe10675d6cffb1ee8f14a22ed9a";
- 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";
- }) {};
-
- "amazonka-redshift_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30525,11 +29609,9 @@ 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-route53_0_3_3" = callPackage
@@ -30609,24 +29691,6 @@ self: {
}) {};
"amazonka-route53" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-route53";
- version = "1.4.0";
- sha256 = "a547fd8c2c8736e06f8e3473ed7ed344f4304c6cb869288ec7173791d6ad9687";
- 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";
- }) {};
-
- "amazonka-route53_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30639,11 +29703,9 @@ 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-domains_0_3_3" = callPackage
@@ -30709,24 +29771,6 @@ self: {
}) {};
"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.0";
- sha256 = "7a3a3cb640e95cfb33fb7d26c170ab7cd994664927e836f7556230b8393665e5";
- 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";
- }) {};
-
- "amazonka-route53-domains_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30739,11 +29783,9 @@ 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-s3_0_3_3" = callPackage
@@ -30815,8 +29857,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-s3";
- version = "1.4.0";
- sha256 = "db50ccae296972a98c7d4de2a9c618c2e9d2d0f2b8cd66befdebde0971414538";
+ version = "1.4.1";
+ sha256 = "8ecb8988afbebc6f43b3d011a8a81536d2e49863aeb6f912b29d7170be920831";
libraryHaskellDepends = [ amazonka-core base lens text ];
testHaskellDepends = [
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
@@ -30828,26 +29870,6 @@ self: {
license = "unknown";
}) {};
- "amazonka-s3_1_4_1" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-s3";
- version = "1.4.1";
- sha256 = "8ecb8988afbebc6f43b3d011a8a81536d2e49863aeb6f912b29d7170be920831";
- libraryHaskellDepends = [ amazonka-core base lens text ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- jailbreak = true;
- 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 {
@@ -30911,24 +29933,6 @@ self: {
}) {};
"amazonka-sdb" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-sdb";
- version = "1.4.0";
- sha256 = "aebe7ba2ba8492bace5d04971a4164735a26c8f3b99520d516a93d2c4f9f199b";
- 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";
- }) {};
-
- "amazonka-sdb_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30941,11 +29945,9 @@ 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-ses_0_3_3" = callPackage
@@ -31011,24 +30013,6 @@ self: {
}) {};
"amazonka-ses" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-ses";
- version = "1.4.0";
- sha256 = "0823d15557f3895bf904439334fd9f705aa06329ec8f4a81abad9298c178acdd";
- 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";
- }) {};
-
- "amazonka-ses_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31041,11 +30025,9 @@ 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-sns_0_3_3" = callPackage
@@ -31111,24 +30093,6 @@ self: {
}) {};
"amazonka-sns" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-sns";
- version = "1.4.0";
- sha256 = "d51e054d16a57a199148275cdf80d48e11d6f53c7588e690aad6b36ade3cc9df";
- 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";
- }) {};
-
- "amazonka-sns_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31141,11 +30105,9 @@ 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-sqs_0_3_3" = callPackage
@@ -31216,8 +30178,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-sqs";
- version = "1.4.0";
- sha256 = "dc4d463865e0ec9bffd5f1dc8822fff3a4c7feef68457e7191107a5af951c624";
+ version = "1.4.1";
+ sha256 = "a0c05964c0e72538b79713a438d4af22ae407f5af3de0156d54362afd076db59";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
@@ -31229,26 +30191,6 @@ self: {
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
- "amazonka-sqs_1_4_1" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-sqs";
- version = "1.4.1";
- sha256 = "a0c05964c0e72538b79713a438d4af22ae407f5af3de0156d54362afd076db59";
- 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 Simple Queue Service SDK";
- license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"amazonka-ssm_0_3_3" = callPackage
({ mkDerivation, amazonka-core, base }:
mkDerivation {
@@ -31312,24 +30254,6 @@ self: {
}) {};
"amazonka-ssm" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-ssm";
- version = "1.4.0";
- sha256 = "13e840b86ac7c158b7a6188ca62f2b3f1805a472ebbeadc3504d5f9dc28f0430";
- 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";
- }) {};
-
- "amazonka-ssm_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31342,11 +30266,9 @@ 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-storagegateway_0_3_3" = callPackage
@@ -31412,24 +30334,6 @@ self: {
}) {};
"amazonka-storagegateway" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-storagegateway";
- version = "1.4.0";
- sha256 = "a731304356de28567f23d1fdeeb53d0dbcd73a3cf44f02a6967a49d4799f1445";
- 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";
- }) {};
-
- "amazonka-storagegateway_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31442,11 +30346,9 @@ 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-sts_0_3_3" = callPackage
@@ -31512,24 +30414,6 @@ self: {
}) {};
"amazonka-sts" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-sts";
- version = "1.4.0";
- sha256 = "f44862dd66f380419d208bdcf153d5d1a030df0390eafaff846799ffa6062bee";
- 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";
- }) {};
-
- "amazonka-sts_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31542,11 +30426,9 @@ 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-support_0_3_3" = callPackage
@@ -31612,24 +30494,6 @@ self: {
}) {};
"amazonka-support" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-support";
- version = "1.4.0";
- sha256 = "7cac8c6886e278c8304f8551ef850355295411f50e58ead6ff50ef75c44e40dd";
- 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";
- }) {};
-
- "amazonka-support_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31642,11 +30506,9 @@ 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-swf_0_3_3" = callPackage
@@ -31718,8 +30580,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-swf";
- version = "1.4.0";
- sha256 = "fd968d74aa6767067623bfed0ef172d9d8417083695d1863a9f24c4a733588b2";
+ version = "1.4.1";
+ sha256 = "96bb747a87dc3938a076179e478d6eb52215ba593edd1c2178b660b983acb9c3";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
@@ -31731,26 +30593,6 @@ self: {
license = "unknown";
}) {};
- "amazonka-swf_1_4_1" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-swf";
- version = "1.4.1";
- sha256 = "96bb747a87dc3938a076179e478d6eb52215ba593edd1c2178b660b983acb9c3";
- 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 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
@@ -31776,28 +30618,6 @@ self: {
}) {};
"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.0";
- sha256 = "b9a9e1892660e210bfe46fca3ee1cba518baa97c79a63036e38c4cc9e50d25a4";
- 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";
- }) {};
-
- "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
@@ -31814,11 +30634,9 @@ 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-waf_1_3_7" = callPackage
@@ -31842,24 +30660,6 @@ self: {
}) {};
"amazonka-waf" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-waf";
- version = "1.4.0";
- sha256 = "b07d07d1f489edbfb6e8ca82131276eaaa078bd726bf59d12deb5789b1dc81cb";
- 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";
- }) {};
-
- "amazonka-waf_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31872,11 +30672,9 @@ 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-workspaces_0_3_6" = callPackage
@@ -31914,24 +30712,6 @@ self: {
}) {};
"amazonka-workspaces" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-workspaces";
- version = "1.4.0";
- sha256 = "a88bb14573f71fa8f8d9c3e21f014f0ae4a79e1931996b218902f500c205206d";
- 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";
- }) {};
-
- "amazonka-workspaces_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31944,11 +30724,9 @@ 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;
}) {};
"ampersand" = callPackage
@@ -32987,8 +31765,8 @@ self: {
}:
mkDerivation {
pname = "apiary";
- version = "2.0.1.1";
- sha256 = "dd804df65c6ffc9f3bdd8994dd39668796e54e424b6a140bd7577551e7220554";
+ version = "2.0.2";
+ sha256 = "b9a08995b45d7b9bbea2239a417ce0409c5c36515cda412fdc62f8e64e9bb594";
libraryHaskellDepends = [
aeson base blaze-builder blaze-html blaze-markup bytestring
bytestring-read case-insensitive data-default-class exceptions
@@ -33104,18 +31882,17 @@ self: {
}) {};
"apiary-http-client" = callPackage
- ({ mkDerivation, apiary, base, bytestring, data-default-class
- , http-client, http-types, text, transformers, types-compat, wai
+ ({ mkDerivation, apiary, base, bytestring, bytestring-builder
+ , data-default-class, http-client, http-types, text, transformers
+ , types-compat, wai
}:
mkDerivation {
pname = "apiary-http-client";
- version = "0.1.1.0";
- sha256 = "4e7b6ba5741f0f194ee23679cceb87167a7bac44ad2bca7789e4488320e103bd";
- revision = "2";
- editedCabalFile = "8238cab98333b055b04dd16fed558be1c969b7004e1ab06ebf2567ee9a64523b";
+ version = "0.1.2.0";
+ sha256 = "056fdeea4f3cb0c93a4b36e3c1d1695c45804ecdef45e9a77e6f9a9c87895413";
libraryHaskellDepends = [
- apiary base bytestring data-default-class http-client http-types
- text transformers types-compat wai
+ apiary base bytestring bytestring-builder data-default-class
+ http-client http-types text transformers types-compat wai
];
homepage = "https://github.com/winterland1989/apiary-http-client";
description = "A http client for Apiary";
@@ -34702,6 +33479,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ascii-flatten" = callPackage
+ ({ mkDerivation, base, text }:
+ mkDerivation {
+ pname = "ascii-flatten";
+ version = "0.1.1.0";
+ sha256 = "6b561658a8d7eb1737374eece298cf49dc773ca4a5b93c3c4df11e60d9ed6fcd";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base ];
+ executableHaskellDepends = [ base text ];
+ homepage = "https://github.com/danchoi/ascii-flatten";
+ description = "Flattens European non-ASCII characaters into ASCII";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"ascii-progress_0_3_2_0" = callPackage
({ mkDerivation, async, base, concurrent-output, data-default
, hspec, QuickCheck, time
@@ -35596,7 +34388,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "atomic-primops" = callPackage
+ "atomic-primops_0_8_0_3" = callPackage
({ mkDerivation, base, ghc-prim, primitive }:
mkDerivation {
pname = "atomic-primops";
@@ -35606,9 +34398,10 @@ self: {
homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
description = "A safe approach to CAS and other atomic ops in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "atomic-primops_0_8_0_4" = callPackage
+ "atomic-primops" = callPackage
({ mkDerivation, base, ghc-prim, primitive }:
mkDerivation {
pname = "atomic-primops";
@@ -35618,7 +34411,6 @@ self: {
homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
description = "A safe approach to CAS and other atomic ops in Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"atomic-primops-foreign" = callPackage
@@ -35662,8 +34454,8 @@ self: {
}:
mkDerivation {
pname = "atomic-write";
- version = "0.2.0.4";
- sha256 = "891bf2cf364bae578fe74d320324d635850865b6fa887cfe9fb4b9b0bbdf09f8";
+ version = "0.2.0.5";
+ sha256 = "dbc7b4c31c734ad12d8f6c05b5d1384ee57f50ad8ff1a703d560b39e2f0458c5";
libraryHaskellDepends = [
base bytestring directory filepath temporary text unix-compat
];
@@ -36221,7 +35013,6 @@ 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;
@@ -36361,6 +35152,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "authenticate-oauth_1_5_1_2" = callPackage
+ ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring
+ , crypto-pubkey-types, data-default, http-client, http-types
+ , random, RSA, SHA, time, transformers
+ }:
+ mkDerivation {
+ pname = "authenticate-oauth";
+ version = "1.5.1.2";
+ sha256 = "294279ff1a4e746eedb5186d8230c34b2ffa770f020d30341424a59fedb76a33";
+ libraryHaskellDepends = [
+ base base64-bytestring blaze-builder bytestring crypto-pubkey-types
+ data-default http-client http-types random RSA SHA time
+ transformers
+ ];
+ 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 {
@@ -36463,7 +35274,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "auto-update" = callPackage
+ "auto-update_0_1_3_1" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "auto-update";
@@ -36473,9 +35284,10 @@ self: {
homepage = "https://github.com/yesodweb/wai";
description = "Efficiently run periodic, on-demand actions";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "auto-update_0_1_4" = callPackage
+ "auto-update" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "auto-update";
@@ -36485,7 +35297,6 @@ self: {
homepage = "https://github.com/yesodweb/wai";
description = "Efficiently run periodic, on-demand actions";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"autoexporter" = callPackage
@@ -36527,13 +35338,14 @@ self: {
}:
mkDerivation {
pname = "automotive-cse";
- version = "0.1.3.0";
- sha256 = "71b59c50b29748ae5991d53af5a7bed6ee283942e1df69c0b3c9da8107d06b9c";
+ version = "0.1.8.0";
+ sha256 = "6d13185816e92bc6bd146030525c19980ceb1c12887b08e93fa46b7a9fb9db71";
libraryHaskellDepends = [
base bytestring bytestring-short cereal cryptonite memory
];
testHaskellDepends = [
- base bytestring cryptonite QuickCheck quickcheck-simple
+ base bytestring bytestring-short cryptonite QuickCheck
+ quickcheck-simple
];
description = "Automotive CSE emulation";
license = stdenv.lib.licenses.bsd3;
@@ -36785,6 +35597,7 @@ self: {
aeson avers base bytestring cookie http-api-data servant text time
vector
];
+ doHaddock = false;
homepage = "http://github.com/wereHamster/avers-api";
description = "Types describing the core and extended Avers APIs";
license = stdenv.lib.licenses.mit;
@@ -36868,8 +35681,8 @@ self: {
}:
mkDerivation {
pname = "avers-server";
- version = "0.0.4";
- sha256 = "5d3d28135e20af8c92fd5b36ff4336b2858ac595b3eed3f33458a57f1c19ad4d";
+ version = "0.0.5";
+ sha256 = "c72bd19a4f46c733875c887a0efcc7340f9c5b4571a5f74773d3d835297b2176";
libraryHaskellDepends = [
aeson avers avers-api base base64-bytestring bytestring
bytestring-conversion containers cookie cryptohash either
@@ -38519,17 +37332,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "base_4_8_2_0" = callPackage
- ({ mkDerivation, ghc-prim, rts }:
+ "base_4_9_0_0" = callPackage
+ ({ mkDerivation, ghc-prim, invalid-cabal-flag-settings, rts }:
mkDerivation {
pname = "base";
- version = "4.8.2.0";
- sha256 = "f2bc9eb2773f74c231a25f32dc3b47b704cccc6b9064b6e1140dded364fafe8c";
- libraryHaskellDepends = [ ghc-prim rts ];
+ version = "4.9.0.0";
+ sha256 = "de577e8bd48de97be954c32951b9544ecdbbede721042c71f7f611af4ba8be2d";
+ libraryHaskellDepends = [
+ ghc-prim invalid-cabal-flag-settings rts
+ ];
+ jailbreak = true;
description = "Basic libraries";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
+ broken = true;
+ }) {invalid-cabal-flag-settings = null;};
"base-compat_0_5_0" = callPackage
({ mkDerivation, base, errorcall-eq-instance, hspec, QuickCheck
@@ -38641,6 +37458,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "base-noprelude_4_9_0_0" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "base-noprelude";
+ version = "4.9.0.0";
+ 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
({ mkDerivation, base, ghc-prim, hspec, QuickCheck }:
mkDerivation {
@@ -38930,11 +37762,11 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "base-prelude";
- version = "1";
- sha256 = "ee443310c2b3a18471f05b3c8c05ce39ea6f7825a0bf78028a06d59b3f28469c";
+ version = "1.0.1.1";
+ sha256 = "dccf0a9a3b45f950bac92b6d87997c0a2a4304e40027204b12d018698b7a31b5";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/nikita-volkov/base-prelude";
- description = "The most complete prelude formed from only the \"base\" package";
+ description = "The most complete prelude formed solely from the \"base\" package";
license = stdenv.lib.licenses.mit;
}) {};
@@ -39272,7 +38104,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "basic-prelude" = callPackage
+ "basic-prelude_0_5_1" = callPackage
({ mkDerivation, base, bytestring, containers, filepath, hashable
, lifted-base, ReadArgs, safe, text, transformers
, unordered-containers, vector
@@ -39288,6 +38120,25 @@ self: {
homepage = "https://github.com/snoyberg/basic-prelude";
description = "An enhanced core prelude; a common foundation for alternate preludes";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "basic-prelude" = callPackage
+ ({ mkDerivation, base, bytestring, containers, filepath, hashable
+ , lifted-base, ReadArgs, safe, text, transformers
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "basic-prelude";
+ version = "0.5.2";
+ sha256 = "96666a0ddd6b12eaa4d172cf76e0a4b3846da49d96a2b68d627e949ea7c75752";
+ libraryHaskellDepends = [
+ base bytestring containers filepath hashable lifted-base ReadArgs
+ safe text transformers unordered-containers vector
+ ];
+ homepage = "https://github.com/snoyberg/basic-prelude";
+ description = "An enhanced core prelude; a common foundation for alternate preludes";
+ license = stdenv.lib.licenses.mit;
}) {};
"basic-sop" = callPackage
@@ -39618,8 +38469,8 @@ self: {
({ mkDerivation, base, criterion, silently, text, turtle }:
mkDerivation {
pname = "bench";
- version = "1.0.0";
- sha256 = "377f85a056c84e5a5e3e8b5ddd6fd2bf8e061b1025c48eac1053df3ff988dcca";
+ version = "1.0.1";
+ sha256 = "b90b0789604d351aa97d736492c4b10be9bebaa369efc4145579f9f6d2eeb019";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base criterion silently text turtle ];
@@ -40819,6 +39670,8 @@ self: {
pname = "binary-strict";
version = "0.4.8.3";
sha256 = "8eb8fb5bd9fdae7bc39df27e3273bdf7e7903c88c517c5646616dd8f04a92cb1";
+ revision = "1";
+ editedCabalFile = "5d905811b3b81ca6d2bac8d764e732ca0595de486e568693ef9d228de1279df8";
libraryHaskellDepends = [ array base bytestring containers mtl ];
homepage = "https://github.com/idontgetoutmuch/binary-low-level";
description = "Binary deserialisation using strict ByteStrings";
@@ -41586,7 +40439,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {v4l2 = null;};
- "bindings-libzip" = callPackage
+ "bindings-libzip_0_10_2" = callPackage
({ mkDerivation, base, bindings-DSL, libzip }:
mkDerivation {
pname = "bindings-libzip";
@@ -41600,7 +40453,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) libzip;};
- "bindings-libzip_0_11" = callPackage
+ "bindings-libzip" = callPackage
({ mkDerivation, base, bindings-DSL, libzip }:
mkDerivation {
pname = "bindings-libzip";
@@ -42362,6 +41215,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "bitcoin-payment-channel" = callPackage
+ ({ mkDerivation, base, base16-bytestring, base58string, binary
+ , bytestring, cereal, haskoin-core, hexstring, text, time
+ }:
+ mkDerivation {
+ pname = "bitcoin-payment-channel";
+ version = "0.1.0.0";
+ sha256 = "f474aab5245a31c50916c39f20ad674b624dba42c4059ff0be03c263da73f148";
+ libraryHaskellDepends = [
+ base base16-bytestring base58string binary bytestring cereal
+ haskoin-core hexstring text time
+ ];
+ homepage = "https://github.com/runeksvendsen/bitcoin-payment-channel";
+ description = "Library for working with Bitcoin payment channels";
+ license = stdenv.lib.licenses.publicDomain;
+ }) {};
+
"bitcoin-rpc" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, cereal
, containers, ghc-prim, HTTP, HUnit, mtl, network, QuickCheck
@@ -42687,8 +41557,8 @@ self: {
}:
mkDerivation {
pname = "bitvec";
- version = "0.1.0.1";
- sha256 = "048343cd7a5a77261b67722c3b0d4ca7da159712e0642a72968fbd7eb138ef7d";
+ version = "0.1.0.2";
+ sha256 = "62be501c4b407dff41c4faaecfd74b9eba6ae87f7d5de98339097b79f9b84995";
libraryHaskellDepends = [ base primitive vector ];
testHaskellDepends = [
base HUnit primitive QuickCheck test-framework test-framework-hunit
@@ -42735,8 +41605,8 @@ self: {
}:
mkDerivation {
pname = "bitx-bitcoin";
- version = "0.7.0.2";
- sha256 = "f86b55294f029255a5329137b3f075daf495a1f7f462aed66ac273f368985d02";
+ version = "0.8.0.0";
+ sha256 = "6df64f668a4949fe3efc5f695efef7e05edb6b6d47559ae1a95d5355eee62dd2";
libraryHaskellDepends = [
aeson base bytestring http-client http-client-tls http-types
microlens microlens-th network QuickCheck scientific split text
@@ -42943,8 +41813,8 @@ self: {
pname = "blank-canvas";
version = "0.6";
sha256 = "2a0e5c4fc50b1ce43e56b1a11056186c21d565e225da36f90c58f8c0a70f48b3";
- revision = "3";
- editedCabalFile = "3a1b54006324de595823f744e3f2592e85629008eea36f4e5d7b206a91085fdf";
+ revision = "5";
+ editedCabalFile = "a2da8be74560f47fd5fc7a5ff13849485e8bf4e8b4e4581091a6810904b64c76";
libraryHaskellDepends = [
aeson base base-compat base64-bytestring bytestring colour
containers data-default-class http-types kansas-comet mime-types
@@ -43008,8 +41878,8 @@ self: {
}:
mkDerivation {
pname = "blatex";
- version = "0.1.0.8";
- sha256 = "461a3fd0f9052a2eedbb635bcc5b45020ed78535c4be3bef02dced9192951cb6";
+ version = "0.1.0.9";
+ sha256 = "b449673cae228ce4b761b5a4c3ae72aa04e1e90c14770b2488ebedccc51a2aa0";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -44746,23 +43616,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "brick_0_5_1" = callPackage
+ "brick_0_6_4" = callPackage
({ mkDerivation, base, containers, contravariant, data-default
- , deepseq, lens, template-haskell, text, text-zipper, transformers
- , vector, vty
+ , deepseq, microlens, microlens-th, template-haskell, text
+ , text-zipper, transformers, vector, vty
}:
mkDerivation {
pname = "brick";
- version = "0.5.1";
- sha256 = "eb3d43ecd16ac14da9846941ea834ebb99bbfc2f95008dc109b3fa2fef7d9d8d";
+ version = "0.6.4";
+ sha256 = "6a90f5c5c3cdbb2426a880cc5ae25637bc48dcb6eb78288e6ad33cc18ca4f4eb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base containers contravariant data-default deepseq lens
- template-haskell text text-zipper transformers vector vty
+ base containers contravariant data-default deepseq microlens
+ microlens-th template-haskell text text-zipper transformers vector
+ vty
];
executableHaskellDepends = [
- base data-default lens text vector vty
+ base data-default microlens microlens-th text vector vty
];
homepage = "https://github.com/jtdaugherty/brick/";
description = "A declarative terminal user interface library";
@@ -45079,7 +43950,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "buffer-builder" = callPackage
+ "buffer-builder_0_2_4_1" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, criterion
, deepseq, HTF, mtl, quickcheck-instances, text
, unordered-containers, vector
@@ -45098,9 +43969,53 @@ 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" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion
+ , deepseq, HTF, mtl, quickcheck-instances, text
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "buffer-builder";
+ version = "0.2.4.2";
+ sha256 = "23e353fe4afb0a8cd4514b29c66ffcfff93098220a13441e8372d575cf1b1104";
+ libraryHaskellDepends = [
+ base bytestring mtl text unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson attoparsec base bytestring criterion deepseq HTF
+ quickcheck-instances text vector
+ ];
+ 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" ];
}) {};
+ "buffer-builder_0_2_4_3" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion
+ , deepseq, HTF, mtl, quickcheck-instances, text
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "buffer-builder";
+ version = "0.2.4.3";
+ sha256 = "8a3da08e222498a245405d77eed7da90a943e848396291e617ba0b6daf27ad6f";
+ libraryHaskellDepends = [
+ base bytestring mtl text unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson attoparsec base bytestring criterion deepseq HTF
+ quickcheck-instances text vector
+ ];
+ 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
({ mkDerivation, aeson, attoparsec, base, buffer-builder
, bytestring, hashable, HUnit, integer-gmp, QuickCheck, scientific
@@ -45310,8 +44225,8 @@ self: {
pname = "bumper";
version = "0.6.0.3";
sha256 = "7cfce3a38be30744a2eb322ad1e5271cd665fa62b4fe21bdf9aa00fcdbc4daa8";
- revision = "2";
- editedCabalFile = "bab175b04d4877724879ff0951490a7e0f5b98c3c99f802649e9b3db52c4db78";
+ revision = "3";
+ editedCabalFile = "1cd28042d55e1292a7ca8cdbb43afd5a170db915f91a2e0d3aa210da6b918e64";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -45743,17 +44658,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "bytestring_0_10_8_0" = callPackage
+ "bytestring_0_10_8_1" = callPackage
({ mkDerivation, base, byteorder, deepseq, directory, dlist
, ghc-prim, HUnit, integer-gmp, mtl, QuickCheck, random
, test-framework, test-framework-hunit, test-framework-quickcheck2
}:
mkDerivation {
pname = "bytestring";
- version = "0.10.8.0";
- sha256 = "1d57175b5b0f7da1c1d43e8875fcc2a5bbcfbdadde2a19e59d975233dc751819";
- revision = "1";
- editedCabalFile = "288cc7c21a637c83679d5aae751916befefa8ed26811bf6975f076bf7b3cb01f";
+ version = "0.10.8.1";
+ sha256 = "2d615f5b4cd76251663ea67355589742950590bf766e487961fbfc816e58fc9b";
libraryHaskellDepends = [ base deepseq ghc-prim integer-gmp ];
testHaskellDepends = [
base byteorder deepseq directory dlist ghc-prim HUnit mtl
@@ -45851,6 +44764,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "bytestring-builder_0_10_8_1_0" = callPackage
+ ({ mkDerivation, base, bytestring, deepseq }:
+ mkDerivation {
+ pname = "bytestring-builder";
+ version = "0.10.8.1.0";
+ sha256 = "6d7404773621efb88b256ff88912a7dbcebc7fb86d27868ef58478249892dbc2";
+ libraryHaskellDepends = [ base bytestring deepseq ];
+ doHaddock = false;
+ description = "The new bytestring builder, packaged outside of GHC";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"bytestring-class" = callPackage
({ mkDerivation, base, bytestring, utf8-string }:
mkDerivation {
@@ -45970,6 +44896,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "bytestring-handle_0_1_0_4" = callPackage
+ ({ mkDerivation, base, bytestring, HUnit, QuickCheck
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ }:
+ mkDerivation {
+ pname = "bytestring-handle";
+ version = "0.1.0.4";
+ sha256 = "3083c6434a6ec552c6c29030f7b2c44b53dead5f05f4a8363e3c350552ffbe60";
+ libraryHaskellDepends = [ base bytestring ];
+ testHaskellDepends = [
+ base bytestring HUnit QuickCheck test-framework
+ test-framework-hunit test-framework-quickcheck2
+ ];
+ 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
({ mkDerivation, alex, array, base, bytestring }:
mkDerivation {
@@ -46718,7 +45663,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "cabal-debian" = callPackage
+ "cabal-debian_4_32_3" = callPackage
({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal
, containers, data-default, debian, deepseq, Diff, directory
, exceptions, filepath, hsemail, HUnit, lens, memoize, mtl
@@ -46750,14 +45695,49 @@ self: {
homepage = "https://github.com/ddssff/cabal-debian";
description = "Create a Debianization for a Cabal package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "cabal-debian" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal
+ , containers, data-default, debian, deepseq, Diff, directory
+ , exceptions, filepath, hsemail, HUnit, lens, memoize, mtl
+ , network-uri, newtype-generics, optparse-applicative, parsec
+ , pretty, process, pureMD5, regex-tdfa, set-extra, syb, text, unix
+ , Unixutils, utf8-string
+ }:
+ mkDerivation {
+ pname = "cabal-debian";
+ version = "4.32.4";
+ sha256 = "25e34804e438d5299f2a4d02b39b41878a733586dd527caa45ac29f7c33ca3c7";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ ansi-wl-pprint base bifunctors Cabal containers data-default debian
+ deepseq Diff directory exceptions filepath hsemail HUnit lens
+ memoize mtl network-uri newtype-generics optparse-applicative
+ parsec pretty process pureMD5 regex-tdfa set-extra syb text unix
+ Unixutils utf8-string
+ ];
+ executableHaskellDepends = [
+ base Cabal debian lens mtl pretty Unixutils
+ ];
+ testHaskellDepends = [
+ base Cabal containers debian Diff directory filepath hsemail HUnit
+ lens pretty process text
+ ];
+ doCheck = false;
+ homepage = "https://github.com/ddssff/cabal-debian";
+ description = "Create a Debianization for a Cabal package";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"cabal-dependency-licenses" = callPackage
({ mkDerivation, base, Cabal, containers, directory, filepath }:
mkDerivation {
pname = "cabal-dependency-licenses";
- version = "0.1.1.2";
- sha256 = "87355a19bc2b02050a629607cb847a8e51064e614e23bd7dde9861f2518cb91c";
+ version = "0.1.2.0";
+ sha256 = "436a3d8745d6645cac1b51f54974f38811fbc37a3784ac0bdba3c3ddb22f2494";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -46953,15 +45933,15 @@ self: {
license = stdenv.lib.licenses.agpl3;
}) {};
- "cabal-helper_0_7_0_1" = callPackage
+ "cabal-helper_0_7_1_0" = callPackage
({ mkDerivation, base, bytestring, Cabal, cabal-install, directory
, extra, filepath, ghc-prim, mtl, process, template-haskell
, temporary, transformers, unix, utf8-string
}:
mkDerivation {
pname = "cabal-helper";
- version = "0.7.0.1";
- sha256 = "4c158f81ad325a0b2bfd5bfec149851f59837fd73775c8b4da0050bdeca0182d";
+ version = "0.7.1.0";
+ sha256 = "7c78b875b5f246b8422b641923d2ffe593bf65ce9e99373e19ef8372df8db66f";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -48467,6 +47447,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) cairo;};
+ "cairo_0_13_2_0" = 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;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) cairo;};
+
"cairo-appbase" = callPackage
({ mkDerivation, base, cairo, glib, gtk }:
mkDerivation {
@@ -49049,7 +48048,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "carray" = callPackage
+ "carray_0_1_6_3" = callPackage
({ mkDerivation, array, base, binary, bytestring, ix-shapable
, QuickCheck, syb
}:
@@ -49063,6 +48062,23 @@ self: {
testHaskellDepends = [ array base ix-shapable QuickCheck ];
description = "A C-compatible array library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "carray" = callPackage
+ ({ mkDerivation, array, base, binary, bytestring, ix-shapable
+ , QuickCheck, syb
+ }:
+ mkDerivation {
+ pname = "carray";
+ version = "0.1.6.4";
+ sha256 = "52964f076e8f03051f2af5e5cd6e450860dd1623ed67549a9f12f318d6c00c50";
+ libraryHaskellDepends = [
+ array base binary bytestring ix-shapable QuickCheck syb
+ ];
+ testHaskellDepends = [ array base ix-shapable QuickCheck ];
+ description = "A C-compatible array library";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"cartel_0_14_2_6" = callPackage
@@ -49496,8 +48512,8 @@ self: {
}:
mkDerivation {
pname = "casr-logbook";
- version = "0.0.4";
- sha256 = "9c0942ed3905dc6d6fc2e65a171c826f9de33b7df72f897a8e94fdf854d02f95";
+ version = "0.0.9";
+ sha256 = "02651b7d7e3ada1f99f5e9026f5a994677b17dd53764d150afe26fb4759d3a0a";
libraryHaskellDepends = [ base containers ];
testHaskellDepends = [
base directory doctest filepath QuickCheck template-haskell
@@ -50073,6 +49089,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "cayley-client_0_1_5_1" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, exceptions
+ , http-client, http-conduit, lens, lens-aeson, mtl, text
+ , transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "cayley-client";
+ version = "0.1.5.1";
+ sha256 = "3a2eab27b2aa711141d43248a5505154945e8563d846e1db3379f486b140563c";
+ libraryHaskellDepends = [
+ aeson attoparsec base bytestring exceptions http-client
+ http-conduit lens lens-aeson mtl text transformers
+ unordered-containers vector
+ ];
+ 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
({ mkDerivation, base, random }:
mkDerivation {
@@ -50693,8 +49729,8 @@ self: {
}:
mkDerivation {
pname = "cgrep";
- version = "6.6.3";
- sha256 = "cb603a7127c922a63a0c91f64f4d35782860a96cb1da66d5d9ae5fa8f91a634f";
+ version = "6.6.4";
+ sha256 = "c192928788b336d23b549f4a9bacfae7f4698f3e76a148f2d9fa557465b7a54d";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -50773,8 +49809,8 @@ self: {
({ mkDerivation, array, base, process, random }:
mkDerivation {
pname = "chalmers-lava2000";
- version = "1.6";
- sha256 = "243d3b25635eb16700723a1250f8db52c5493d56bb16144537dedb0e776e01f8";
+ version = "1.6.1";
+ sha256 = "ebe5152611cdf34269942bf61c9e009596ec5c15ed797f89d5f9854f00ba9c89";
libraryHaskellDepends = [ array base process random ];
homepage = "http://projects.haskell.org/chalmers-lava2000/Doc/tutorial.pdf";
description = "Hardware description EDSL";
@@ -51853,7 +50889,6 @@ self: {
aeson base http-client http-client-tls mtl servant servant-client
text time transformers unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/denisshevchenko/circlehs";
description = "The CircleCI REST API for Haskell";
license = stdenv.lib.licenses.mit;
@@ -53380,6 +52415,8 @@ self: {
pname = "classy-prelude";
version = "0.10.2";
sha256 = "f3341ddb9a469f612263d94274144510209f16ed4d9ec709ad622f3d5f36015f";
+ revision = "1";
+ editedCabalFile = "8205abcd17796648ca86bfac8737bce5d75156248d770f75752bd849b2c5c229";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -53409,6 +52446,8 @@ self: {
pname = "classy-prelude";
version = "0.10.4";
sha256 = "e6fb56bfe0b38b9d084f5f398492a2cbc8093771f32ca561d24c5df8c5f1049c";
+ revision = "1";
+ editedCabalFile = "8fe5a995f8362f186df641d9829338c7c3ad5abba0f3e5ce492ff337d3636091";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -53438,6 +52477,8 @@ self: {
pname = "classy-prelude";
version = "0.10.5";
sha256 = "c3ebf83dd83fd6d370dbc403121e40397ed142ffb2e7071317a2f4a365f330e9";
+ revision = "1";
+ editedCabalFile = "46c660bb65fe8b799efedb0cf1cfb73b71d0813cb0fe4700c413a3ab871e8dbf";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -53467,8 +52508,8 @@ self: {
pname = "classy-prelude";
version = "0.11.0";
sha256 = "ce36f9cfa3d5c2652a308e5caa476f8b1d82e95472b01ad6ec03b91c75add81d";
- revision = "1";
- editedCabalFile = "c81bf68ba89e8e7959a28ef72534c68754a25751b835cb1f8b8319a57e870a49";
+ revision = "2";
+ editedCabalFile = "cca4e94643881a92e6b166e4a167aa2d0269fdbf5e6cb0da8f4e7a215ee12fa9";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
dlist enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -53498,8 +52539,8 @@ self: {
pname = "classy-prelude";
version = "0.11.1";
sha256 = "31a6e0d46efa1c1df694becb8be1eeb9bae4b65d81fa3f3b0170e823aeb22a00";
- revision = "1";
- editedCabalFile = "efba11a13e994d395e10c529bebbce36190a5187b867f7267f256e53fa655255";
+ revision = "2";
+ editedCabalFile = "585916c8a1ed2acb4f9915e331e32523f3d1b2c357fc1331487acc2d8222276d";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
dlist enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -53529,8 +52570,8 @@ self: {
pname = "classy-prelude";
version = "0.11.1.1";
sha256 = "ea38048052a392b5080476160042e68402df18ec4ba3e9ed61abdf2c566436aa";
- revision = "1";
- editedCabalFile = "7b3c53842e0544b865ddd2be370b1541810f24b764056f507e23c8d26f1f716d";
+ revision = "2";
+ editedCabalFile = "b0172c665933c5091d37a19a4ab65782cd4ba3d2c4aaec79b81bdd21d49a4fa0";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
dlist enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -53560,6 +52601,8 @@ self: {
pname = "classy-prelude";
version = "0.12.1.1";
sha256 = "670a85ffd10ff467e5eec1164462932c00bb6282cda2987a2b92c82f09ac3d13";
+ revision = "1";
+ editedCabalFile = "13f28e09ecbfeb2eca784ad6819598706b71ac7b1b2a033abd86491826dfb40b";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
dlist enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -53570,6 +52613,7 @@ self: {
testHaskellDepends = [
base containers hspec QuickCheck transformers unordered-containers
];
+ jailbreak = true;
homepage = "https://github.com/snoyberg/classy-prelude";
description = "A typeclass-based Prelude";
license = stdenv.lib.licenses.mit;
@@ -54767,6 +53811,24 @@ self: {
license = "unknown";
}) {};
+ "cloben" = callPackage
+ ({ mkDerivation, base, foldl, process, system-filepath, temporary
+ , text, turtle
+ }:
+ mkDerivation {
+ pname = "cloben";
+ version = "0.1.0.1";
+ sha256 = "99cfae53ed2ad5db9d1d1860b1654b28ab5189437fd5abb298a432f8a98d4728";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base foldl process system-filepath temporary text turtle
+ ];
+ homepage = "http://github.com/sgraf812/cloben#readme";
+ description = "Clone and benchmark Haskell cabal projects";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"clock_0_4_1_3" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -55161,7 +54223,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "cmark" = callPackage
+ "cmark_0_5_2" = callPackage
({ mkDerivation, base, bytestring, HUnit, text }:
mkDerivation {
pname = "cmark";
@@ -55172,6 +54234,20 @@ self: {
homepage = "https://github.com/jgm/commonmark-hs";
description = "Fast, accurate CommonMark (Markdown) parser and renderer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "cmark" = callPackage
+ ({ mkDerivation, base, bytestring, HUnit, text }:
+ mkDerivation {
+ pname = "cmark";
+ version = "0.5.2.1";
+ sha256 = "a332b84e5983bc616682cb20cf2c7ed59e16b0002bada1ccaaa381f556dd8dc8";
+ libraryHaskellDepends = [ base bytestring text ];
+ testHaskellDepends = [ base HUnit text ];
+ homepage = "https://github.com/jgm/commonmark-hs";
+ description = "Fast, accurate CommonMark (Markdown) parser and renderer";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"cmath" = callPackage
@@ -55423,8 +54499,8 @@ self: {
({ mkDerivation, array, base, bytestring, text }:
mkDerivation {
pname = "cndict";
- version = "0.7.4";
- sha256 = "1d066c7df8e3f789a1139fbed618c4fe633f4f4cc42e30198f80042f93b06c43";
+ version = "0.7.5";
+ sha256 = "e543fd14b60dd1fece431f4ac85bfd86dce5267af646312691e2e015ef182b24";
libraryHaskellDepends = [ array base bytestring text ];
homepage = "https://github.com/Lemmih/cndict";
description = "Chinese/Mandarin <-> English dictionary, Chinese lexer";
@@ -56574,6 +55650,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "compactmap_0_1_4" = callPackage
+ ({ mkDerivation, base, containers, hspec, QuickCheck, vector }:
+ mkDerivation {
+ pname = "compactmap";
+ version = "0.1.4";
+ sha256 = "e65ba73cac5eca9eb0fa53863d57e41c5c47a16fe72fdade99c1defbfeb4fc7f";
+ libraryHaskellDepends = [ base vector ];
+ 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
({ mkDerivation, base }:
mkDerivation {
@@ -57299,6 +56388,7 @@ self: {
testHaskellDepends = [
base machines tasty tasty-hunit time transformers
];
+ jailbreak = true;
description = "Concurrent networked stream transducers";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -57854,12 +56944,12 @@ self: {
({ mkDerivation, base, conduit, vector }:
mkDerivation {
pname = "conduit-audio";
- version = "0.2.0.1";
- sha256 = "7feb6d81fcafd3853cff73d63f86c68cd4fb67baa97c37410a607b79d8dfc02b";
+ version = "0.2.0.2";
+ sha256 = "e23cf60d1e70a65560308517db79ba150456fcf9f24a0d77f5e6f96cdf1aef0b";
libraryHaskellDepends = [ base conduit vector ];
homepage = "http://github.com/mtolly/conduit-audio";
description = "Combinators to efficiently slice and dice audio streams";
- license = "LGPL";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"conduit-audio-lame" = callPackage
@@ -57868,8 +56958,8 @@ self: {
}:
mkDerivation {
pname = "conduit-audio-lame";
- version = "0.1.1";
- sha256 = "aac3760ea6325219903e0726b4a8e0b9662699ed34a77a0d2a09a5bef67c8d7f";
+ version = "0.1.2";
+ sha256 = "07bbd0c82daff28e9b4dd147cee0cbca5ee74a50bdc5de5a5d905a8848573a5d";
libraryHaskellDepends = [
base bytestring conduit conduit-audio resourcet transformers vector
];
@@ -57877,7 +56967,7 @@ self: {
libraryToolDepends = [ c2hs ];
homepage = "http://github.com/mtolly/conduit-audio";
description = "conduit-audio interface to the LAME MP3 library";
- license = "LGPL";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {mp3lame = null;};
@@ -57887,8 +56977,8 @@ self: {
}:
mkDerivation {
pname = "conduit-audio-samplerate";
- version = "0.1.0.1";
- sha256 = "03b2ce7a89b0ae9a6db7464d1066596d7784bb5d7e45458a6b9fc6600e6726cf";
+ version = "0.1.0.2";
+ sha256 = "e8ee6621926909df05f91f969e95a2bde85d0fe09f17d54ea8fa2a6ff93adedd";
libraryHaskellDepends = [
base conduit conduit-audio resourcet transformers vector
];
@@ -57896,7 +56986,7 @@ self: {
libraryToolDepends = [ c2hs ];
homepage = "http://github.com/mtolly/conduit-audio";
description = "conduit-audio interface to the libsamplerate resampling library";
- license = "LGPL";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {samplerate = null;};
@@ -57906,15 +56996,15 @@ self: {
}:
mkDerivation {
pname = "conduit-audio-sndfile";
- version = "0.1.1";
- sha256 = "2c4288d60fa0ea8a629ab3e3e77ee813e849f4454b006ab75ebc33bf707be4cc";
+ version = "0.1.2";
+ sha256 = "7e499e45b4e7c92e02ce8dc52a4c482b05f2fc611bd46ac868aea8190e53fae6";
libraryHaskellDepends = [
base conduit conduit-audio hsndfile hsndfile-vector resourcet
transformers
];
homepage = "http://github.com/mtolly/conduit-audio";
description = "conduit-audio interface to the libsndfile audio file library";
- license = "LGPL";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
@@ -58704,6 +57794,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "config-value-getopt" = callPackage
+ ({ mkDerivation, base, config-value, text }:
+ mkDerivation {
+ pname = "config-value-getopt";
+ version = "0.1.0.0";
+ sha256 = "00b65bcf60b26f7004665f183d7114dfb6380230c2f50e093403ca8a74bfaccb";
+ libraryHaskellDepends = [ base config-value text ];
+ homepage = "https://github.com/GaloisInc/config-value-getopt";
+ description = "Interface between config-value and System.GetOpt";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"configifier" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring
, case-insensitive, containers, directory, either, functor-infix
@@ -58801,7 +57903,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "configurator-export" = callPackage
+ "configurator-export_0_1_0_0" = callPackage
({ mkDerivation, base, configurator, pretty, semigroups, text
, unordered-containers
}:
@@ -58816,9 +57918,10 @@ self: {
homepage = "http://github.com/mstksg/configurator-export";
description = "Pretty printer and exporter for configurations from the \"configurator\" library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "configurator-export_0_1_0_1" = callPackage
+ "configurator-export" = callPackage
({ mkDerivation, base, base-compat, configurator, pretty
, semigroups, text, unordered-containers
}:
@@ -58834,7 +57937,6 @@ self: {
homepage = "http://github.com/mstksg/configurator-export";
description = "Pretty printer and exporter for configurations from the \"configurator\" library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"confsolve" = callPackage
@@ -59316,6 +58418,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "container-builder" = callPackage
+ ({ mkDerivation, base, vector }:
+ mkDerivation {
+ pname = "container-builder";
+ version = "0.1";
+ sha256 = "279fc326fa7e013d41203828591b70dbd316eca2010e9f01bebdfa6186539cee";
+ libraryHaskellDepends = [ base vector ];
+ homepage = "https://github.com/andrewthad/container-builder#readme";
+ description = "Functions for building containers from a known number of elements";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"container-classes" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -59977,6 +59091,8 @@ self: {
pname = "conversion";
version = "1.2.1";
sha256 = "c97771da92f229886f1a3033253a63bb429244f06a7cd877bdd633b4e4b82108";
+ revision = "1";
+ editedCabalFile = "8db4210950736e54be5cd7f7076c19e05d06fb48673eb23638093246a1e7199e";
libraryHaskellDepends = [ base-prelude ];
homepage = "https://github.com/nikita-volkov/conversion";
description = "Universal converter between values of different types";
@@ -61129,7 +60245,7 @@ self: {
description = "Bindings for libpython";
license = stdenv.lib.licenses.gpl3;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {python34 = null;};
+ }) {inherit (pkgs) python34;};
"cql_3_0_5" = callPackage
({ mkDerivation, base, bytestring, cereal, Decimal, iproute
@@ -61518,25 +60634,27 @@ self: {
}) {};
"craze" = callPackage
- ({ mkDerivation, async, base, bytestring, curl, data-default-class
- , doctest, doctest-discover, haxy, hspec, hspec-discover, HTTP
- , http-types, optparse-generic, text, transformers
+ ({ mkDerivation, async, base, bytestring, containers, curl
+ , data-default-class, doctest, doctest-discover, haxy, hspec
+ , hspec-discover, HTTP, http-types, optparse-generic, text
+ , transformers
}:
mkDerivation {
pname = "craze";
- version = "0.0.1.1";
- sha256 = "7580164fe2534d8af70d9ccbbc429fbf2d72cee63f7992b7c174f9a264bc1631";
+ version = "0.1.2.0";
+ sha256 = "951dae20e27bffdff346008b1f357a12f1e143d9c42184c32ba90fbbbbc722a9";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- async base bytestring curl data-default-class transformers
+ async base bytestring containers curl data-default-class text
+ transformers
];
executableHaskellDepends = [
base bytestring curl optparse-generic text transformers
];
testHaskellDepends = [
base bytestring curl doctest doctest-discover haxy hspec
- hspec-discover HTTP http-types transformers
+ hspec-discover HTTP http-types text transformers
];
homepage = "https://github.com/etcinit/craze#readme";
description = "HTTP Racing Library";
@@ -61941,8 +61059,8 @@ self: {
}:
mkDerivation {
pname = "cron";
- version = "0.4.0";
- sha256 = "023916c844787d40466044d8ae9af9d77da18840f1f7531fb5f8508b01a1e7b5";
+ version = "0.4.1";
+ sha256 = "452844b046a28a898eef5d27d9d4f172bfd5369e44a2961598d625f677a3cd3c";
libraryHaskellDepends = [
attoparsec base mtl mtl-compat old-locale semigroups text time
];
@@ -62535,33 +61653,53 @@ self: {
}) {};
"cryptohash-md5" = callPackage
- ({ mkDerivation, base, bytestring, tasty, tasty-hunit
- , tasty-quickcheck
+ ({ mkDerivation, base, base16-bytestring, bytestring, pureMD5
+ , tasty, tasty-hunit, tasty-quickcheck
}:
mkDerivation {
pname = "cryptohash-md5";
- version = "0.11.7.1";
- sha256 = "c6e64cb9278403f6c6cdd435f6b612da4f4aca1cc2e687f6773d054c48dbb271";
+ version = "0.11.100.0";
+ sha256 = "b78cb2469b247aa1ac5c828e510506eaca57340eb84882e71147bbfd5ec9581d";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
- base bytestring tasty tasty-hunit tasty-quickcheck
+ base base16-bytestring bytestring pureMD5 tasty tasty-hunit
+ tasty-quickcheck
];
homepage = "https://github.com/hvr/cryptohash-md5";
description = "Fast, pure and practical MD5 implementation";
license = stdenv.lib.licenses.bsd3;
}) {};
+ "cryptohash-sha1" = callPackage
+ ({ mkDerivation, base, base16-bytestring, bytestring, SHA, tasty
+ , tasty-hunit, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "cryptohash-sha1";
+ version = "0.11.100.0";
+ sha256 = "24a6853f180ec505a44a6b93bd9272d4ac5e21dca254d89176bce4147dfafecf";
+ libraryHaskellDepends = [ base bytestring ];
+ testHaskellDepends = [
+ base base16-bytestring bytestring SHA tasty tasty-hunit
+ tasty-quickcheck
+ ];
+ homepage = "https://github.com/hvr/cryptohash-sha1";
+ description = "Fast, pure and practical SHA-1 implementation";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"cryptohash-sha256" = callPackage
- ({ mkDerivation, base, bytestring, tasty, tasty-hunit
- , tasty-quickcheck
+ ({ mkDerivation, base, base16-bytestring, bytestring, SHA, tasty
+ , tasty-hunit, tasty-quickcheck
}:
mkDerivation {
pname = "cryptohash-sha256";
- version = "0.11.7.1";
- sha256 = "ac42b0d863dfd91e1b77f513d371f73e31cb93c1677130ff63a3bf20c41a8bc0";
+ version = "0.11.100.0";
+ sha256 = "d4ec71b168f3600226cb53ac43559eb5795d5d79904a910c26046c360d60d780";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
- base bytestring tasty tasty-hunit tasty-quickcheck
+ base base16-bytestring bytestring SHA tasty tasty-hunit
+ tasty-quickcheck
];
homepage = "https://github.com/hvr/cryptohash-sha256";
description = "Fast, pure and practical SHA-256 implementation";
@@ -63064,6 +62202,25 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "css-syntax_0_0_5" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, directory, hspec
+ , scientific, text
+ }:
+ mkDerivation {
+ pname = "css-syntax";
+ version = "0.0.5";
+ sha256 = "3969e0bf83c81dd970cdde9bb07386071264f0f390215078eb86a5cfa1e50b9e";
+ libraryHaskellDepends = [
+ attoparsec base bytestring scientific text
+ ];
+ testHaskellDepends = [
+ attoparsec base bytestring directory hspec scientific text
+ ];
+ description = "This package implments a parser for the CSS syntax";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"css-text" = callPackage
({ mkDerivation, attoparsec, base, hspec, QuickCheck, text }:
mkDerivation {
@@ -63729,8 +62886,8 @@ self: {
}:
mkDerivation {
pname = "d3d11binding";
- version = "0.0.0.6";
- sha256 = "7e5fe934403cd83f94b97d539863ad26df6f0de67d4f291dcabeaaabe7462252";
+ version = "0.0.0.7";
+ sha256 = "1f94c0d93b1446602198d7483f7cbf008d51a9dd65dd4a27758ae62e22ba9668";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base c-storable-deriving vect Win32 ];
@@ -64679,20 +63836,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "data-default_0_6_0" = callPackage
+ "data-default_0_7_0" = callPackage
({ mkDerivation, base, data-default-class
, data-default-instances-base, data-default-instances-containers
, data-default-instances-dlist, data-default-instances-old-locale
}:
mkDerivation {
pname = "data-default";
- version = "0.6.0";
- sha256 = "1f84023990e44e4555ac54e6bc84e4efa3bb42a0851ce0bb7b3358ef5344386d";
+ version = "0.7.0";
+ sha256 = "933b52b2477edbaaf2569a2bc76d4df8cf6fb52dc5e345ce18a76630423cb077";
libraryHaskellDepends = [
base data-default-class data-default-instances-base
data-default-instances-containers data-default-instances-dlist
data-default-instances-old-locale
];
+ jailbreak = true;
description = "A class for types with a default value";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -64709,6 +63867,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "data-default-class_0_1_0" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "data-default-class";
+ version = "0.1.0";
+ sha256 = "01186c3b0da2d8513c2f93464a253fdc7eaeef06b1c526a5d139300bfcb39790";
+ libraryHaskellDepends = [ base ];
+ description = "A class for types with a default value";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"data-default-extra" = callPackage
({ mkDerivation, base, data-default-class
, data-default-instances-base, data-default-instances-bytestring
@@ -65122,6 +64292,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "data-function-meld" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "data-function-meld";
+ version = "0.1.0.0";
+ sha256 = "def6126edb5aaeb808b8acb34f694c9ce3966f66ddac62a5ba09cf28378e1bcf";
+ revision = "1";
+ editedCabalFile = "7c644b5b5aba58028446255e1bfbf2e2aa832aa27fd3de943d34b047537ec4c9";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/erisco/data-function-meld";
+ description = "Map the arguments and return value of functions";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"data-hash" = callPackage
({ mkDerivation, array, base, containers, QuickCheck
, test-framework, test-framework-quickcheck2
@@ -65479,8 +64663,8 @@ self: {
({ mkDerivation, base, deepseq, mtl, parallel, pretty, time }:
mkDerivation {
pname = "data-pprint";
- version = "0.2.4";
- sha256 = "659bf5b10d5c177982bed9f6676a656387c70e9223ea0b1060afbe446f499864";
+ version = "0.2.4.1";
+ sha256 = "0c06aae83e1e41883927fbaa008964acd7d6b005a0f7e44c95fa5062943e0f83";
libraryHaskellDepends = [ base deepseq mtl parallel pretty time ];
description = "Prettyprint and compare Data values";
license = stdenv.lib.licenses.bsd3;
@@ -66729,8 +65913,8 @@ self: {
}:
mkDerivation {
pname = "dead-code-detection";
- version = "0.6";
- sha256 = "477614d43048109bfa4a3116204d70c3ea822524c3caba410cf6aac90b3804ee";
+ version = "0.7";
+ sha256 = "9773ee8333d81797823483946eebf556bf8f7f542aafed33af43402c5266ab11";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -66926,25 +66110,6 @@ self: {
}) {};
"declarative" = callPackage
- ({ mkDerivation, base, hasty-hamiltonian, lens, mcmc-types
- , mighty-metropolis, mwc-probability, pipes, primitive
- , speedy-slice, transformers
- }:
- mkDerivation {
- pname = "declarative";
- version = "0.2.1";
- sha256 = "7e4996de092e39fb310e9ea0eeb8a85a16c4f0ce92d8ec73b653374f07a2ecd4";
- libraryHaskellDepends = [
- base hasty-hamiltonian lens mcmc-types mighty-metropolis
- mwc-probability pipes primitive speedy-slice transformers
- ];
- testHaskellDepends = [ base mwc-probability ];
- homepage = "http://github.com/jtobin/declarative";
- description = "DIY Markov Chains";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "declarative_0_2_2" = callPackage
({ mkDerivation, base, hasty-hamiltonian, lens, mcmc-types
, mighty-metropolis, mwc-probability, pipes, primitive
, speedy-slice, transformers
@@ -66961,7 +66126,6 @@ self: {
homepage = "http://github.com/jtobin/declarative";
description = "DIY Markov Chains";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"decode-utf8" = callPackage
@@ -67617,7 +66781,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "dependent-map" = callPackage
+ "dependent-map_0_2_1_0" = callPackage
({ mkDerivation, base, containers, dependent-sum }:
mkDerivation {
pname = "dependent-map";
@@ -67627,6 +66791,19 @@ self: {
homepage = "https://github.com/mokus0/dependent-map";
description = "Dependent finite maps (partial dependent products)";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "dependent-map" = callPackage
+ ({ mkDerivation, base, containers, dependent-sum }:
+ mkDerivation {
+ pname = "dependent-map";
+ version = "0.2.2.0";
+ sha256 = "f4d79312f2a584de265339f5a2ca0bfbd1d6383fb24560ca9148f7559727871f";
+ libraryHaskellDepends = [ base containers dependent-sum ];
+ homepage = "https://github.com/mokus0/dependent-map";
+ description = "Dependent finite maps (partial dependent products)";
+ license = "unknown";
}) {};
"dependent-state" = callPackage
@@ -67655,7 +66832,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "dependent-sum" = callPackage
+ "dependent-sum_0_3_2_1" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "dependent-sum";
@@ -67665,6 +66842,35 @@ self: {
homepage = "https://github.com/mokus0/dependent-sum";
description = "Dependent sum type";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "dependent-sum" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "dependent-sum";
+ version = "0.3.2.2";
+ sha256 = "34fbe4675fa3a6ea7ca34913954657a3defee785bd39d55cffcf375f4a3cf864";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/mokus0/dependent-sum";
+ description = "Dependent sum type";
+ license = stdenv.lib.licenses.publicDomain;
+ }) {};
+
+ "dependent-sum-template_0_0_0_4" = callPackage
+ ({ mkDerivation, base, dependent-sum, template-haskell, th-extras
+ }:
+ mkDerivation {
+ pname = "dependent-sum-template";
+ version = "0.0.0.4";
+ sha256 = "99dfc6913a688d714d95b1a2d723ca9c7d54c4d169c0fae63d2fb7c1ffef7280";
+ libraryHaskellDepends = [
+ base dependent-sum template-haskell th-extras
+ ];
+ homepage = "/dev/null";
+ description = "Template Haskell code to generate instances of classes in dependent-sum package";
+ license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dependent-sum-template" = callPackage
@@ -67672,8 +66878,8 @@ self: {
}:
mkDerivation {
pname = "dependent-sum-template";
- version = "0.0.0.4";
- sha256 = "99dfc6913a688d714d95b1a2d723ca9c7d54c4d169c0fae63d2fb7c1ffef7280";
+ version = "0.0.0.5";
+ sha256 = "b23f584da3a5d8bc3b625a186ab696bed5a8a63d71129485b9fb49262a600765";
libraryHaskellDepends = [
base dependent-sum template-haskell th-extras
];
@@ -68310,8 +67516,8 @@ self: {
({ mkDerivation, base, deepseq }:
mkDerivation {
pname = "dia-base";
- version = "0.1.1.3";
- sha256 = "e5ac6200e802e81b9d40b497b117cb1b29086170ec9fbff6c574baa53e6ba7cf";
+ version = "0.1.1.4";
+ sha256 = "1fc6bbf2f60bdefbd516a84063100f63f9ea9a41188ea5eb8f67be7b01fd9e26";
libraryHaskellDepends = [ base deepseq ];
description = "An EDSL for teaching Haskell with diagrams - data types";
license = stdenv.lib.licenses.bsd3;
@@ -68323,8 +67529,8 @@ self: {
}:
mkDerivation {
pname = "dia-functions";
- version = "0.2.1.4";
- sha256 = "4730fbef211f42b4567f4a034dc27bd82f2770adac55b3d04b555067dd550e92";
+ version = "0.2.1.5";
+ sha256 = "aff8ffc4ff79a48f7b275cf84b5a97092e1a674e3c978fdae405d66c3cf732e1";
libraryHaskellDepends = [
base containers data-pprint deepseq dia-base mtl xhtml
];
@@ -71134,6 +70340,7 @@ self: {
version = "0.13.0.1";
sha256 = "26ee806eaded39629ac7610209bdcc1106432e36b780592a2d5d813bb57fc7b2";
libraryHaskellDepends = [ base numtype time ];
+ jailbreak = true;
homepage = "http://dimensional.googlecode.com/";
description = "Statically checked physical dimensions";
license = stdenv.lib.licenses.bsd3;
@@ -71147,19 +70354,37 @@ self: {
version = "0.13.0.2";
sha256 = "9762c214f036891299a766aa2e294d1295ec81e4ba806d0e5bb6cf80114928be";
libraryHaskellDepends = [ base numtype time ];
+ jailbreak = true;
homepage = "http://dimensional.googlecode.com/";
description = "Statically checked physical dimensions";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "dimensional_1_0_1_1" = callPackage
+ ({ mkDerivation, base, deepseq, exact-pi, HUnit, numtype-dk, vector
+ }:
+ mkDerivation {
+ pname = "dimensional";
+ version = "1.0.1.1";
+ sha256 = "d876eea43341b597959e3244673817dcb23c350c06549158e04a6c632243692e";
+ libraryHaskellDepends = [
+ base deepseq exact-pi numtype-dk vector
+ ];
+ testHaskellDepends = [ base HUnit ];
+ homepage = "https://github.com/bjornbm/dimensional/";
+ description = "Statically checked physical dimensions, using Type Families and Data Kinds";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"dimensional" = callPackage
({ mkDerivation, base, deepseq, exact-pi, HUnit, numtype-dk, vector
}:
mkDerivation {
pname = "dimensional";
- version = "1.0.1.1";
- sha256 = "d876eea43341b597959e3244673817dcb23c350c06549158e04a6c632243692e";
+ version = "1.0.1.2";
+ sha256 = "45943c0d8989a5ce8a440e40a28b4bffa84170b5c8cfaa9af27d4ce0afc599cb";
libraryHaskellDepends = [
base deepseq exact-pi numtype-dk vector
];
@@ -71538,8 +70763,8 @@ self: {
}:
mkDerivation {
pname = "directory-listing-webpage-parser";
- version = "0.1.0.0";
- sha256 = "03b5f5d9180784a2d9ba481f09b9cc503b1dfbc10a747e6eebd12e9f6338e4cf";
+ version = "0.1.1.0";
+ sha256 = "9a5ccdaa4b4c747e07bb189096db626934782a8ceb8f86076f5b662ec49d670a";
libraryHaskellDepends = [
base bytestring network-uri tagsoup text time
];
@@ -72894,6 +72119,8 @@ self: {
pname = "dixi";
version = "0.6.9.1";
sha256 = "938923def44d17f193907edc2e928fe63eeca685dd9f5527c791718e3e8e6c6a";
+ revision = "1";
+ editedCabalFile = "1165d61068ddfdb1f480130f9aefc110505e0514484014fe4f3b69ecdd8e1b61";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -74886,15 +74113,14 @@ self: {
}:
mkDerivation {
pname = "dynamic-plot";
- version = "0.1.2.0";
- sha256 = "9afd0f1a29dd23036d7f7a8da943ea1a015e8c2ceec628f0ffc946203689878f";
+ version = "0.1.3.0";
+ sha256 = "e6fcb68028ffb4148b7cd00fd87a5bb34a4be3f8995669ad136b37dc24747588";
libraryHaskellDepends = [
async base colour constrained-categories containers data-default
deepseq diagrams-cairo diagrams-core diagrams-gtk diagrams-lib glib
gtk lens manifolds MemoTrie MonadRandom mtl process random
semigroups tagged time transformers vector vector-space
];
- jailbreak = true;
homepage = "https://github.com/leftaroundabout/dynamic-plot";
description = "Interactive diagram windows";
license = stdenv.lib.licenses.gpl3;
@@ -75593,6 +74819,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "edit-distance-vector_1_0_0_4" = callPackage
+ ({ mkDerivation, base, QuickCheck, quickcheck-instances, vector }:
+ mkDerivation {
+ pname = "edit-distance-vector";
+ version = "1.0.0.4";
+ sha256 = "b7dfddd86d315ef1b0c86415f321efc04b4a1b47a7b13edafc73a6e81b620f1f";
+ libraryHaskellDepends = [ base vector ];
+ testHaskellDepends = [
+ base QuickCheck quickcheck-instances vector
+ ];
+ 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
({ mkDerivation, base, containers, data-default, lattices, mtl }:
mkDerivation {
@@ -76105,7 +75347,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "either" = callPackage
+ "either_4_4_1" = callPackage
({ mkDerivation, base, bifunctors, exceptions, free, mmorph
, monad-control, MonadRandom, mtl, profunctors, semigroupoids
, semigroups, transformers, transformers-base
@@ -76122,9 +75364,10 @@ self: {
homepage = "http://github.com/ekmett/either/";
description = "An either monad transformer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "either_4_4_1_1" = callPackage
+ "either" = callPackage
({ mkDerivation, base, bifunctors, exceptions, free, mmorph
, monad-control, MonadRandom, mtl, profunctors, semigroupoids
, semigroups, transformers, transformers-base
@@ -76141,7 +75384,6 @@ self: {
homepage = "http://github.com/ekmett/either/";
description = "An either monad transformer";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"either-unwrap" = callPackage
@@ -76519,8 +75761,8 @@ self: {
}:
mkDerivation {
pname = "elm-bridge";
- version = "0.2.2.1";
- sha256 = "8920c626419291f8683fee026b9ea9c593996b4384ed53dd7251890ef6c55427";
+ version = "0.3.0.0";
+ sha256 = "18d802945885846a1e64edc87b8062a341e1ae35f6a88b45a0aab2c7fd893c65";
libraryHaskellDepends = [ aeson base template-haskell ];
testHaskellDepends = [
aeson base containers hspec QuickCheck text
@@ -76684,6 +75926,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "elm-export" = callPackage
+ ({ mkDerivation, base, bytestring, containers, directory, hspec
+ , hspec-core, mtl, QuickCheck, quickcheck-instances, text, time
+ }:
+ mkDerivation {
+ pname = "elm-export";
+ version = "0.3.0.2";
+ sha256 = "f89797336f6a8d2d54e1015fabc0ab3f45e8ef8a3b7d7419694dd8144fb5a646";
+ libraryHaskellDepends = [
+ base bytestring containers directory mtl text time
+ ];
+ testHaskellDepends = [
+ base bytestring containers hspec hspec-core QuickCheck
+ quickcheck-instances text time
+ ];
+ homepage = "http://github.com/krisajenkins/elm-export";
+ description = "A library to generate Elm types from Haskell source";
+ license = "unknown";
+ }) {};
+
"elm-get" = callPackage
({ mkDerivation, aeson, aeson-pretty, ansi-wl-pprint, base, binary
, bytestring, containers, directory, Elm, filepath, HTTP
@@ -77076,6 +76338,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "email-validate-json" = callPackage
+ ({ mkDerivation, aeson, base, email-validate, text }:
+ mkDerivation {
+ pname = "email-validate-json";
+ version = "0.1.0.0";
+ sha256 = "0ce3fe7544bc4637efe69c897259435cf8cc60affbc8a8090d17df81aaa8dc19";
+ libraryHaskellDepends = [ aeson base email-validate text ];
+ homepage = "https://github.com/mwotton/email-validate-json#readme";
+ description = "Aeson instances for email-validate";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"email-validator" = callPackage
({ mkDerivation, base, bytestring, cmdargs, directory, dns, doctest
, email-validate, HUnit, parallel-io, pcre-light, tasty
@@ -77502,20 +76776,20 @@ self: {
}) {};
"enumerate" = callPackage
- ({ mkDerivation, array, base, containers, deepseq, exceptions
- , ghc-prim, MemoTrie, semigroups, template-haskell, vinyl
+ ({ mkDerivation, array, base, containers, deepseq, doctest
+ , ghc-prim, template-haskell, vinyl
}:
mkDerivation {
pname = "enumerate";
- version = "0.1.1";
- sha256 = "22b4079b793d645f2d1c1e0f151b1aa78e430a32868cf2f8980f7ca13b73091e";
+ version = "0.2.1";
+ sha256 = "94a61aa2c25ef3ad6f3ccb7edd9899bfac771b11f138428d15d9c27a52c04f10";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- array base containers deepseq exceptions ghc-prim MemoTrie
- semigroups template-haskell vinyl
+ array base containers deepseq ghc-prim template-haskell vinyl
];
executableHaskellDepends = [ base ];
+ testHaskellDepends = [ base doctest ];
homepage = "https://github.com/sboosali/enumerate";
description = "enumerate all the values in a finite type (automatically)";
license = stdenv.lib.licenses.mit;
@@ -78981,6 +78255,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "event_0_1_4" = callPackage
+ ({ mkDerivation, base, containers, semigroups, transformers }:
+ mkDerivation {
+ pname = "event";
+ version = "0.1.4";
+ sha256 = "6791d1402b4d77a11407ab592f65cb61ee60c5a80b99751c5d775afcc9d1824a";
+ libraryHaskellDepends = [
+ base containers semigroups transformers
+ ];
+ description = "Monoidal, monadic and first-class events";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"event-driven" = callPackage
({ mkDerivation, base, monads-tf, yjtools }:
mkDerivation {
@@ -79061,6 +78349,28 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "eventsourced" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring, HUnit, wai
+ , wai-extra, warp
+ }:
+ mkDerivation {
+ pname = "eventsourced";
+ version = "1.1.1.0";
+ sha256 = "a1a8fe03a4b01b99dec67fa046c7df2a900dde4f18404a05e6e0ca7c14798284";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base blaze-builder bytestring wai wai-extra
+ ];
+ executableHaskellDepends = [ base warp ];
+ testHaskellDepends = [
+ base blaze-builder bytestring HUnit wai-extra
+ ];
+ homepage = "https://github.com/richardTowers/eventsourced#readme";
+ description = "Server-Sent Events the UNIX way";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"eventstore_0_10_0_1" = callPackage
({ mkDerivation, aeson, async, base, bytestring, cereal, containers
, network, protobuf, random, stm, tasty, tasty-hunit, text, time
@@ -79210,7 +78520,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "exact-pi" = callPackage
+ "exact-pi_0_4_1_1" = callPackage
({ mkDerivation, base, numtype-dk }:
mkDerivation {
pname = "exact-pi";
@@ -79220,6 +78530,19 @@ self: {
homepage = "https://github.com/dmcclean/exact-pi/";
description = "Exact rational multiples of pi (and integer powers of pi)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "exact-pi" = callPackage
+ ({ mkDerivation, base, numtype-dk }:
+ mkDerivation {
+ pname = "exact-pi";
+ version = "0.4.1.2";
+ sha256 = "b2bbe6725fba3bd2f3a9506e2ff4f194fa6cdb918d59debabd5e1fc452fc45e3";
+ libraryHaskellDepends = [ base numtype-dk ];
+ homepage = "https://github.com/dmcclean/exact-pi/";
+ description = "Exact rational multiples of pi (and integer powers of pi)";
+ license = stdenv.lib.licenses.mit;
}) {};
"exact-real_0_12_0" = callPackage
@@ -79334,7 +78657,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "exception-mtl" = callPackage
+ "exception-mtl_0_4" = callPackage
({ mkDerivation, base, exception-transformers, mtl, transformers }:
mkDerivation {
pname = "exception-mtl";
@@ -79345,6 +78668,20 @@ self: {
];
description = "Exception monad transformer instances for mtl classes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "exception-mtl" = callPackage
+ ({ mkDerivation, base, exception-transformers, mtl, transformers }:
+ mkDerivation {
+ pname = "exception-mtl";
+ version = "0.4.0.1";
+ sha256 = "ec13bcbae6cdde218a7118a2bd3058493af09a330b86e28469a278c9b2cea134";
+ libraryHaskellDepends = [
+ base exception-transformers mtl transformers
+ ];
+ description = "Exception monad transformer instances for mtl classes";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"exception-transformers_0_3_0_4" = callPackage
@@ -80082,14 +79419,13 @@ self: {
}:
mkDerivation {
pname = "extended-reals";
- version = "0.2.1.0";
- sha256 = "b7397efc31d717943304dc985316526163aa7c5ec5a3536e41721e4043b97ba8";
+ version = "0.2.2.0";
+ sha256 = "f24538c29ffadf26fb9e3808e0fd5f326623a4d2588d1a985894e951019e9a93";
libraryHaskellDepends = [ base deepseq hashable ];
testHaskellDepends = [
- base HUnit QuickCheck test-framework test-framework-hunit
+ base deepseq HUnit QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 test-framework-th
];
- jailbreak = true;
homepage = "https://github.com/msakai/extended-reals/";
description = "Extension of real numbers with positive/negative infinities";
license = stdenv.lib.licenses.bsd3;
@@ -80101,14 +79437,14 @@ self: {
}:
mkDerivation {
pname = "extensible";
- version = "0.3.5";
- sha256 = "be5e73575f388277713e51398a9734b58cbec42dd1bd58476bba4858f33ece49";
+ version = "0.3.7";
+ sha256 = "05ae22329761fe7b455544013d13439fd5208b0191a97d9b3e3e81ec7a32e38e";
libraryHaskellDepends = [
base constraints monad-skeleton profunctors tagged template-haskell
transformers
];
homepage = "https://github.com/fumieval/extensible";
- description = "Extensible, efficient, lens-friendly data types";
+ description = "Extensible, efficient, optics-friendly data types";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -80300,7 +79636,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "extra" = callPackage
+ "extra_1_4_5" = callPackage
({ mkDerivation, base, directory, filepath, process, QuickCheck
, time, unix
}:
@@ -80317,6 +79653,46 @@ self: {
homepage = "https://github.com/ndmitchell/extra#readme";
description = "Extra functions I use";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "extra_1_4_6" = callPackage
+ ({ mkDerivation, base, directory, filepath, process, QuickCheck
+ , time, unix
+ }:
+ mkDerivation {
+ pname = "extra";
+ version = "1.4.6";
+ sha256 = "208be62dd096768ade9d7191e55287acacfc11f440c4bf50b335b4a8c4ebc707";
+ 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;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "extra" = callPackage
+ ({ mkDerivation, base, directory, filepath, process, QuickCheck
+ , time, unix
+ }:
+ mkDerivation {
+ pname = "extra";
+ version = "1.4.7";
+ sha256 = "d4cf844777cbfc652d2161f6ef13344e2ff712066ddc70d3a9143dc62f512018";
+ 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
@@ -80508,6 +79884,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "failure-detector" = callPackage
+ ({ mkDerivation, base, containers, QuickCheck, statistics, tasty
+ , tasty-quickcheck, time
+ }:
+ mkDerivation {
+ pname = "failure-detector";
+ version = "0";
+ sha256 = "3089dbca68f42f1d753175573e95ee9269102b88f9fcb572f00e6673b2a9ec7b";
+ libraryHaskellDepends = [ base containers statistics time ];
+ testHaskellDepends = [
+ base QuickCheck tasty tasty-quickcheck time
+ ];
+ jailbreak = true;
+ description = "Failure Detectors implimented in Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"fair-predicates" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -80619,6 +80012,20 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
+ "farmhash_0_1_0_5" = callPackage
+ ({ mkDerivation, base, bytestring, hspec, QuickCheck }:
+ mkDerivation {
+ pname = "farmhash";
+ version = "0.1.0.5";
+ sha256 = "0e685a5445f7bce88682d209bccb47d03f06065a627475df44a8e2af8bc20fa1";
+ libraryHaskellDepends = [ base bytestring ];
+ testHaskellDepends = [ base bytestring hspec QuickCheck ];
+ 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
({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck
, stm
@@ -80651,7 +80058,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "fast-builder" = callPackage
+ "fast-builder_0_0_0_4" = callPackage
({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck
, stm
}:
@@ -80664,6 +80071,38 @@ self: {
homepage = "http://github.com/takano-akio/fast-builder";
description = "Fast ByteString Builder";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "fast-builder" = 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
+ }:
+ mkDerivation {
+ pname = "fast-builder";
+ version = "0.0.0.6";
+ sha256 = "4a83c2fb4e21ec43d7cf9b2412286e1fea036f7c5cbfd4dcee8914f8b2ae9e1c";
+ 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;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"fast-digits" = callPackage
@@ -82200,8 +81639,8 @@ self: {
pname = "feed";
version = "0.3.11.1";
sha256 = "ed04d0fc120a4b1b47c7675d395afbb419506431bc6f8e0f2c382c73a4afc983";
- revision = "1";
- editedCabalFile = "c5f129b41daa9931f100efb01cee561e61a04b2118436e10e64141d68edab7fb";
+ revision = "2";
+ editedCabalFile = "a59224b7f2b31906c2decebe084684888ce6319e04645791378e385741e36e28";
libraryHaskellDepends = [
base old-locale old-time time time-locale-compat utf8-string xml
];
@@ -84797,6 +84236,8 @@ self: {
pname = "focus";
version = "0.1.3";
sha256 = "1eab0c24475725b0d29f4ac3cefe07a75b06a48ed77a9758201f542132cd8686";
+ revision = "1";
+ editedCabalFile = "ecefbe557e7d69155a272ef15d99a1e28906740cfc8eda052001f02ba98d655c";
libraryHaskellDepends = [ base ];
doHaddock = false;
jailbreak = true;
@@ -84807,14 +84248,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "focus_0_1_4" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "focus";
+ version = "0.1.4";
+ sha256 = "56447cb6087d7ce3db38a54bb73e6fc456d488f2a674e24ab80132b63c22d840";
+ revision = "1";
+ editedCabalFile = "2fd83bef83cc171b26d53614a3a67c82bd83aee4c6ea406a33d0cd379f1b1f25";
+ libraryHaskellDepends = [ base ];
+ doCheck = false;
+ homepage = "https://github.com/nikita-volkov/focus";
+ description = "A general abstraction for manipulating elements of container data structures";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"focus" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "focus";
- version = "0.1.4";
- sha256 = "56447cb6087d7ce3db38a54bb73e6fc456d488f2a674e24ab80132b63c22d840";
+ version = "0.1.5";
+ sha256 = "ef4b641e06207e4b3bfc2c1cbce062db86fe02956ca2294a3ae8c6b1e1ace7b1";
libraryHaskellDepends = [ base ];
- doCheck = false;
homepage = "https://github.com/nikita-volkov/focus";
description = "A general abstraction for manipulating elements of container data structures";
license = stdenv.lib.licenses.mit;
@@ -84826,8 +84282,8 @@ self: {
}:
mkDerivation {
pname = "fold-debounce";
- version = "0.2.0.1";
- sha256 = "0a59cd7d26dad8b5d87d6acd073152131642942736c1fdcb4a96ad0444037e56";
+ version = "0.2.0.2";
+ sha256 = "971be718a834d0a18fb3b36b20faf2efbaadb8dd3a600c879909aca1e36778d2";
libraryHaskellDepends = [
base data-default-class stm stm-delay time
];
@@ -84844,8 +84300,8 @@ self: {
}:
mkDerivation {
pname = "fold-debounce-conduit";
- version = "0.1.0.1";
- sha256 = "d8e0a80f0172ab80a842253aeb856ec327832e7f7f91d221ecf2ce66d265dc10";
+ version = "0.1.0.2";
+ sha256 = "33853bcf36dd89e8a51fdaeb6d78fffd6b3a5fb853f7b0f4f7add8e65ff07b50";
libraryHaskellDepends = [
base conduit fold-debounce resourcet stm transformers
transformers-base
@@ -87790,8 +87246,8 @@ self: {
({ mkDerivation, base, GConf, glib, gtk2hs-buildtools, text }:
mkDerivation {
pname = "gconf";
- version = "0.13.0.3";
- sha256 = "e8efb705c725ae56486585d0972f9dcec96db89c4d636f1805f7dd3e175d69d2";
+ version = "0.13.1.0";
+ sha256 = "57cfa606ef4dcd377e0d77d59b880439382ad05604b3e3d439fd64af64a21dad";
libraryHaskellDepends = [ base glib text ];
libraryPkgconfigDepends = [ GConf ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -88385,6 +87841,27 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "generic-random" = callPackage
+ ({ mkDerivation, ad, base, containers, hashable, hmatrix, ieee754
+ , MonadRandom, mtl, QuickCheck, transformers, unordered-containers
+ , vector
+ }:
+ mkDerivation {
+ pname = "generic-random";
+ version = "0.1.0.0";
+ sha256 = "80c44e1d16bbbb1d524a6776ff421fe904f77354a5cbbd8bd5cfc2c2b983c0e2";
+ revision = "1";
+ editedCabalFile = "758274d60d15c1c553daa7e0e7b87dcde966f954b10325605eb704e9c8ab52b7";
+ libraryHaskellDepends = [
+ ad base containers hashable hmatrix ieee754 MonadRandom mtl
+ QuickCheck transformers unordered-containers vector
+ ];
+ testHaskellDepends = [ base QuickCheck ];
+ homepage = "http://github.com/lysxia/generic-random";
+ description = "Generic random generators";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"generic-server" = callPackage
({ mkDerivation, base, bytestring, network }:
mkDerivation {
@@ -88433,6 +87910,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "generic-trie_0_3_0_2" = callPackage
+ ({ mkDerivation, base, containers, transformers }:
+ mkDerivation {
+ pname = "generic-trie";
+ version = "0.3.0.2";
+ sha256 = "38319a5e95ed79e0e8924a69fc992c6fa38a3152a2539314ddd19d1a10abf8e9";
+ libraryHaskellDepends = [ base containers transformers ];
+ 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
({ mkDerivation, base, HaXml, mtl, syb-with-class, template-haskell
}:
@@ -88654,6 +88144,8 @@ self: {
pname = "generics-sop-lens";
version = "0.1.1.0";
sha256 = "77dad1fc8dc9a9e7bd049a46ea4917b5d6e6b1d22a7194f67965126717cfd360";
+ revision = "1";
+ editedCabalFile = "fc41f76ff2763343ea54274f64907f4343abe3f195a4b271149a524023cfcea0";
libraryHaskellDepends = [ base generics-sop lens ];
homepage = "https://github.com/phadej/generics-sop-lens#readme";
description = "Lenses for types in generics-sop";
@@ -89021,6 +88513,19 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
+ "geojson-types" = callPackage
+ ({ mkDerivation, aeson, base, bson, bytestring, lens, text }:
+ mkDerivation {
+ pname = "geojson-types";
+ version = "0.1.3";
+ sha256 = "92f43434853cbe65289baa875088e6055df827b7a79fb952f1ad9e55e3ce6c82";
+ libraryHaskellDepends = [ aeson base bson bytestring lens text ];
+ jailbreak = true;
+ homepage = "https://github.com/alios/geojson-types/";
+ description = "GeoJSON data types including JSON/BSON conversion";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"geom2d" = callPackage
({ mkDerivation, base, ieee754, linear, QuickCheck }:
mkDerivation {
@@ -89173,6 +88678,33 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ghc-boot" = callPackage
+ ({ mkDerivation, base, binary, bytestring, directory, filepath
+ , ghc-boot-th
+ }:
+ mkDerivation {
+ pname = "ghc-boot";
+ version = "8.0.1";
+ sha256 = "ba9bfbe6d18c0cf445f2b38ab42b649286f8b61d727dec2ba37fea648ebb28da";
+ 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;
+ }) {};
+
+ "ghc-boot-th" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "ghc-boot-th";
+ version = "8.0.1";
+ sha256 = "c2eb6746801ca289d940099b3c68113963f9eddec90b454258a1442cd993e385";
+ libraryHaskellDepends = [ base ];
+ description = "Shared functionality between GHC and the @template-haskell@ library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ghc-core" = callPackage
({ mkDerivation, base, colorize-haskell, directory, filepath
, pcre-light, process
@@ -89227,8 +88759,8 @@ self: {
}:
mkDerivation {
pname = "ghc-dump-tree";
- version = "0.2.0.0";
- sha256 = "2b1cf817fcd1727b029a74d393816da936cb49e9048524dc743afb3d9cc65e5e";
+ version = "0.2.0.1";
+ sha256 = "784a983d6d887f5d36b6169a7d1bdd41800699ef79f74e3806c081ce1e2074a8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -89239,7 +88771,6 @@ self: {
aeson base bytestring ghc optparse-applicative pretty pretty-show
process unordered-containers vector
];
- jailbreak = true;
homepage = "https://github.com/edsko/ghc-dump-tree";
description = "Dump GHC's parsed, renamed, and type checked ASTs";
license = stdenv.lib.licenses.bsd3;
@@ -89488,6 +89019,8 @@ self: {
pname = "ghc-mod";
version = "5.2.1.1";
sha256 = "46cc0247d61bec5aa1262825ca18b7b264f2842a99aada3b299668701229af25";
+ revision = "1";
+ editedCabalFile = "5fca3415989e6265bd328ba0f9cca817edd93bbe2d135975f8b1baadefc1843b";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -89507,6 +89040,7 @@ self: {
temporary text time transformers transformers-base
];
doHaddock = false;
+ jailbreak = true;
doCheck = false;
homepage = "http://www.mew.org/~kazu/proj/ghc-mod/";
description = "Happy Haskell Programming";
@@ -89526,6 +89060,8 @@ self: {
pname = "ghc-mod";
version = "5.2.1.2";
sha256 = "3b66b4ab4271ee1a61ab348951d49c38e500535789b469783281d36556cb9687";
+ revision = "1";
+ editedCabalFile = "bab980626f9e737e0a9c5a5f5a44dafb6341fa9b6fe052163fbf1e1394bcebb9";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -89544,6 +89080,7 @@ self: {
monad-control monad-journal mtl old-time pretty process split syb
temporary text time transformers transformers-base
];
+ jailbreak = true;
doCheck = false;
homepage = "http://www.mew.org/~kazu/proj/ghc-mod/";
description = "Happy Haskell Programming";
@@ -89756,12 +89293,12 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "ghc-prim_0_4_0_0" = callPackage
+ "ghc-prim_0_5_0_0" = callPackage
({ mkDerivation, rts }:
mkDerivation {
pname = "ghc-prim";
- version = "0.4.0.0";
- sha256 = "61688f073f20651000781e012da8c42e771b6f4a16bf62e03c263adf039d70f0";
+ version = "0.5.0.0";
+ sha256 = "44bbe4f0858f5101d860b7447a689bcd38a2451f4cc1d29f0de130cbd92bd6b2";
libraryHaskellDepends = [ rts ];
description = "GHC primitives";
license = stdenv.lib.licenses.bsd3;
@@ -90054,6 +89591,23 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
+ "ghci" = callPackage
+ ({ mkDerivation, array, base, binary, bytestring, containers
+ , deepseq, filepath, ghc-boot, template-haskell, transformers, unix
+ }:
+ mkDerivation {
+ pname = "ghci";
+ version = "8.0.1";
+ sha256 = "6becea2e7f687eefda4acc9ddf90dbd90d82fd497d0d9f72f47d8f1e9614988e";
+ libraryHaskellDepends = [
+ 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;
+ }) {};
+
"ghci-diagrams" = callPackage
({ mkDerivation, base, cairo, colour, diagrams, gtk }:
mkDerivation {
@@ -90294,8 +89848,8 @@ self: {
}:
mkDerivation {
pname = "ghcid";
- version = "0.6.2";
- sha256 = "2977c1f260d3552e321ac120b37e25537f81f127d2aa579310a9f4232d3fd690";
+ version = "0.6.4";
+ sha256 = "fc43077955f9e53519b028364da0ec8bbea467b739b89ed7b2fa234a4a4b71db";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -90345,8 +89899,8 @@ self: {
}:
mkDerivation {
pname = "ghcjs-dom";
- version = "0.2.3.1";
- sha256 = "dfdee3dcd46ad5707a09488ccf0d2c69dbb47d2044212aeadec0a44f3facee39";
+ version = "0.2.4.0";
+ sha256 = "986db6b770c348d7a28368309a648626455d55e7a5705a849fd5a2981eb868a6";
libraryHaskellDepends = [
base glib gtk3 text transformers webkitgtk3
];
@@ -90473,17 +90027,18 @@ self: {
"gi-atk" = callPackage
({ mkDerivation, atk, base, bytestring, containers, gi-glib
- , gi-gobject, haskell-gi-base, text, transformers
+ , gi-gobject, haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-atk";
- version = "0.2.18.13";
- sha256 = "2127e52f83f3cb6c4db30d69a9f19d3dfea987c13816bb9ce6421a35f704b496";
+ version = "2.0.3";
+ sha256 = "3470813961cc6223c02b29cceaede04966b4e5ed497748bd0a61c023d7142620";
libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi-base text
- transformers
+ base bytestring containers gi-glib gi-gobject haskell-gi
+ 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;
@@ -90492,36 +90047,39 @@ self: {
"gi-cairo" = callPackage
({ mkDerivation, base, bytestring, cairo-gobject, containers
- , haskell-gi-base, text, transformers
+ , haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-cairo";
- version = "0.1.14.13";
- sha256 = "d7055a146fc315244c21fdccdc0cfbac7a2d2a95cdcc38d8330380b3104600cc";
+ version = "1.0.3";
+ sha256 = "0b54aff46b1998285a79a7356c5a74699112d6b09f1952bb30622ee6b53afe8b";
libraryHaskellDepends = [
- base bytestring containers haskell-gi-base text transformers
+ base bytestring containers haskell-gi haskell-gi-base text
+ transformers
];
libraryPkgconfigDepends = [ cairo-gobject ];
+ doHaddock = false;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "cairo bindings";
+ description = "Cairo bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
}) {cairo-gobject = null;};
"gi-gdk" = callPackage
({ mkDerivation, base, bytestring, containers, gdk3, gi-cairo
- , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango
+ , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, haskell-gi
, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gdk";
- version = "0.3.18.13";
- sha256 = "f0872053ddd8bed0e10d794b55b4ccec169747a545c4d403b78dd06e6d203f40";
+ version = "3.0.3";
+ sha256 = "12bd380233f41a43479891a3f731391b7ecd1d74712f263f835089cb8090be4b";
libraryHaskellDepends = [
base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib
- gi-gobject gi-pango haskell-gi-base text transformers
+ gi-gobject gi-pango haskell-gi 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;
@@ -90530,17 +90088,19 @@ self: {
"gi-gdkpixbuf" = callPackage
({ mkDerivation, base, bytestring, containers, gdk_pixbuf, gi-gio
- , gi-glib, gi-gobject, haskell-gi-base, text, transformers
+ , gi-glib, gi-gobject, haskell-gi, haskell-gi-base, text
+ , transformers
}:
mkDerivation {
pname = "gi-gdkpixbuf";
- version = "0.2.32.13";
- sha256 = "862d88afbea9c624d3bc4365b5cfdd26f3d0a664a8b1cf31ff9978624c2d56bd";
+ version = "2.0.3";
+ sha256 = "5c1dcc322ad42839c74e5be2fb715f29bfa1f06d285ea4e90d2f3a19a6f545c9";
libraryHaskellDepends = [
- base bytestring containers gi-gio gi-glib gi-gobject
+ base bytestring containers gi-gio gi-glib gi-gobject haskell-gi
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;
@@ -90549,17 +90109,18 @@ self: {
"gi-gio" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , glib, haskell-gi-base, text, transformers
+ , glib, haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gio";
- version = "0.2.46.13";
- sha256 = "7a44b89ec398d272f601a4526cd208373f6f8b0435429f0f30f17e6bb8d1ee27";
+ version = "2.0.3";
+ sha256 = "1b2cc15f3cb60b72a7256ec8b5d0a07644b850055ae45fab5b0be9633d96f09c";
libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi-base text
- transformers
+ base bytestring containers gi-glib gi-gobject haskell-gi
+ 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;
@@ -90568,35 +90129,39 @@ self: {
"gi-girepository" = callPackage
({ mkDerivation, base, bytestring, containers, gi-gobject
- , gobjectIntrospection, haskell-gi-base, text, transformers
+ , gobjectIntrospection, haskell-gi, haskell-gi-base, text
+ , transformers
}:
mkDerivation {
pname = "gi-girepository";
- version = "0.1.46.13";
- sha256 = "da0a3b9be77596e8f47436652de9c1ebd9045a13648d93e2d3ade370c9e54666";
+ version = "1.0.3";
+ sha256 = "aa40c340fce39c3b6f6a582905e370cee47f5e07c2beebe95a8bbc02a7a20274";
libraryHaskellDepends = [
- base bytestring containers gi-gobject haskell-gi-base text
- transformers
+ base bytestring containers gi-gobject haskell-gi haskell-gi-base
+ text transformers
];
libraryPkgconfigDepends = [ gobjectIntrospection ];
+ doHaddock = false;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GIRepository bindings";
+ description = "GIRepository (gobject-introspection) bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = [ "x86_64-linux" ];
}) {inherit (pkgs) gobjectIntrospection;};
"gi-glib" = callPackage
- ({ mkDerivation, base, bytestring, containers, glib
+ ({ mkDerivation, base, bytestring, containers, glib, haskell-gi
, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-glib";
- version = "0.2.46.13";
- sha256 = "3763379e018fcd86ad2f924a8c9dd40ce84a33cf8f8bcddcdd69433c5c58d1e8";
+ version = "2.0.3";
+ sha256 = "2a961091547deaf8509ef3213353ec7b6ea458a584a81eef7d2685f8312b1170";
libraryHaskellDepends = [
- base bytestring containers haskell-gi-base text transformers
+ base bytestring containers haskell-gi 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;
@@ -90605,17 +90170,18 @@ self: {
"gi-gobject" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, glib
- , haskell-gi-base, text, transformers
+ , haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gobject";
- version = "0.2.46.13";
- sha256 = "07689ff907eceb5165c65ab3948d40aa3d8b92e1ac5f0179f482d413bd6458d6";
+ version = "2.0.3";
+ sha256 = "9cd5c2c8a2c1599334f705ea15fc3e7e63f012c60a46669ad108a2965d73973b";
libraryHaskellDepends = [
- base bytestring containers gi-glib haskell-gi-base text
+ base bytestring containers gi-glib haskell-gi 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;
@@ -90624,78 +90190,83 @@ self: {
"gi-gst" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , gstreamer, haskell-gi-base, text, transformers
+ , gstreamer, haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gst";
- version = "0.1.6.13";
- sha256 = "8b3eb8f93a6f32c9e8db6ebb02d33f78eda651a8428926e2e6c0a22d10ed8ea2";
+ version = "1.0.3";
+ sha256 = "6886c00b4cff10b873709762f3db3d22ed2007e36a36ef73470eb2389e6d2fb3";
libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi-base text
- transformers
+ base bytestring containers gi-glib gi-gobject haskell-gi
+ haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gstreamer ];
+ doHaddock = false;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Gst bindings";
+ 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-base, text
- , transformers
+ , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi, haskell-gi-base
+ , text, transformers
}:
mkDerivation {
pname = "gi-gstaudio";
- version = "0.1.6.13";
- sha256 = "307b12f1f6ba52a3b95fcfe4433ac9f947abdf45527329c3e8f0350a3084998b";
+ version = "1.0.3";
+ sha256 = "e7a63a66a6edd8871deef7f2c0659aa455821c4c7157c128ac135b6d157ccd49";
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase
- haskell-gi-base text transformers
+ haskell-gi haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gst_plugins_base ];
+ doHaddock = false;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GstAudio bindings";
+ 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-base, text, transformers
+ , gi-gst, gst_plugins_base, haskell-gi, haskell-gi-base, text
+ , transformers
}:
mkDerivation {
pname = "gi-gstbase";
- version = "0.1.6.13";
- sha256 = "aab56f2d440b225604842451a94bba851c35bd177b48132da83c7890440e445c";
+ version = "1.0.3";
+ sha256 = "3efcc31f79c6da853ca710dfcb2468bade41bc7b5cfa642503ae2cec75bedf67";
libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject gi-gst
+ base bytestring containers gi-glib gi-gobject gi-gst haskell-gi
haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gst_plugins_base ];
+ doHaddock = false;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GstBase bindings";
+ 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-base, text
- , transformers
+ , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi, haskell-gi-base
+ , text, transformers
}:
mkDerivation {
pname = "gi-gstvideo";
- version = "0.1.6.13";
- sha256 = "e35c5f20f8e09dc8232e5d26ff97948fd0dc42d0de8bf20a5c29c22788f03186";
+ version = "1.0.3";
+ sha256 = "54a9661a23719ba346ccffb345f6896ffa3a9a9628705076518b5e7368d2c3cf";
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase
- haskell-gi-base text transformers
+ haskell-gi haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gst_plugins_base ];
+ doHaddock = false;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GstVideo bindings";
+ description = "GStreamerVideo bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gst_plugins_base;};
@@ -90703,36 +90274,61 @@ self: {
"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
+ , haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gtk";
- version = "0.3.18.13";
- sha256 = "fed4dae7e04ee55819be887aac949df1e57c9d4f42804620cd78377b961cdc8a";
+ version = "3.0.3";
+ sha256 = "490acc92f75b231e9770b5bba2e041c2e3cd163c5e6483a153f072b0b6987c31";
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
- gi-gio gi-glib gi-gobject gi-pango haskell-gi-base text
+ gi-gio gi-glib gi-gobject gi-pango haskell-gi 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;
hydraPlatforms = stdenv.lib.platforms.none;
}) {gtk3 = pkgs.gnome2.gtk;};
+ "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
+ }:
+ mkDerivation {
+ pname = "gi-gtksource";
+ version = "3.0.3";
+ sha256 = "f3ccac36ee88f12101fbab5e1cbc893932a17e1c07d5329be6d9190e5b501088";
+ 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
+ ];
+ libraryPkgconfigDepends = [ gtksourceview ];
+ doHaddock = false;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "GtkSource bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ }) {inherit (pkgs.gnome) gtksourceview;};
+
"gi-javascriptcore" = callPackage
- ({ mkDerivation, base, bytestring, containers, haskell-gi-base
- , javascriptcoregtk, text, transformers
+ ({ mkDerivation, base, bytestring, containers, haskell-gi
+ , haskell-gi-base, javascriptcoregtk, text, transformers
}:
mkDerivation {
pname = "gi-javascriptcore";
- version = "0.2.10.13";
- sha256 = "15518556f06c707710899cf1d3277e6e5a0c14e4310e3b288f31d86e55e256c7";
+ version = "4.0.3";
+ sha256 = "4de96b5ffa891588f2aa77e78c7d369c26afc3a233134a01b90438d057786597";
libraryHaskellDepends = [
- base bytestring containers haskell-gi-base text transformers
+ base bytestring containers haskell-gi 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;
@@ -90740,57 +90336,81 @@ self: {
}) {javascriptcoregtk = null;};
"gi-notify" = callPackage
- ({ mkDerivation, base, bytestring, containers, gdk_pixbuf
- , gi-gdkpixbuf, gi-glib, gi-gobject, haskell-gi-base, text
+ ({ mkDerivation, base, bytestring, containers, gi-gdkpixbuf
+ , gi-glib, gi-gobject, haskell-gi, haskell-gi-base, libnotify, text
, transformers
}:
mkDerivation {
pname = "gi-notify";
- version = "0.2.32.13";
- sha256 = "1b644d4d5ce7cbf93fdeea6f1fd92506f878449a0da28ea8e027b25177412699";
+ version = "0.7.3";
+ sha256 = "03f8ccbe73908644dc01462c9046e67e165cb261d325f8ccf39f02c445fdf770";
libraryHaskellDepends = [
base bytestring containers gi-gdkpixbuf gi-glib gi-gobject
- haskell-gi-base text transformers
+ haskell-gi haskell-gi-base text transformers
];
- libraryPkgconfigDepends = [ gdk_pixbuf ];
+ libraryPkgconfigDepends = [ libnotify ];
+ doHaddock = false;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Notify bindings";
+ description = "Libnotify bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = [ "x86_64-linux" ];
- }) {inherit (pkgs) gdk_pixbuf;};
+ }) {inherit (pkgs) libnotify;};
"gi-pango" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , haskell-gi-base, pango, text, transformers
+ , haskell-gi, haskell-gi-base, pango, text, transformers
}:
mkDerivation {
pname = "gi-pango";
- version = "0.1.38.13";
- sha256 = "1398cf18aacad90acbcea526e7c35816385676530abc5896dc5f571a52350766";
+ version = "1.0.3";
+ sha256 = "d1a5f97c17038967573576e2eba05207e1d6d8c89a704d87767681e858fb0257";
libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi-base text
- transformers
+ base bytestring containers gi-glib gi-gobject haskell-gi
+ 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 = [ "x86_64-linux" ];
}) {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
+ }:
+ mkDerivation {
+ pname = "gi-pangocairo";
+ version = "1.0.3";
+ sha256 = "799e4ed0cc657132f7ef88f829fc5eee7390a8855c4f564a55c8066549462604";
+ libraryHaskellDepends = [
+ base bytestring containers gi-cairo gi-glib gi-gobject gi-pango
+ haskell-gi haskell-gi-base text transformers
+ ];
+ libraryPkgconfigDepends = [ pango ];
+ doHaddock = false;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "PangoCairo bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ }) {inherit (pkgs.gnome) pango;};
+
"gi-poppler" = callPackage
({ mkDerivation, base, bytestring, containers, gi-cairo, gi-gio
- , gi-glib, gi-gobject, haskell-gi-base, poppler, text, transformers
+ , gi-glib, gi-gobject, haskell-gi, haskell-gi-base, poppler, text
+ , transformers
}:
mkDerivation {
pname = "gi-poppler";
- version = "0.0.34.13";
- sha256 = "22104ebf4726ba393968011dfc09c5d4333b26c8b630b2d2258dc5ff835b75a8";
+ version = "0.18.3";
+ sha256 = "8d060edfd5bbb0a37334e00c043cd06e9df358773fd21ad51d3f7f6b3f4c5f69";
libraryHaskellDepends = [
base bytestring containers gi-cairo gi-gio gi-glib gi-gobject
- haskell-gi-base text transformers
+ haskell-gi 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;
@@ -90799,37 +90419,40 @@ self: {
"gi-soup" = callPackage
({ mkDerivation, base, bytestring, containers, gi-gio, gi-glib
- , gi-gobject, haskell-gi-base, libsoup, text, transformers
+ , gi-gobject, haskell-gi, haskell-gi-base, libsoup, text
+ , transformers
}:
mkDerivation {
pname = "gi-soup";
- version = "0.2.52.13";
- sha256 = "ffe480948998273a6b2454c85ad3bc05e67fd3b614c7932a44b954cdc77fd9de";
+ version = "2.4.3";
+ sha256 = "ee786ad3b35b6468f53f3962611e5316a020bdf98d9b4050a598f7b45a575a4b";
libraryHaskellDepends = [
- base bytestring containers gi-gio gi-glib gi-gobject
+ base bytestring containers gi-gio gi-glib gi-gobject haskell-gi
haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ libsoup ];
+ doHaddock = false;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Soup bindings";
+ 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-base
- , text, transformers, vte
+ , gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi
+ , haskell-gi-base, text, transformers, vte
}:
mkDerivation {
pname = "gi-vte";
- version = "0.0.42.13";
- sha256 = "f69c75e5cd250452463b465fa308f08fcc3c2c15be07862c4dcdcbdae8f60039";
+ version = "2.91.3";
+ sha256 = "675caf935431d9c059fbd214d30019aede82b51349693bcc29ae74a213e646e4";
libraryHaskellDepends = [
base bytestring containers gi-atk gi-gdk gi-gio gi-glib gi-gobject
- gi-gtk gi-pango haskell-gi-base text transformers
+ gi-gtk gi-pango haskell-gi 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;
@@ -90839,19 +90462,20 @@ self: {
"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-base, text, transformers
- , webkit
+ , gi-javascriptcore, gi-soup, haskell-gi, haskell-gi-base, text
+ , transformers, webkit
}:
mkDerivation {
pname = "gi-webkit";
- version = "0.2.4.13";
- sha256 = "a7f0a613c96944a90ac9a178ae58467028daa599805ea44f3440461450a7b77b";
+ version = "3.0.3";
+ sha256 = "8652475bdd3bd713a2eb6ceb55c4ab81bf0939824d707dfe888e007c782fd216";
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-base text transformers
+ haskell-gi haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ webkit ];
+ doHaddock = false;
jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "WebKit bindings";
@@ -90862,18 +90486,20 @@ self: {
"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-base, text, transformers, webkit2gtk
+ , gi-soup, haskell-gi, haskell-gi-base, text, transformers
+ , webkit2gtk
}:
mkDerivation {
pname = "gi-webkit2";
- version = "0.2.10.13";
- sha256 = "6668a9dd9785cffc783051ea78a8cac92466f1cb1760854b96a90c1ddf537a07";
+ version = "4.0.3";
+ sha256 = "1f0ec734c2eb560a6b539dec340106ed6cf6a74fdd8ea4d6b21228657cb2818d";
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gio gi-glib
- gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi-base text
- transformers
+ gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi
+ haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ webkit2gtk ];
+ doHaddock = false;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "WebKit2 bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90882,20 +90508,21 @@ self: {
"gi-webkit2webextension" = callPackage
({ mkDerivation, base, bytestring, containers, gi-gobject, gi-gtk
- , gi-javascriptcore, gi-soup, haskell-gi-base, text, transformers
- , webkit2gtk-web-extension
+ , gi-javascriptcore, gi-soup, haskell-gi, haskell-gi-base, text
+ , transformers, webkit2gtk-web-extension
}:
mkDerivation {
pname = "gi-webkit2webextension";
- version = "0.2.10.13";
- sha256 = "7e3f0878325c7d67757762f93648ebcd703ed7fc4003fc27f2d2026a50892ec0";
+ version = "4.0.3";
+ sha256 = "19711474df979da0da05bcf94df82674e89e31471fb76c050a43a5a071d05df4";
libraryHaskellDepends = [
base bytestring containers gi-gobject gi-gtk gi-javascriptcore
- gi-soup haskell-gi-base text transformers
+ gi-soup haskell-gi haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ webkit2gtk-web-extension ];
+ doHaddock = false;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "WebKit2WebExtension bindings";
+ description = "WebKit2-WebExtension bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
}) {webkit2gtk-web-extension = null;};
@@ -91035,6 +90662,24 @@ self: {
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
+ ];
+ libraryToolDepends = [ gtk2hs-buildtools ];
+ homepage = "http://projects.haskell.org/gtk2hs/";
+ description = "Binding to GIO";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"gipeda_0_1_0_2" = callPackage
({ mkDerivation, aeson, base, bytestring, cassava, containers
, directory, filepath, shake, split, text, unordered-containers
@@ -91195,6 +90840,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "git" = callPackage
+ ({ mkDerivation, base, byteable, bytedump, bytestring, containers
+ , cryptonite, hourglass, memory, mtl, patience, random
+ , system-fileio, system-filepath, tasty, tasty-quickcheck
+ , unix-compat, utf8-string, vector, zlib, zlib-bindings
+ }:
+ mkDerivation {
+ pname = "git";
+ version = "0.1";
+ sha256 = "846907115b7b81dd046c78581d4709b403e307046f1ab4680c7ac0475130bef3";
+ libraryHaskellDepends = [
+ base byteable bytestring containers cryptonite hourglass memory mtl
+ patience random system-fileio system-filepath unix-compat
+ utf8-string vector zlib zlib-bindings
+ ];
+ testHaskellDepends = [
+ base bytedump bytestring hourglass tasty tasty-quickcheck
+ ];
+ homepage = "https://github.com/vincenthz/hit";
+ description = "Git operations in haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"git-all" = callPackage
({ mkDerivation, base, cmdargs, hslogger, parallel-io, regex-posix
, shelly, system-fileio, system-filepath, text, transformers, unix
@@ -91440,8 +91108,8 @@ self: {
}:
mkDerivation {
pname = "git-annex";
- version = "6.20160419";
- sha256 = "1452a55809ba7367847fc4a77f2d8a5365af92e130d5ca460bf0880a26a6fb8e";
+ version = "6.20160511";
+ sha256 = "85fc8853166fe57d91dc2776d5df4acb5911a91815f8aa12881928a1afe8ba01";
configureFlags = [
"-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns"
"-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3"
@@ -91733,7 +91401,7 @@ self: {
description = "A framework for pre-commit checks";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {inherit (pkgs) git;};
+ }) {};
"gitHUD" = callPackage
({ mkDerivation, base, mtl, parsec, process, tasty, tasty-hunit
@@ -91868,8 +91536,8 @@ self: {
}:
mkDerivation {
pname = "github-backup";
- version = "1.20160319";
- sha256 = "6831013f8ce72b5bfbe8ba19cd46bcca61e134d463d64f614db54526a944f73f";
+ version = "1.20160522";
+ sha256 = "da5f7c8458321e039f8634cce7ce539bf5c0464e9487072ab79a68fa074d5aa8";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -91909,8 +91577,8 @@ self: {
}:
mkDerivation {
pname = "github-release";
- version = "0.1.5";
- sha256 = "bef5d00d01c10c5c2d8deb29465eefe390c8dc6ad691f1c81fab86256c50594e";
+ version = "0.1.8";
+ sha256 = "165ea874a35b23014def46e67f4d348135c35f31a86d445576e17c22948343bf";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -91923,15 +91591,15 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "github-release_0_1_8" = callPackage
+ "github-release_0_1_9" = callPackage
({ mkDerivation, aeson, base, bytestring, http-client
, http-client-tls, http-types, mime-types, optparse-generic, text
, unordered-containers, uri-templater
}:
mkDerivation {
pname = "github-release";
- version = "0.1.8";
- sha256 = "165ea874a35b23014def46e67f4d348135c35f31a86d445576e17c22948343bf";
+ version = "0.1.9";
+ sha256 = "df10ca8f6c8dd97e3dbf6f173a63498a674f7564d727c5647782ec029bd4d1ef";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -91963,6 +91631,25 @@ self: {
license = "unknown";
}) {};
+ "github-types_0_2_1" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, hspec, hspec-smallcheck
+ , http-conduit, smallcheck, text, time, unordered-containers
+ , vector
+ }:
+ mkDerivation {
+ pname = "github-types";
+ version = "0.2.1";
+ sha256 = "cce4ea461b3ea7c92d130181244cfe7f29c10aecc7e7a980ee6722b6d6af7867";
+ libraryHaskellDepends = [ aeson base text time ];
+ testHaskellDepends = [
+ aeson aeson-pretty base hspec hspec-smallcheck http-conduit
+ smallcheck text time unordered-containers vector
+ ];
+ description = "Type definitions for objects used by the GitHub v3 API";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"github-utils" = callPackage
({ mkDerivation, base, basic-prelude, github, text }:
mkDerivation {
@@ -91993,6 +91680,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "github-webhook-handler_0_0_8" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, cryptohash, github-types
+ , text, transformers, uuid, vector
+ }:
+ mkDerivation {
+ pname = "github-webhook-handler";
+ version = "0.0.8";
+ sha256 = "1d908854606683c236720c2de3988ae723591be02b1c668bd8ba0ffa03b34fea";
+ libraryHaskellDepends = [
+ aeson base bytestring cryptohash github-types text transformers
+ uuid vector
+ ];
+ description = "GitHub WebHook Handler";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"github-webhook-handler-snap" = callPackage
({ mkDerivation, base, bytestring, case-insensitive, github-types
, github-webhook-handler, snap-core, uuid
@@ -92870,6 +92574,25 @@ self: {
license = stdenv.lib.licenses.lgpl21;
}) {inherit (pkgs) glib;};
+ "glib_0_13_3_0" = 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;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) glib;};
+
"glicko" = callPackage
({ mkDerivation, base, containers, data-default, deepseq, hspec
, lens, parallel, QuickCheck, statistics
@@ -92921,8 +92644,8 @@ self: {
}:
mkDerivation {
pname = "gll";
- version = "0.3.0.7";
- sha256 = "6d139f9b239944a442473096d055eb8f0bfb52fa9f5497a29d86d00e78e015da";
+ version = "0.3.0.9";
+ sha256 = "4c5657403588a489d1a97ee2e85e9ed5e41e029a299918b59778f1e65dfde0e2";
libraryHaskellDepends = [
array base containers pretty regex-applicative text TypeCompose
];
@@ -94122,8 +93845,8 @@ self: {
pname = "gogol-core";
version = "0.0.1";
sha256 = "5baad8cb7a646cee9490916096ba71bf75168d7f807d79419d350813fc52ef9b";
- revision = "1";
- editedCabalFile = "511fe34ba21f0de5e0349dbab8be23bf824e1229c086ee95613af4b5bf8e29e2";
+ revision = "2";
+ editedCabalFile = "71b667ad5dd6cc0cbb83311d78f3649ec08e59d50276a382c6b5074e86c8f58b";
libraryHaskellDepends = [
aeson attoparsec base bytestring case-insensitive conduit dlist
exceptions hashable http-client http-media http-types lens
@@ -96141,7 +95864,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "graphviz" = callPackage
+ "graphviz_2999_18_0_2" = callPackage
({ mkDerivation, base, bytestring, colour, containers, directory
, dlist, fgl, fgl-arbitrary, filepath, polyparse, process
, QuickCheck, temporary, text, transformers, wl-pprint-text
@@ -96162,6 +95885,35 @@ self: {
testHaskellDepends = [
base containers fgl fgl-arbitrary filepath QuickCheck text
];
+ jailbreak = true;
+ doCheck = false;
+ homepage = "http://projects.haskell.org/graphviz/";
+ description = "Bindings to Graphviz for graph visualisation";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "graphviz" = callPackage
+ ({ mkDerivation, base, bytestring, colour, containers, directory
+ , dlist, fgl, fgl-arbitrary, filepath, polyparse, process
+ , QuickCheck, temporary, text, transformers, wl-pprint-text
+ }:
+ mkDerivation {
+ pname = "graphviz";
+ version = "2999.18.1.0";
+ sha256 = "fe3575744144337ad0339a8c6aa10e93197444f8c93a359865d8b2e06b68e19f";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring colour containers directory dlist fgl filepath
+ polyparse process temporary text transformers wl-pprint-text
+ ];
+ executableHaskellDepends = [
+ base bytestring directory filepath text
+ ];
+ testHaskellDepends = [
+ base containers fgl fgl-arbitrary filepath QuickCheck text
+ ];
doCheck = false;
homepage = "http://projects.haskell.org/graphviz/";
description = "Bindings to Graphviz for graph visualisation";
@@ -96274,6 +96026,7 @@ self: {
aeson aeson-casing base bytestring file-embed network scientific
tasty tasty-hunit text time vector
];
+ doCheck = false;
homepage = "https://github.com/AndrewRademacher/haskell-graylog";
description = "Support for graylog output";
license = "unknown";
@@ -96808,6 +96561,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "grouped-list_0_2_1_2" = callPackage
+ ({ mkDerivation, base, containers, deepseq, pointed, QuickCheck
+ , tasty, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "grouped-list";
+ version = "0.2.1.2";
+ sha256 = "5bc49f34b1d9759a819c919971d789b14d37a8e22de811a5fc062675e3f8e875";
+ 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;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"groupoid" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -96987,14 +96756,13 @@ self: {
}:
mkDerivation {
pname = "gstreamer";
- version = "0.12.5.0";
- sha256 = "c633b67d1a687ce781775cea8bf4a250e823473b7cfae145bdceb7ad39102f3f";
+ version = "0.12.8";
+ sha256 = "ff437ed983c8d7d38add69a601707f86fcfcbc1a079c4463e67cb6a1dfcf69ad";
libraryHaskellDepends = [
array base bytestring directory glib mtl
];
libraryPkgconfigDepends = [ gst_plugins_base gstreamer ];
libraryToolDepends = [ gtk2hs-buildtools ];
- jailbreak = true;
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the GStreamer open source multimedia framework";
license = stdenv.lib.licenses.lgpl21;
@@ -97177,6 +96945,25 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {gtk2 = pkgs.gnome2.gtk;};
+ "gtk_0_14_3" = 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 ];
+ 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
@@ -97230,8 +97017,8 @@ self: {
}:
mkDerivation {
pname = "gtk-mac-integration";
- version = "0.3.2.1";
- sha256 = "33ae28811e7fbcfe00b1379489c3c73d5023e6b63ebfb19cdea9ddf40c312f06";
+ version = "0.3.3.0";
+ sha256 = "639a8f6993a902346555f0cef188418fadb8f272f98d5f1f485e4c2b832641c3";
libraryHaskellDepends = [ array base containers glib gtk mtl ];
libraryPkgconfigDepends = [ gtk-mac-integration-gtk2 ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -97375,6 +97162,31 @@ self: {
license = stdenv.lib.licenses.gpl2;
}) {};
+ "gtk2hs-buildtools_0_13_1_0" = callPackage
+ ({ mkDerivation, alex, array, base, Cabal, containers, directory
+ , filepath, happy, hashtables, pretty, process, random
+ }:
+ 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 ];
+ jailbreak = true;
+ 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
({ mkDerivation, base, glade, gtk, gtk2hs-cast-glib, hint
, template-haskell
@@ -97717,14 +97529,40 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs) gtk3;};
+ "gtk3_0_14_3" = 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
+ ];
+ 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
({ mkDerivation, array, base, containers, glib
, gtk-mac-integration-gtk3, gtk2hs-buildtools, gtk3, mtl
}:
mkDerivation {
pname = "gtk3-mac-integration";
- version = "0.3.2.1";
- sha256 = "c457a75dff24baf47a17f8763b4549be69305dcbc1cf8da7afa01ca62dd466f5";
+ version = "0.3.3.0";
+ sha256 = "c55a0c38dca1904bef528568d914a76f349ba87279b4a8ed3997bb9ac6b0a2e3";
libraryHaskellDepends = [ array base containers glib gtk3 mtl ];
libraryPkgconfigDepends = [ gtk-mac-integration-gtk3 ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -97797,8 +97635,8 @@ self: {
}:
mkDerivation {
pname = "gtksourceview2";
- version = "0.13.2.1";
- sha256 = "8a98b0dd60625db232152586f1f73c1e4cfdca30b8af6c155029b532aa75e206";
+ version = "0.13.3.0";
+ sha256 = "20747e2bff7b9e49bc4952a4ba706c72c02edafdb7eb86e00038dd438b5937cc";
libraryHaskellDepends = [
array base containers glib gtk mtl text
];
@@ -97830,6 +97668,25 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs.gnome) gtksourceview;};
+ "gtksourceview3_0_13_3_0" = callPackage
+ ({ mkDerivation, array, base, containers, glib, gtk2hs-buildtools
+ , gtk3, gtksourceview, mtl, text
+ }:
+ mkDerivation {
+ pname = "gtksourceview3";
+ version = "0.13.3.0";
+ sha256 = "c260f3d49e3ee2e3da2e9884f948e904b7e376bb885d0ce7da346bcab58042f2";
+ libraryHaskellDepends = [
+ array base containers glib gtk3 mtl text
+ ];
+ libraryPkgconfigDepends = [ gtksourceview ];
+ libraryToolDepends = [ gtk2hs-buildtools ];
+ 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
({ mkDerivation, base, instant-generics }:
mkDerivation {
@@ -98486,6 +98343,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "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
+ }:
+ mkDerivation {
+ pname = "hPDB";
+ version = "1.2.0.5";
+ sha256 = "d0fdcaa3f67dd9dc0bfdc144f2e53859452e66156f0beabe22c3df3d256dfc51";
+ libraryHaskellDepends = [
+ AC-Vector base bytestring containers deepseq directory ghc-prim
+ iterable mmap mtl Octree parallel QuickCheck tagged
+ template-haskell text vector zlib
+ ];
+ 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
({ mkDerivation, AC-Vector, base, bytestring, containers, deepseq
, directory, ghc-prim, GLUT, hPDB, iterable, mtl, Octree, OpenGL
@@ -98737,6 +98614,27 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "hablog" = callPackage
+ ({ mkDerivation, base, bifunctors, blaze-html, blaze-markup
+ , bytestring, containers, directory, filepath, markdown, mime-types
+ , mtl, scotty, scotty-tls, text, transformers
+ }:
+ mkDerivation {
+ pname = "hablog";
+ version = "0.4.0";
+ sha256 = "c7bb65866e22621196cac657afc610a578a5bab290af06e5b8d221ea3da2b80d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bifunctors blaze-html blaze-markup bytestring containers
+ directory filepath markdown mime-types mtl scotty scotty-tls text
+ transformers
+ ];
+ executableHaskellDepends = [ base ];
+ description = "A blog system";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"hacanon-light" = callPackage
({ mkDerivation, base, mtl, template-haskell }:
mkDerivation {
@@ -99639,17 +99537,17 @@ self: {
}) {};
"haddock" = callPackage
- ({ mkDerivation, base, Cabal, directory, filepath, haddock-api
- , process
- }:
+ ({ mkDerivation, base, filepath, haddock-api, hspec }:
mkDerivation {
pname = "haddock";
- version = "2.16.1";
- sha256 = "46ecd130cb5ad2b5c7452c843f9b75e976f1416d1cf17e6436d65c2c0bdbd6d6";
+ version = "2.17.2";
+ sha256 = "9dd499b022b775b1168c2a8fc940a8cca5eec2416289277a8f59d7321117bb15";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base haddock-api ];
- testHaskellDepends = [ base Cabal directory filepath process ];
+ testHaskellDepends = [ base filepath hspec ];
+ jailbreak = true;
+ doCheck = false;
preCheck = "unset GHC_PACKAGE_PATH";
homepage = "http://www.haskell.org/haddock/";
description = "A documentation-generation tool for Haskell libraries";
@@ -99734,6 +99632,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "haddock-api_2_17_2" = callPackage
+ ({ mkDerivation, array, base, bytestring, Cabal, containers
+ , deepseq, directory, filepath, ghc, ghc-boot, ghc-paths
+ , haddock-library, hspec, QuickCheck, transformers, xhtml
+ }:
+ mkDerivation {
+ pname = "haddock-api";
+ version = "2.17.2";
+ sha256 = "60df55698ebfb5d0a36c15d789a2d95c789fe0f7e61ef0c3be30ab0183d5261e";
+ libraryHaskellDepends = [
+ array base bytestring Cabal containers deepseq directory filepath
+ ghc ghc-boot ghc-paths haddock-library transformers xhtml
+ ];
+ testHaskellDepends = [ base containers ghc hspec QuickCheck ];
+ 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-leksah" = callPackage
({ mkDerivation, array, base, Cabal, containers, directory
, filepath, ghc, ghc-paths, pretty
@@ -99791,6 +99710,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "haddock-library_1_4_1" = callPackage
+ ({ mkDerivation, base, base-compat, bytestring, deepseq, hspec
+ , QuickCheck, transformers
+ }:
+ mkDerivation {
+ pname = "haddock-library";
+ version = "1.4.1";
+ sha256 = "40f4be262d3ec74a88e86f2bf9ecfba46ae140d936825c96b3d739acb9469ff1";
+ libraryHaskellDepends = [ base bytestring deepseq transformers ];
+ testHaskellDepends = [
+ base base-compat bytestring deepseq hspec QuickCheck transformers
+ ];
+ 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
({ mkDerivation, base, Cabal, conduit, conduit-extra, directory
, exceptions, filepath, ghc, haddock-api, http-types, mtl
@@ -100664,14 +100601,15 @@ self: {
, filepath, fsnotify, http-conduit, http-types, HUnit, lrucache
, mtl, network, network-uri, pandoc, pandoc-citeproc, parsec
, process, QuickCheck, random, regex-base, regex-tdfa, resourcet
- , snap-core, snap-server, system-filepath, tagsoup, test-framework
- , test-framework-hunit, test-framework-quickcheck2, text, time
- , time-locale-compat, unordered-containers, utillinux, vector, yaml
+ , scientific, snap-core, snap-server, system-filepath, tagsoup
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , text, time, time-locale-compat, unordered-containers, utillinux
+ , vector, yaml
}:
mkDerivation {
pname = "hakyll";
- version = "4.8.3.0";
- sha256 = "d01a2ec0fbc3efffb6e7fcc2971842b6c6bd893327324cada0e345d3a5e504ef";
+ version = "4.8.3.1";
+ sha256 = "e56b4a1b73b5d1b394af9c9730a2baf6df93a8cfd72b0429af36253083fdfaa4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -100679,8 +100617,8 @@ self: {
cryptohash data-default deepseq directory filepath fsnotify
http-conduit http-types lrucache mtl network network-uri pandoc
pandoc-citeproc parsec process random regex-base regex-tdfa
- resourcet snap-core snap-server system-filepath tagsoup text time
- time-locale-compat unordered-containers vector yaml
+ resourcet scientific snap-core snap-server system-filepath tagsoup
+ text time time-locale-compat unordered-containers vector yaml
];
executableHaskellDepends = [ base directory filepath ];
testHaskellDepends = [
@@ -100688,9 +100626,10 @@ self: {
cryptohash data-default deepseq directory filepath fsnotify
http-conduit http-types HUnit lrucache mtl network network-uri
pandoc pandoc-citeproc parsec process QuickCheck random regex-base
- regex-tdfa resourcet snap-core snap-server system-filepath tagsoup
- test-framework test-framework-hunit test-framework-quickcheck2 text
- time time-locale-compat unordered-containers vector yaml
+ regex-tdfa resourcet scientific snap-core snap-server
+ system-filepath tagsoup test-framework test-framework-hunit
+ test-framework-quickcheck2 text time time-locale-compat
+ unordered-containers vector yaml
];
testToolDepends = [ utillinux ];
homepage = "http://jaspervdj.be/hakyll";
@@ -100763,6 +100702,42 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "hakyll-contrib-csv" = callPackage
+ ({ mkDerivation, base, blaze-html, bytestring, cassava, hakyll
+ , hspec, vector
+ }:
+ mkDerivation {
+ pname = "hakyll-contrib-csv";
+ version = "0.1.0.2";
+ sha256 = "b7deef8642a4da8194878c4b32b13925bd9e9ea5edfce68e870383a18b4f0def";
+ libraryHaskellDepends = [
+ base blaze-html bytestring cassava hakyll vector
+ ];
+ testHaskellDepends = [ base blaze-html bytestring cassava hspec ];
+ homepage = "https://github.com/narrative/hakyll-contrib-csv#readme";
+ description = "Generate Html tables from Csv files";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "hakyll-contrib-elm" = callPackage
+ ({ mkDerivation, base, bytestring, directory, hakyll, process
+ , temporary
+ }:
+ mkDerivation {
+ pname = "hakyll-contrib-elm";
+ version = "0.1.0.1";
+ sha256 = "8bcb079e6b599059a17672b8664036d07775c3870cd1840d9bf09d5ebbfbf42b";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring directory hakyll process temporary
+ ];
+ executableHaskellDepends = [ base hakyll ];
+ homepage = "https://github.com/narrative/hakyll-contrib-elm#readme";
+ description = "Compile Elm code for inclusion in Hakyll static site";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"hakyll-contrib-hyphenation" = callPackage
({ mkDerivation, base, hakyll, hyphenation, split, tagsoup }:
mkDerivation {
@@ -102612,6 +102587,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "harvest-api" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, file-embed, hspec
+ , http-client, mtl, servant, servant-client, text, time
+ , transformers
+ }:
+ mkDerivation {
+ pname = "harvest-api";
+ version = "0.1.0";
+ sha256 = "052cf4dff75657fb7c7e74ea6fb3af542180b520d64b6a4197ef62e8acc1b7d1";
+ libraryHaskellDepends = [
+ aeson base bytestring http-client mtl servant servant-client text
+ time transformers
+ ];
+ testHaskellDepends = [
+ aeson base bytestring file-embed hspec time
+ ];
+ homepage = "https://github.com/stackbuilders/harvest-api";
+ description = "Bindings for Harvest API";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"has" = callPackage
({ mkDerivation, base, QuickCheck }:
mkDerivation {
@@ -102961,8 +102957,8 @@ self: {
}:
mkDerivation {
pname = "hashable-generics";
- version = "1.1.8";
- sha256 = "183a77fec48044d66fcd872383bc5c461fefd23d6eb954b7d4508caf1525b1d0";
+ version = "1.1.10";
+ sha256 = "8b116058f419dc4b371dd539817d3fd064b697ccdca0a01c66a8ce0f010f931b";
libraryHaskellDepends = [ base ghc-prim hashable ];
testHaskellDepends = [
base ghc-prim hashable QuickCheck test-framework
@@ -103699,23 +103695,26 @@ self: {
}) {};
"haskell-gi" = callPackage
- ({ mkDerivation, base, bytestring, containers, directory
- , file-embed, filepath, free, glib, gobjectIntrospection
- , haskell-gi-base, mtl, pretty-show, process, safe, text
- , transformers, xdg-basedir, xml-conduit
+ ({ 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.13";
- sha256 = "657c8b2b1a466fbbcb21d348bf0c4ab27f0415e73e18b611efc997560a161680";
- isLibrary = false;
+ version = "0.17.3";
+ sha256 = "9631ce7d57f5e6fa7dbd667d9d0d17638c0d4c0b598309fc2448b46e29b7511a";
+ isLibrary = true;
isExecutable = true;
- executableHaskellDepends = [
- base bytestring containers directory file-embed filepath free
+ libraryHaskellDepends = [
+ base bytestring Cabal containers directory file-embed filepath
haskell-gi-base mtl pretty-show process safe text transformers
xdg-basedir xml-conduit
];
- executablePkgconfigDepends = [ glib gobjectIntrospection ];
+ 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;
@@ -103728,8 +103727,8 @@ self: {
}:
mkDerivation {
pname = "haskell-gi-base";
- version = "0.13";
- sha256 = "57c33125b0fac446007b7cc6ea5d0d853bcdf725cdca8028c879561d977d0363";
+ version = "0.17";
+ sha256 = "fba8d755d1772cd0e01f7e8e7ac939d5bde9646d6493516c561484853ff77b76";
libraryHaskellDepends = [
base bytestring containers text transformers
];
@@ -103776,27 +103775,27 @@ self: {
"haskell-kubernetes" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, either
- , http-types, lens, network-uri, QuickCheck, quickcheck-instances
- , scientific, servant, servant-client, servant-mock, servant-server
- , split, text, transformers, unordered-containers, vector, wai
- , warp
+ , http-api-data, http-types, lens, network-uri, QuickCheck
+ , quickcheck-instances, scientific, servant, servant-client
+ , servant-server, split, text, transformers, unordered-containers
+ , vector, wai
}:
mkDerivation {
pname = "haskell-kubernetes";
- version = "0.3.2";
- sha256 = "9b45cedeab51c823a31e868096e889b72ea1f0c2035f52d17d12148892a79591";
+ version = "0.4.0";
+ sha256 = "38cc46fc4540be0c3b3eb0dab282d549f91d45f64856b7f8b9e32dbf7c51b6c0";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson base bytestring containers either http-types lens network-uri
- QuickCheck quickcheck-instances scientific servant servant-client
- servant-server split text unordered-containers vector wai
+ aeson base bytestring containers either http-api-data http-types
+ lens network-uri QuickCheck quickcheck-instances scientific servant
+ servant-client servant-server split text unordered-containers
+ vector wai
];
executableHaskellDepends = [
- base either network-uri QuickCheck servant servant-client
- servant-mock servant-server split transformers warp
+ 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;
@@ -106233,8 +106232,8 @@ self: {
}:
mkDerivation {
pname = "hasql";
- version = "0.19.11";
- sha256 = "48b12698e6168f176fa583317cb3f058e99f604ceda5036e891bc496bf4158e4";
+ version = "0.19.12";
+ sha256 = "8f211a2ce98debdd31a3a0ecf835c14ceb314c1e6421924cb3f7356ad3132342";
libraryHaskellDepends = [
aeson attoparsec base base-prelude bytestring
bytestring-tree-builder contravariant contravariant-extras
@@ -107021,8 +107020,8 @@ self: {
}:
mkDerivation {
pname = "hatex-guide";
- version = "1.3.1.1";
- sha256 = "19bdc6cd223514e0066fa3d74f8a86817f756245838437e9ba4e50faedb21acd";
+ version = "1.3.1.3";
+ sha256 = "9ec844efda0fd5ece2fb7e0c57ac3a79a7dcf3035aac85a08c797f3ded4c17ac";
libraryHaskellDepends = [
base blaze-html directory filepath HaTeX parsec text time
transformers
@@ -107334,7 +107333,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "haxr" = callPackage
+ "haxr_3000_11_1_4" = 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
@@ -107353,6 +107352,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.5";
+ sha256 = "33df429fb13b05bbf099ceb9c8753078ee8e3fdf6692152e67ba0326e7cd8e69";
+ 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
@@ -107455,14 +107476,20 @@ self: {
}:
mkDerivation {
pname = "hbayes";
- version = "0.5";
- sha256 = "6980ffee8b65dd1710759268ef1d869c50916ebe735c8d28e5cecb52158412fe";
+ version = "0.5.2";
+ sha256 = "c284e97dd276ed5371dee4b53da9e124adb4e958cd89d6d9ca1b27b506e416f5";
libraryHaskellDepends = [
array base binary boxes containers directory filepath gamma HUnit
mtl mwc-random parsec pretty QuickCheck random split statistics
test-framework test-framework-hunit test-framework-quickcheck2
vector
];
+ testHaskellDepends = [
+ array base binary boxes containers directory filepath gamma HUnit
+ mtl mwc-random parsec pretty QuickCheck random split statistics
+ test-framework test-framework-hunit test-framework-quickcheck2
+ vector
+ ];
homepage = "http://www.alpheccar.org";
description = "Bayesian Networks";
license = stdenv.lib.licenses.bsd3;
@@ -108155,7 +108182,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hdevtools" = callPackage
+ "hdevtools_0_1_3_0" = callPackage
({ mkDerivation, base, bin-package-db, Cabal, cmdargs, directory
, filepath, ghc, ghc-paths, network, process, syb, time
, transformers, unix
@@ -108173,6 +108200,27 @@ self: {
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;
+ }) {};
+
+ "hdevtools" = callPackage
+ ({ mkDerivation, base, bin-package-db, Cabal, cmdargs, directory
+ , filepath, ghc, ghc-paths, network, process, syb, time
+ , transformers, unix
+ }:
+ mkDerivation {
+ pname = "hdevtools";
+ version = "0.1.3.1";
+ sha256 = "3858ad140f5a2f1a3fae7c4ada811f6b096d1c295947ec18f8202765ab05b0d5";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base bin-package-db Cabal cmdargs directory filepath ghc ghc-paths
+ network process syb time transformers unix
+ ];
+ homepage = "https://github.com/hdevtools/hdevtools/";
+ description = "Persistent GHC powered background server for FAST haskell development tools";
+ license = stdenv.lib.licenses.mit;
}) {};
"hdf" = callPackage
@@ -108350,7 +108398,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hdocs" = callPackage
+ "hdocs_0_4_4_2" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal
, containers, filepath, ghc, ghc-paths, haddock-api
, haddock-library, MonadCatchIO-transformers, mtl, network, process
@@ -108375,6 +108423,32 @@ self: {
homepage = "https://github.com/mvoidex/hdocs";
description = "Haskell docs tool";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hdocs" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal
+ , containers, filepath, ghc, ghc-paths, haddock-api
+ , haddock-library, mtl, network, process, text
+ }:
+ mkDerivation {
+ pname = "hdocs";
+ version = "0.5.0.0";
+ sha256 = "57c422f7f86029436595d19f102aa64da499fc23f9f60801070a1650bde19c37";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring Cabal containers filepath ghc ghc-paths
+ haddock-api haddock-library mtl network process text
+ ];
+ executableHaskellDepends = [
+ aeson aeson-pretty base bytestring containers filepath haddock-api
+ mtl network text
+ ];
+ testHaskellDepends = [ base containers mtl ];
+ homepage = "https://github.com/mvoidex/hdocs";
+ description = "Haskell docs tool";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"hdph" = callPackage
@@ -108759,23 +108833,24 @@ self: {
}) {};
"hedn" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, containers, deepseq
- , hspec, HUnit, mtl, old-locale, QuickCheck, stringsearch
- , template-haskell, text, time, utf8-string, vector
+ ({ mkDerivation, attoparsec, base, base-compat, bytestring
+ , containers, deepseq, hspec, HUnit, mtl, QuickCheck, scientific
+ , stringsearch, template-haskell, text, time, time-locale-compat
+ , utf8-string, vector
}:
mkDerivation {
pname = "hedn";
- version = "0.1.8.1";
- sha256 = "21a73512dae8076ef6fbd6427cf07d55dc29895307c70f6dbb09a78265b3278b";
+ version = "0.1.8.2";
+ sha256 = "2f8ae0ddaa65133f971e75106ef4f408bc7e8c439b9ce46117352c566efec195";
libraryHaskellDepends = [
- attoparsec base bytestring containers deepseq mtl old-locale
- stringsearch text time utf8-string vector
+ attoparsec base base-compat bytestring containers deepseq mtl
+ scientific stringsearch text time time-locale-compat utf8-string
+ vector
];
testHaskellDepends = [
base bytestring containers hspec HUnit QuickCheck template-haskell
text time vector
];
- jailbreak = true;
homepage = "https://bitbucket.org/dpwiz/hedn";
description = "EDN parsing and encoding";
license = stdenv.lib.licenses.bsd3;
@@ -110057,8 +110132,8 @@ self: {
({ mkDerivation, base, base-unicode-symbols, hspec, text }:
mkDerivation {
pname = "hformat";
- version = "0.1.0.0";
- sha256 = "722f3d6bcf285477c93c68bcf62a23312cc8715d573989d87c8c1a6d0e725323";
+ version = "0.1.0.1";
+ sha256 = "62830d91b7d338f2fee8c3aa2b6ab874d6340ed84b0a67dd0f31fbcad6d08d0c";
libraryHaskellDepends = [ base base-unicode-symbols text ];
testHaskellDepends = [ base base-unicode-symbols hspec text ];
homepage = "http://github.com/mvoidex/hformat";
@@ -110536,7 +110611,7 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs) hidapi;};
- "hidapi" = callPackage
+ "hidapi_0_1_3" = callPackage
({ mkDerivation, base, bytestring, deepseq-generics, systemd }:
mkDerivation {
pname = "hidapi";
@@ -110547,6 +110622,24 @@ self: {
homepage = "https://github.com/vahokif/haskell-hidapi";
description = "Haskell bindings to HIDAPI";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) systemd;};
+
+ "hidapi" = callPackage
+ ({ mkDerivation, base, bytestring, deepseq, deepseq-generics
+ , systemd
+ }:
+ mkDerivation {
+ pname = "hidapi";
+ version = "0.1.4";
+ sha256 = "fc40ea58320f9f1459a8da6463419bb15930d2e6d8273d5592cde509d4c96a75";
+ libraryHaskellDepends = [
+ base bytestring deepseq deepseq-generics
+ ];
+ librarySystemDepends = [ systemd ];
+ 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;};
@@ -110941,8 +111034,8 @@ self: {
}:
mkDerivation {
pname = "hills";
- version = "0.1.2.1";
- sha256 = "cf5e5c6a00e48b70c099e2259b4af0f4340f07feb1e3cbe08e3c2e0045f40ca1";
+ version = "0.1.2.2";
+ sha256 = "fd4428fa04a87613287d1e09a1a889986edd2d351dab351d4b0aa6659396e7e7";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -111406,6 +111499,8 @@ self: {
pname = "hint";
version = "0.4.2.2";
sha256 = "dc806797435029b37f903ba482fa526cb0dbe34264a607d2dfbda38b79b564bf";
+ revision = "1";
+ editedCabalFile = "71372424c0852193d691c47ac2c0e484859cb23c98d3c4cb37fdb56207df37e8";
libraryHaskellDepends = [
base directory exceptions extensible-exceptions filepath ghc
ghc-mtl ghc-paths mtl random unix
@@ -111428,6 +111523,8 @@ self: {
pname = "hint";
version = "0.4.2.3";
sha256 = "cf2b3f98ba6929e2e79dfc373e101ee6ae1711a5706e718cf0152733da4a40b7";
+ revision = "1";
+ editedCabalFile = "8f1b08cddd4732f8eb39a9f09a6d17abb876a08f33895ce4556b510a9fe9297b";
libraryHaskellDepends = [
base directory exceptions extensible-exceptions filepath ghc
ghc-mtl ghc-paths mtl random unix
@@ -111451,6 +111548,8 @@ self: {
pname = "hint";
version = "0.4.3";
sha256 = "5f66ecbd8e36b4c277c9a8603f1218bf6fbfab086a5deeeeb5713a2903af7ddb";
+ revision = "1";
+ editedCabalFile = "5ec7a16566d97f99946253026d802be67412e8636e96fdb0fed9b59e29f6d231";
libraryHaskellDepends = [
base directory exceptions extensible-exceptions filepath ghc
ghc-mtl ghc-paths mtl random unix
@@ -111474,6 +111573,8 @@ self: {
pname = "hint";
version = "0.5.1";
sha256 = "c774c56859366ead6fa88605bd69dad6314cc3c1f4fb732a1910cd9d17ca1666";
+ revision = "1";
+ editedCabalFile = "669d7ee5232fd30ef8a6093a5ee2e7c1cec87f8b10a73d356659b0e2a553c40c";
libraryHaskellDepends = [
base directory exceptions filepath ghc ghc-paths mtl random unix
];
@@ -111486,6 +111587,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hint_0_5_2" = callPackage
+ ({ mkDerivation, base, directory, exceptions, extensible-exceptions
+ , filepath, ghc, ghc-paths, HUnit, mtl, random, unix
+ }:
+ mkDerivation {
+ pname = "hint";
+ version = "0.5.2";
+ sha256 = "b988ddf97c01dcfe21d3db97e4de94f8a9eeed645cc89ed0471f977b1fa22c0f";
+ 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
}:
@@ -112252,30 +112373,24 @@ self: {
"hjsonschema" = callPackage
({ mkDerivation, aeson, async, base, bytestring, containers
, directory, file-embed, filepath, hjsonpointer, http-client
- , http-types, HUnit, QuickCheck, regexpr, scientific, semigroups
+ , http-types, HUnit, pcre-heavy, QuickCheck, scientific, semigroups
, tasty, tasty-hunit, tasty-quickcheck, text, unordered-containers
, vector, wai-app-static, warp
}:
mkDerivation {
pname = "hjsonschema";
- version = "0.9.0.0";
- sha256 = "08367763571d49f3e0ec67b04143bf3196dcc217ffb4811af887b114b04b035a";
- isLibrary = true;
- isExecutable = true;
+ version = "0.10.0.1";
+ sha256 = "129b1caff1d64121fc58852bc3ff6a87e7c0ba3dff75c037089d03aa4d3fd252";
libraryHaskellDepends = [
- aeson base bytestring containers file-embed hjsonpointer
- http-client http-types QuickCheck regexpr scientific semigroups
+ aeson base bytestring containers file-embed filepath hjsonpointer
+ http-client http-types pcre-heavy QuickCheck scientific semigroups
text unordered-containers vector
];
- executableHaskellDepends = [
- aeson base hjsonpointer text unordered-containers vector
- ];
testHaskellDepends = [
aeson async base bytestring directory filepath hjsonpointer HUnit
- QuickCheck tasty tasty-hunit tasty-quickcheck text
+ QuickCheck semigroups tasty tasty-hunit tasty-quickcheck text
unordered-containers vector wai-app-static warp
];
- jailbreak = true;
homepage = "https://github.com/seagreen/hjsonschema";
description = "JSON Schema library";
license = stdenv.lib.licenses.mit;
@@ -112553,6 +112668,8 @@ self: {
pname = "hledger";
version = "0.27";
sha256 = "0aecdf586a46c24d6d67659157d1edbfc0d78afb50ea7cfbec1a01bf86b792b0";
+ revision = "2";
+ editedCabalFile = "11f159f1c15ef44a6989491ab9fb921163fdf6107ef5f2dd6046ee143a42909a";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -112772,6 +112889,8 @@ self: {
pname = "hledger-lib";
version = "0.27";
sha256 = "77c47900106e65411743097cd0855b5484e1439b0de4c5ee6d2a0c5748672606";
+ revision = "2";
+ editedCabalFile = "5cf2490d88e00c2e2d26824b85ea8a4215e73adb7acfcd668d2c0afc298fe811";
libraryHaskellDepends = [
array base base-compat blaze-markup bytestring cmdargs containers
csv Decimal deepseq directory filepath HUnit mtl mtl-compat
@@ -112789,7 +112908,7 @@ self: {
license = "GPL";
}) {};
- "hledger-ui" = callPackage
+ "hledger-ui_0_27_3" = callPackage
({ mkDerivation, base, base-compat, brick, cmdargs, containers
, data-default, filepath, hledger, hledger-lib, HUnit, lens
, pretty-show, safe, split, time, transformers, vector, vty
@@ -112798,8 +112917,32 @@ self: {
pname = "hledger-ui";
version = "0.27.3";
sha256 = "87dcd09479acc3e84a883d427c988a110451dee75a5e1f1c9d5ea2b34e99c4c1";
+ revision = "2";
+ editedCabalFile = "e64d711334b66bd07371739fbec673ea9c60259e754f06b4edbef8c763140b1f";
+ 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
+ ];
+ 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.4";
+ sha256 = "c99544721f630fb561f5f44e9b0295db991b59a6222b66f38696fef90fec377d";
revision = "1";
- editedCabalFile = "eac7bd60f3e8f1ff44ed1e41716080df6a8e0533779963aa2a43b18a79121ef0";
+ editedCabalFile = "81550a378ff933ffa25d68417b3d62f895197c7b36b363a0e95fb25bf35dbdcd";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -113039,7 +113182,7 @@ self: {
testToolDepends = [ git ];
description = "Low-level bindings to libgit2";
license = stdenv.lib.licenses.mit;
- }) {inherit (pkgs) git; inherit (pkgs) openssl;};
+ }) {inherit (pkgs) openssl;};
"hlibsass_0_1_4_0" = callPackage
({ mkDerivation, base, hspec, libsass }:
@@ -113789,8 +113932,8 @@ self: {
({ mkDerivation, base, hmatrix, QuadProgpp, vector }:
mkDerivation {
pname = "hmatrix-quadprogpp";
- version = "0.2.0.2";
- sha256 = "83c5fd9f3ce2cde9fbad74d6d54b446548e36575f64540e1cbf6f678bcefda0b";
+ version = "0.3.0.0";
+ sha256 = "fd11ea7d5dca8e703a5b0b80832883f27d2dd3941d19171b0f05a163d68b31fb";
libraryHaskellDepends = [ base hmatrix vector ];
librarySystemDepends = [ QuadProgpp ];
description = "Bindings to the QuadProg++ quadratic programming library";
@@ -114437,6 +114580,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hoauth2_0_5_3_1" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, http-conduit
+ , http-types, text, wai, warp
+ }:
+ mkDerivation {
+ pname = "hoauth2";
+ version = "0.5.3.1";
+ sha256 = "f61b65dfe6834a6a26c32f6cf38914b5587102e62e50eb3b02887b0c6927e7ad";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring http-conduit http-types text
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring containers http-conduit http-types text wai
+ warp
+ ];
+ homepage = "https://github.com/freizl/hoauth2";
+ description = "Haskell OAuth2 authentication client";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hob" = callPackage
({ mkDerivation, base, bytestring, containers, directory, filepath
, glib, gtk-largeTreeStore, gtk3, gtksourceview3, hspec, mtl, pango
@@ -114492,8 +114658,8 @@ self: {
}:
mkDerivation {
pname = "hobbits";
- version = "1.2.1";
- sha256 = "d2e11a1b42ee877a4c74df40df4f0131432c7d7219bf8304de239e2e7a44a0a1";
+ version = "1.2.2";
+ sha256 = "568be09943c403e3bb46b4b58bcb543fbc2421fecfe8459e1976a57894657b11";
libraryHaskellDepends = [
base deepseq haskell-src-exts haskell-src-meta mtl syb tagged
template-haskell th-expand-syns transformers
@@ -116010,15 +116176,14 @@ self: {
}:
mkDerivation {
pname = "hothasktags";
- version = "0.3.5";
- sha256 = "6f0ed1707e5470aacef8e8ab959f430e356a05a0ed40b4b0a37c176cc3a89426";
+ version = "0.3.6";
+ sha256 = "61ecdad57c8017d75b8f5fa159a0577a6aa3e9c6ec8818adadf69b2131bb6007";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
array base containers cpphs filemanip filepath Glob
haskell-src-exts optparse-applicative split
];
- jailbreak = true;
homepage = "http://github.com/luqui/hothasktags";
description = "Generates ctags for Haskell, incorporating import lists and qualified imports";
license = stdenv.lib.licenses.bsd3;
@@ -116250,35 +116415,6 @@ self: {
}) {};
"hpack" = callPackage
- ({ mkDerivation, aeson, aeson-qq, base, base-compat, containers
- , deepseq, directory, filepath, Glob, hspec, interpolate, mockery
- , QuickCheck, temporary, text, unordered-containers, yaml
- }:
- mkDerivation {
- pname = "hpack";
- version = "0.13.0";
- sha256 = "1e374c9c6ea4784371e91353bc2204d9724a0f5864916bcba355d882cde44830";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base base-compat containers deepseq directory filepath Glob
- text unordered-containers yaml
- ];
- executableHaskellDepends = [
- aeson base base-compat containers deepseq directory filepath Glob
- text unordered-containers yaml
- ];
- testHaskellDepends = [
- aeson aeson-qq base base-compat containers deepseq directory
- filepath Glob hspec interpolate mockery QuickCheck temporary text
- unordered-containers yaml
- ];
- homepage = "https://github.com/sol/hpack#readme";
- description = "An alternative format for Haskell packages";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "hpack_0_14_0" = callPackage
({ mkDerivation, aeson, aeson-qq, base, base-compat, containers
, deepseq, directory, filepath, Glob, hspec, interpolate, mockery
, QuickCheck, temporary, text, unordered-containers, yaml
@@ -116305,7 +116441,6 @@ self: {
homepage = "https://github.com/sol/hpack#readme";
description = "An alternative format for Haskell packages";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hpaco" = callPackage
@@ -116438,16 +116573,16 @@ self: {
"hpath" = callPackage
({ mkDerivation, base, bytestring, deepseq, doctest, exceptions
- , hspec, HUnit, process, QuickCheck, unix, unix-bytestring
- , utf8-string, word8
+ , hspec, HUnit, process, QuickCheck, simple-sendfile, unix
+ , unix-bytestring, utf8-string, word8
}:
mkDerivation {
pname = "hpath";
- version = "0.6.0";
- sha256 = "bbd8a996e6328274a19943b884fbeca6790df955775ac6f0be6575f25b310404";
+ version = "0.7.1";
+ sha256 = "33396f57805c65daa77ceb4bd19d73f9a7b0c6881451468f8589ce4ac71c990a";
libraryHaskellDepends = [
- base bytestring deepseq exceptions hspec unix unix-bytestring
- utf8-string word8
+ base bytestring deepseq exceptions hspec simple-sendfile unix
+ unix-bytestring utf8-string word8
];
testHaskellDepends = [
base bytestring doctest hspec HUnit process QuickCheck unix
@@ -117177,8 +117312,8 @@ self: {
}:
mkDerivation {
pname = "hruby";
- version = "0.3.2";
- sha256 = "bac4446634deb4acb91217b016c2be04dc8006df7ba4245c2c03dd686bf64fd8";
+ version = "0.3.3";
+ sha256 = "3a13abdd06e07ef2705740aad27d8d23eeabb221155042c61a2341a141e15f94";
libraryHaskellDepends = [
aeson attoparsec base bytestring scientific stm text
unordered-containers vector
@@ -118583,34 +118718,34 @@ self: {
({ mkDerivation, aeson, aeson-lens, aeson-pretty, array, async
, attoparsec, base, bin-package-db, bytestring, Cabal, containers
, cpphs, data-default, deepseq, directory, exceptions, filepath
- , fsnotify, ghc, ghc-mod, ghc-paths, ghc-syb-utils, haddock-api
+ , fsnotify, ghc, ghc-paths, ghc-syb-utils, haddock-api
, haskell-src-exts, hdocs, hformat, hlint, hspec, HTTP, lens
- , lifted-base, monad-control, monad-loops
- , MonadCatchIO-transformers, mtl, network, optparse-applicative
- , process, regex-pcre-builtin, scientific, simple-log, syb
- , template-haskell, text, text-region, time, transformers
- , transformers-base, uniplate, unix, unordered-containers, vector
+ , 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
}:
mkDerivation {
pname = "hsdev";
- version = "0.1.8.2";
- sha256 = "0779ad320de31f59c6bae829398281697a25f45a3b38e1502cf1d005e1d5f9b4";
+ version = "0.2.0.0";
+ sha256 = "da36361df0f56f5e217da972cd4a9e2a0f3321be684c365f9d599fb635f7b02e";
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-mod ghc-paths ghc-syb-utils
+ 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 MonadCatchIO-transformers mtl
- network optparse-applicative process regex-pcre-builtin scientific
+ 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
- directory exceptions filepath ghc haskell-src-exts lens monad-loops
- mtl network optparse-applicative process text transformers
+ directory exceptions filepath haskell-src-exts lens monad-loops mtl
+ network optparse-applicative process text transformers
unordered-containers vector
];
testHaskellDepends = [
@@ -118620,7 +118755,7 @@ self: {
doHaddock = false;
doCheck = false;
homepage = "https://github.com/mvoidex/hsdev";
- description = "Haskell development library and tool with support of autocompletion, symbol info, go to declaration, find references etc";
+ description = "Haskell development library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -118730,7 +118865,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hsebaysdk" = callPackage
+ "hsebaysdk_0_3_1_0" = callPackage
({ mkDerivation, aeson, base, bytestring, http-client, http-types
, text, time, transformers, unordered-containers
}:
@@ -118745,6 +118880,24 @@ self: {
homepage = "https://github.com/creichert/hsebaysdk";
description = "Haskell eBay SDK";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hsebaysdk" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, http-client, http-types
+ , text, time, transformers, unordered-containers
+ }:
+ mkDerivation {
+ pname = "hsebaysdk";
+ version = "0.4.0.0";
+ sha256 = "0738d0df113b15bb9148ecbe02f0a34562c557d8f64b65065122925e29df8901";
+ libraryHaskellDepends = [
+ aeson base bytestring http-client http-types text time transformers
+ unordered-containers
+ ];
+ homepage = "https://github.com/creichert/hsebaysdk";
+ description = "Haskell eBay SDK";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"hsemail" = callPackage
@@ -120529,6 +120682,8 @@ self: {
pname = "hspec-megaparsec";
version = "0.1.0";
sha256 = "8fa6c28728fe8f9df354d81dccf3395160c74b28b0c9be9dcfc81f91fc331cfa";
+ revision = "1";
+ editedCabalFile = "19d6092404bbc86a39aa926e96a2809afcfb418fc8914342b4ee5f1d9e7971a0";
libraryHaskellDepends = [ base hspec-expectations megaparsec ];
testHaskellDepends = [ base hspec hspec-expectations megaparsec ];
homepage = "https://github.com/mrkkrp/hspec-megaparsec";
@@ -120543,6 +120698,8 @@ self: {
pname = "hspec-megaparsec";
version = "0.1.1";
sha256 = "4ff4683bdff9a3b0ba8a6ee1adfce01f30f8515f9db487b062e5e00e5a2795c5";
+ revision = "1";
+ editedCabalFile = "b5268defe9e8230440bef693c63fb7a22e1ff53b39373a040fb511714056cfb8";
libraryHaskellDepends = [ base hspec-expectations megaparsec ];
testHaskellDepends = [ base hspec hspec-expectations megaparsec ];
homepage = "https://github.com/mrkkrp/hspec-megaparsec";
@@ -120550,6 +120707,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hspec-megaparsec_0_2_0" = callPackage
+ ({ mkDerivation, base, containers, hspec, hspec-expectations
+ , megaparsec, semigroups
+ }:
+ mkDerivation {
+ pname = "hspec-megaparsec";
+ version = "0.2.0";
+ sha256 = "586ae04377a4d98431e0a639f0ce7d8adc5e9240036df63a22643c23c66eb565";
+ libraryHaskellDepends = [
+ base containers hspec-expectations megaparsec semigroups
+ ];
+ testHaskellDepends = [
+ base containers hspec hspec-expectations megaparsec semigroups
+ ];
+ 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
({ mkDerivation, ansi-terminal, async, base, deepseq, directory
, filepath, hspec-expectations, HUnit, QuickCheck, quickcheck-io
@@ -124813,7 +124991,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "human-readable-duration" = callPackage
+ "human-readable-duration_0_2_0_0" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "human-readable-duration";
@@ -124823,6 +125001,20 @@ self: {
homepage = "http://github.com/yogsototh/human-readable-duration#readme";
description = "Provide duration helper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "human-readable-duration" = callPackage
+ ({ mkDerivation, base, doctest, time }:
+ mkDerivation {
+ pname = "human-readable-duration";
+ version = "0.2.0.1";
+ sha256 = "082524e9d29fd4cc06b75ab646df47fdd40bc95a8bf4c315806408d215ebc0b4";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base doctest time ];
+ homepage = "http://github.com/yogsototh/human-readable-duration#readme";
+ description = "Provide duration helper";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"hums" = callPackage
@@ -125186,7 +125378,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hvect" = callPackage
+ "hvect_0_3_0_0" = callPackage
({ mkDerivation, base, HTF }:
mkDerivation {
pname = "hvect";
@@ -125197,6 +125389,20 @@ self: {
homepage = "https://github.com/agrafix/hvect";
description = "Simple strict heterogeneous lists";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hvect" = callPackage
+ ({ mkDerivation, base, HTF }:
+ mkDerivation {
+ pname = "hvect";
+ version = "0.3.1.0";
+ sha256 = "b9ba2408a3718b7a38b72cf7f81ce51ac9f0db63908969d386213c47b6526ab8";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base HTF ];
+ homepage = "https://github.com/agrafix/hvect";
+ description = "Simple strict heterogeneous lists";
+ license = stdenv.lib.licenses.mit;
}) {};
"hw-bits" = callPackage
@@ -125285,7 +125491,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "hw-json_0_0_0_3" = callPackage
+ "hw-json_0_0_0_4" = 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
@@ -125293,8 +125499,8 @@ self: {
}:
mkDerivation {
pname = "hw-json";
- version = "0.0.0.3";
- sha256 = "873af674982dd9edb44522ddb99144e902cf2b9baf3091ca68619c24d680326e";
+ version = "0.0.0.4";
+ sha256 = "406176d9b42871b480252985fc64feb3ae9a36032068a2c0cc622969fb600c2e";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -125341,6 +125547,8 @@ self: {
pname = "hw-prim";
version = "0.0.0.10";
sha256 = "641a1da0488664d12438f396f08577e02f9ca43b53a6f00e52085f63a5ab776e";
+ revision = "1";
+ editedCabalFile = "6d483e45f5a7b11173cfe33c92acfd22e54c715378d7bd56ccf509b9110ac6f4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring random vector ];
@@ -125351,14 +125559,14 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "hw-prim_0_0_0_11" = callPackage
+ "hw-prim_0_0_1_1" = callPackage
({ mkDerivation, base, bytestring, hspec, QuickCheck, random
, vector
}:
mkDerivation {
pname = "hw-prim";
- version = "0.0.0.11";
- sha256 = "6d9c2bb19313e5995dff5de36438ff3ae5632478631bdb66d65eca2397469015";
+ version = "0.0.1.1";
+ sha256 = "73b82ac03c23d438560fbf28e476f0e8c55f1386cf53d68086591925255bee37";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring random vector ];
@@ -125389,13 +125597,13 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "hw-rankselect_0_0_0_3" = callPackage
+ "hw-rankselect_0_0_0_4" = callPackage
({ mkDerivation, base, hspec, hw-bits, hw-prim, QuickCheck, vector
}:
mkDerivation {
pname = "hw-rankselect";
- version = "0.0.0.3";
- sha256 = "d00344eb9e7f8ae778551eb43cd37717d508b6d8b1fde4b554eaa6c5bd04efab";
+ version = "0.0.0.4";
+ sha256 = "6f6ccc16ccbc3c358489550a4e7122256bd96e80def74e27368d4858e6a71ca6";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base hw-bits hw-prim vector ];
@@ -126462,19 +126670,16 @@ self: {
}) {};
"hylogen" = callPackage
- ({ mkDerivation, base, bytestring, containers, filepath, fsnotify
- , hashable, http-types, mtl, process, text, vector-space, wai, warp
- , websockets
+ ({ mkDerivation, base, bytestring, data-reify, filepath, fsnotify
+ , http-types, process, text, vector-space, wai, warp, websockets
}:
mkDerivation {
pname = "hylogen";
- version = "0.1.0.12";
- sha256 = "b8906eb87088336087918208b9735259b7b5116565461ecd0333f09d46f420a9";
+ version = "0.1.1.3";
+ sha256 = "b2f0475f4efb5fee7f48fd381eebd482cad0815e2360cf6d8d80faa504d726b3";
isLibrary = true;
isExecutable = true;
- libraryHaskellDepends = [
- base containers hashable mtl vector-space
- ];
+ libraryHaskellDepends = [ base data-reify vector-space ];
executableHaskellDepends = [
base bytestring filepath fsnotify http-types process text wai warp
websockets
@@ -127788,25 +127993,25 @@ self: {
}) {};
"idris" = callPackage
- ({ mkDerivation, annotated-wl-pprint, ansi-terminal, ansi-wl-pprint
- , async, base, base64-bytestring, binary, blaze-html, blaze-markup
- , bytestring, cheapskate, containers, deepseq, directory, filepath
- , fingertree, fsnotify, gmp, haskeline, ieee754, libffi, mtl
- , network, optparse-applicative, parsers, pretty, process, safe
- , split, terminal-size, text, time, transformers
- , transformers-compat, trifecta, uniplate, unix
+ ({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal
+ , ansi-wl-pprint, async, base, base64-bytestring, binary
+ , blaze-html, blaze-markup, bytestring, cheapskate, containers
+ , deepseq, directory, filepath, fingertree, fsnotify, gmp
+ , haskeline, ieee754, libffi, mtl, network, optparse-applicative
+ , parsers, pretty, process, safe, split, terminal-size, text, time
+ , transformers, transformers-compat, trifecta, uniplate, unix
, unordered-containers, utf8-string, vector
, vector-binary-instances, zip-archive
}:
mkDerivation {
pname = "idris";
- version = "0.11.1";
- sha256 = "51df8882aa778000833127a64b319aba07f712fe6e41033af401fbf99c08b964";
+ version = "0.11.2";
+ sha256 = "4120eec85e07dc9e96835fc5226f4d8044b2401c0c007987465d906db7773fad";
configureFlags = [ "-fcurses" "-fffi" "-fgmp" ];
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- annotated-wl-pprint ansi-terminal ansi-wl-pprint async base
+ aeson annotated-wl-pprint ansi-terminal ansi-wl-pprint async base
base64-bytestring binary blaze-html blaze-markup bytestring
cheapskate containers deepseq directory filepath fingertree
fsnotify haskeline ieee754 libffi mtl network optparse-applicative
@@ -128512,6 +128717,19 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ilist" = callPackage
+ ({ mkDerivation, base, hspec, transformers }:
+ mkDerivation {
+ pname = "ilist";
+ version = "0.2.0.0";
+ sha256 = "ffbfab4804e01a4b36caa3f75d77535084d6165ed6c92c0df4329b9238e03cef";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base hspec transformers ];
+ homepage = "http://github.com/aelve/ilist";
+ description = "Optimised list functions for doing index-related things";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"illuminate" = callPackage
({ mkDerivation, alex, array, base, containers, filemanip, filepath
, hscolour, html, utf8-string, xhtml
@@ -129453,8 +129671,8 @@ self: {
}:
mkDerivation {
pname = "influxdb";
- version = "0.9.1.3";
- sha256 = "9daff640a386d2b94818b50d0b82546f497c4139856d405d18b648914a14096c";
+ version = "0.10.0";
+ sha256 = "063754458bbceb4a89e70c26a979f47e2c632a0ccaf93b53360870d44c5268bb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -129469,7 +129687,6 @@ self: {
base http-client HUnit mtl tasty tasty-hunit tasty-quickcheck
tasty-th text vector
];
- jailbreak = true;
homepage = "https://github.com/maoe/influxdb-haskell";
description = "Haskell client library for InfluxDB";
license = stdenv.lib.licenses.bsd3;
@@ -129576,7 +129793,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ini" = callPackage
+ "ini_0_3_4" = callPackage
({ mkDerivation, attoparsec, base, text, unordered-containers }:
mkDerivation {
pname = "ini";
@@ -129588,6 +129805,21 @@ self: {
homepage = "http://github.com/chrisdone/ini";
description = "Quick and easy configuration files in the INI format";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ini" = callPackage
+ ({ mkDerivation, attoparsec, base, text, unordered-containers }:
+ mkDerivation {
+ pname = "ini";
+ version = "0.3.5";
+ sha256 = "bfd3836dfe38440987ce53f7eeffee00b54e3b7e4c0cd81ba315932cd7562cc6";
+ libraryHaskellDepends = [
+ attoparsec base text unordered-containers
+ ];
+ homepage = "http://github.com/chrisdone/ini";
+ description = "Quick and easy configuration files in the INI format";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"inilist" = callPackage
@@ -129851,6 +130083,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "instance-control" = callPackage
+ ({ mkDerivation, base, mtl, transformers }:
+ mkDerivation {
+ pname = "instance-control";
+ version = "0.1.0.0";
+ sha256 = "bcdd6aa0322f757c32815407a8798c2e41245e1c76c4ea0890aa04c77847ee7c";
+ libraryHaskellDepends = [ base mtl transformers ];
+ homepage = "https://github.com/lazac/instance-control";
+ description = "Controls how the compiler searches for instances using type families";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"instant-aeson" = callPackage
({ mkDerivation, aeson, base, instant-generics, tasty
, tasty-quickcheck
@@ -129981,14 +130225,12 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "integer-gmp_1_0_0_0" = callPackage
+ "integer-gmp_1_0_0_1" = callPackage
({ mkDerivation, ghc-prim }:
mkDerivation {
pname = "integer-gmp";
- version = "1.0.0.0";
- sha256 = "ae1489ea4361138f668aee76c5ac47bfc1818ac1ef2832525fe09f15970e006a";
- revision = "1";
- editedCabalFile = "5d63fab9a7c94b4e713d151bdc0c361228efbac2b7583dfa8e6c5370ecae5663";
+ version = "1.0.0.1";
+ sha256 = "ef11daab7d7007b6be61846350a947173c46475c833623bcac45aa532ec3c121";
libraryHaskellDepends = [ ghc-prim ];
description = "Integer library based on GMP";
license = stdenv.lib.licenses.bsd3;
@@ -130007,6 +130249,17 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "integer-simple" = callPackage
+ ({ mkDerivation, ghc-prim }:
+ mkDerivation {
+ pname = "integer-simple";
+ version = "0.1.1.1";
+ sha256 = "766b4b9de5c5c7cf77191b32462155b3c7bd34d035abb1af5f6369cb097510fd";
+ libraryHaskellDepends = [ ghc-prim ];
+ description = "Simple Integer library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"integration_0_2_0_1" = callPackage
({ mkDerivation, base, parallel }:
mkDerivation {
@@ -130165,6 +130418,29 @@ self: {
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
+ }:
+ mkDerivation {
+ pname = "intero";
+ version = "0.1.8";
+ sha256 = "3fa0c78d8707a8e9fe335bf81f78a2eac7e60ec8430cfbd0afdc508738d96f4d";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ array base bytestring containers directory filepath ghc ghc-paths
+ haskeline process syb time transformers unix
+ ];
+ testHaskellDepends = [
+ base directory hspec process temporary transformers
+ ];
+ homepage = "https://github.com/chrisdone/intero";
+ description = "Complete interactive development program for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"interpol" = callPackage
({ mkDerivation, base, haskell-src-exts, HUnit, regex-posix, syb
, test-framework, test-framework-hunit
@@ -130503,18 +130779,19 @@ self: {
"invertible" = callPackage
({ mkDerivation, arrows, base, haskell-src-meta, HList, invariant
- , lens, partial-isomorphisms, Piso, semigroupoids, template-haskell
- , TypeCompose
+ , lens, partial-isomorphisms, Piso, QuickCheck, semigroupoids
+ , template-haskell, transformers, TypeCompose
}:
mkDerivation {
pname = "invertible";
- version = "0.1";
- sha256 = "f51ee09313044a21f4c0a5e9d7b9c9c8bb1bd91de33de9cb23d462991713829e";
+ version = "0.1.1";
+ sha256 = "c15730feb9dee7a930cf25d2f44e3e13e1c48e831202f7fa844a33e14e4f4acd";
libraryHaskellDepends = [
arrows base haskell-src-meta HList invariant lens
partial-isomorphisms Piso semigroupoids template-haskell
- TypeCompose
+ transformers TypeCompose
];
+ testHaskellDepends = [ base QuickCheck transformers ];
description = "bidirectional arrows, bijective functions, and invariant functors";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -130822,8 +131099,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "ioref-stable";
- version = "0.1.0.0";
- sha256 = "9044897340c044e44d3a9c33b350523147a6a95a2f1c8fb410caee880ceba314";
+ version = "0.1.1.0";
+ sha256 = "f4f6c82ca430fb8aac93e48d95212aab9c41700af203ad0a74dcbd578e0991c7";
libraryHaskellDepends = [ base ];
homepage = "http://github.com/cocreature/ioref-stable#readme";
description = "iorefs with a unique stable index";
@@ -130856,6 +131133,26 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ip" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, hashable
+ , QuickCheck, test-framework, test-framework-quickcheck2, text
+ }:
+ mkDerivation {
+ pname = "ip";
+ version = "0.6.1";
+ sha256 = "0b816ce08fff4ea6fe108751abc151573dbcb64ccd31311e67e1d931306b84bb";
+ libraryHaskellDepends = [
+ aeson attoparsec base bytestring hashable text
+ ];
+ testHaskellDepends = [
+ base bytestring QuickCheck test-framework
+ test-framework-quickcheck2 text
+ ];
+ homepage = "https://github.com/andrewthad/haskell-ip#readme";
+ description = "Library for IP and MAC addresses";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ip-quoter" = callPackage
({ mkDerivation, base, cpu, network, tasty, tasty-hunit
, template-haskell
@@ -130900,6 +131197,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ip6addr_0_5_1_2" = callPackage
+ ({ mkDerivation, base, cmdargs, IPv6Addr, text }:
+ mkDerivation {
+ pname = "ip6addr";
+ version = "0.5.1.2";
+ sha256 = "810dc63ee4dbd42705f6d2383841adc83bdc0f27a95499179b7bb5f50cce5462";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [ base cmdargs IPv6Addr text ];
+ 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
({ mkDerivation, base, bytestring, darcs, directory, filepath
, hashed-storage, process, unix
@@ -131354,6 +131666,7 @@ self: {
network regex-tdfa split stm text time tls transformers vty x509
x509-store x509-system x509-validation
];
+ jailbreak = true;
homepage = "https://github.com/glguy/irc-core";
description = "An IRC client library and text client";
license = stdenv.lib.licenses.bsd3;
@@ -131520,19 +131833,19 @@ self: {
, extra, foldl, http-conduit, lifted-base, monad-control
, multistate, process, split, system-filepath, tagged, text
, transformers, transformers-base, turtle, unordered-containers
- , unsafe, vector, xmlhtml, yaml
+ , vector, xmlhtml, yaml
}:
mkDerivation {
pname = "iridium";
- version = "0.1.5.3";
- sha256 = "7713b11ea4ea643fbbc99eef0c2bb52cb0968c8d645bf176e196a738e7b18644";
+ version = "0.1.5.4";
+ sha256 = "665c68ad724532fd65b1043e7152df8823bbcdb7e28c74ea4c0527cc017a3937";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ansi-terminal base bytestring Cabal containers extra foldl
http-conduit lifted-base monad-control multistate process split
system-filepath tagged text transformers transformers-base turtle
- unordered-containers unsafe vector xmlhtml yaml
+ unordered-containers vector xmlhtml yaml
];
executableHaskellDepends = [
base extra multistate text transformers unordered-containers yaml
@@ -132469,8 +132782,8 @@ self: {
}:
mkDerivation {
pname = "jammittools";
- version = "0.5.0.3";
- sha256 = "90917b080f69f47982c0c8851e7a7781e1627b42f291f11f6543214da2a7a1b4";
+ version = "0.5.1";
+ sha256 = "b3a5069b8725f7ace65f2e921d0451f42996bd6e198d38e32ef948b44ec90349";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -133198,7 +133511,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "js-jquery" = callPackage
+ "js-jquery_1_12_3" = callPackage
({ mkDerivation, base, HTTP }:
mkDerivation {
pname = "js-jquery";
@@ -133210,6 +133523,21 @@ self: {
homepage = "https://github.com/ndmitchell/js-jquery#readme";
description = "Obtain minified jQuery code";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "js-jquery" = callPackage
+ ({ mkDerivation, base, HTTP }:
+ mkDerivation {
+ pname = "js-jquery";
+ version = "1.12.4";
+ sha256 = "6038b72113932bec21c89293fb5f7e23621d03e315596986d9feab34a159ffdb";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base HTTP ];
+ doCheck = false;
+ homepage = "https://github.com/ndmitchell/js-jquery#readme";
+ description = "Obtain minified jQuery code";
+ license = stdenv.lib.licenses.mit;
}) {};
"jsaddle" = callPackage
@@ -133848,6 +134176,22 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "json-pointer-aeson" = callPackage
+ ({ mkDerivation, aeson, base-prelude, json-pointer
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "json-pointer-aeson";
+ version = "0.1";
+ sha256 = "b291114509843bae81251ee517d1dad5d7c904809417b35e17cc47eec04764d4";
+ libraryHaskellDepends = [
+ aeson base-prelude json-pointer unordered-containers vector
+ ];
+ homepage = "https://github.com/sannsyn/json-pointer-aeson";
+ description = "Integration layer for \"json-pointer\" and \"aeson\"";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"json-pointer-hasql" = callPackage
({ mkDerivation, aeson, base-prelude, either, hasql, json-pointer
, rebase, text, transformers
@@ -134481,8 +134825,8 @@ self: {
}:
mkDerivation {
pname = "jsontsv";
- version = "0.1.6.1";
- sha256 = "d84484e71b4fd577aafb4674fb5ba6f2aece4f3ed1eb152cef9b50d4cf025ef5";
+ version = "0.1.7.0";
+ sha256 = "fddad9ed97a9ad685d3f4a38e7b5b42f5ce964136232a6b2c9920ce3aa2b41bb";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -134891,8 +135235,8 @@ self: {
pname = "kansas-comet";
version = "0.4";
sha256 = "1f1a4565f2e955b8947bafcb9611789b0ccdf9efdfed8aaa2a2aa162a07339e1";
- revision = "5";
- editedCabalFile = "4f00c7ffbc136b1d6176804ddd8214e169e13419ff6c81816e128784ef501cbd";
+ revision = "7";
+ editedCabalFile = "beaef45f7b61a2883a64471f052ae8b9c51f8453c253e4328eddaf5ffe994d74";
libraryHaskellDepends = [
aeson base containers data-default-class scotty stm text time
transformers unordered-containers
@@ -136404,6 +136748,22 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "kraken_0_0_2" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, http-client
+ , http-client-tls, mtl
+ }:
+ mkDerivation {
+ pname = "kraken";
+ version = "0.0.2";
+ sha256 = "0d75c7c7e0be11e0ca508506a693acd7638e875418e95407ecb2f1e6ecabd046";
+ libraryHaskellDepends = [
+ aeson base bytestring http-client http-client-tls mtl
+ ];
+ description = "Kraken.io API client";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"krpc" = callPackage
({ mkDerivation, base, bencoding, bytestring, containers
, data-default-class, hspec, lifted-base, monad-control
@@ -137328,8 +137688,8 @@ self: {
}:
mkDerivation {
pname = "lambdacube-gl";
- version = "0.5.0.3";
- sha256 = "ecdf2c200238b635a1d52cf2cf3d9cf29874cee46dadc3b62d7e1da3525a1510";
+ version = "0.5.0.5";
+ sha256 = "29f0094d25905a3c6aadc6dcfcc0c77664db589c7e30ee20e8216e40a4403250";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -137347,33 +137707,6 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
- "lambdacube-gl_0_5_0_4" = callPackage
- ({ mkDerivation, aeson, base, base64-bytestring, bytestring
- , containers, exceptions, GLFW-b, JuicyPixels, lambdacube-ir, mtl
- , network, OpenGLRaw, text, time, vector, vector-algorithms
- , websockets
- }:
- mkDerivation {
- pname = "lambdacube-gl";
- version = "0.5.0.4";
- sha256 = "9cda9d95d3938685a83531b3db3f9d6a32fe0fa685d94318bf6a94d159f820df";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring containers JuicyPixels lambdacube-ir mtl OpenGLRaw
- vector vector-algorithms
- ];
- executableHaskellDepends = [
- aeson base base64-bytestring bytestring containers exceptions
- GLFW-b JuicyPixels lambdacube-ir network OpenGLRaw text time vector
- websockets
- ];
- homepage = "http://lambdacube3d.com";
- description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"lambdacube-ir" = callPackage
({ mkDerivation, aeson, base, containers, mtl, text, vector }:
mkDerivation {
@@ -137913,8 +138246,8 @@ self: {
}:
mkDerivation {
pname = "language-c-quote";
- version = "0.11.6";
- sha256 = "db44ca0ff90af80ed915e60b471698c5f5b41ab562ed77ad68bcd912b7f82dc3";
+ version = "0.11.6.2";
+ sha256 = "bcfe78f7debd225d8a24e369fa593a8670d6c6db782e753fd3aa4cb72130a1ce";
libraryHaskellDepends = [
array base bytestring containers exception-mtl
exception-transformers filepath haskell-src-meta mainland-pretty
@@ -137959,8 +138292,8 @@ self: {
({ mkDerivation, base, mtl, parsec, pretty }:
mkDerivation {
pname = "language-dot";
- version = "0.0.9";
- sha256 = "e46a8fb501ba03548c9fa3df46f45c538abbaef1458f2d89e433b6ed44501d29";
+ version = "0.1.0";
+ sha256 = "15418f000c45efd129d98698d3258ff7996c66c7c9374072334868d2550b1581";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base mtl parsec pretty ];
@@ -138930,6 +139263,27 @@ self: {
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";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"language-typescript" = callPackage
({ mkDerivation, base, containers, parsec, pretty }:
mkDerivation {
@@ -140458,6 +140812,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;
@@ -141000,8 +141355,8 @@ self: {
}:
mkDerivation {
pname = "libgraph";
- version = "1.10";
- sha256 = "d5d6152c80ae8be8c43ff02f1e74ac114b734254426a289f2b89e5815f9f232f";
+ version = "1.11";
+ sha256 = "1ce20578fea025dfed6613bad8b64fa35ae7d49b2ffba0fce559d7eeafbe10c8";
libraryHaskellDepends = [
array base containers monads-tf process union-find
];
@@ -141052,6 +141407,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "libinfluxdb_0_0_4" = callPackage
+ ({ mkDerivation, base, bytestring, clock, containers, http-client
+ , http-client-tls, http-types, resource-pool, stm, text
+ }:
+ mkDerivation {
+ pname = "libinfluxdb";
+ version = "0.0.4";
+ sha256 = "25b5bbc274c9e18bc46ea0271805adfcaaec6d46caa69eb465e0cbc03f63ef3f";
+ libraryHaskellDepends = [
+ base bytestring clock containers http-client http-client-tls
+ http-types resource-pool stm text
+ ];
+ description = "libinfluxdb";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"libjenkins" = callPackage
({ mkDerivation, async, attoparsec, base, bytestring, conduit
, containers, directory, doctest, filepath, free, hspec
@@ -141634,7 +142006,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "lifted-async" = callPackage
+ "lifted-async_0_8_0_1" = callPackage
({ mkDerivation, async, base, constraints, HUnit, lifted-base
, monad-control, mtl, tasty, tasty-hunit, tasty-th
, transformers-base
@@ -141653,6 +142025,28 @@ self: {
homepage = "https://github.com/maoe/lifted-async";
description = "Run lifted IO operations asynchronously and wait for their results";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "lifted-async" = callPackage
+ ({ mkDerivation, async, base, constraints, HUnit, lifted-base
+ , monad-control, mtl, tasty, tasty-hunit, tasty-th
+ , transformers-base
+ }:
+ mkDerivation {
+ pname = "lifted-async";
+ version = "0.9.0";
+ sha256 = "3930922419084557d8b78ad3c7202efbb599d35539adb564c2d11a6699e3d601";
+ libraryHaskellDepends = [
+ async base constraints lifted-base monad-control transformers-base
+ ];
+ testHaskellDepends = [
+ async base HUnit lifted-base monad-control mtl tasty tasty-hunit
+ tasty-th
+ ];
+ homepage = "https://github.com/maoe/lifted-async";
+ description = "Run lifted IO operations asynchronously and wait for their results";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"lifted-base_0_2_2_1" = callPackage
@@ -143124,15 +143518,39 @@ self: {
}) {};
"list-t_0_4_6" = callPackage
- ({ mkDerivation, base-prelude, HTF, mmorph, monad-control, mtl
- , mtl-prelude, transformers, transformers-base
+ ({ mkDerivation, base, base-prelude, HTF, mmorph, monad-control
+ , mtl, mtl-prelude, transformers, transformers-base
}:
mkDerivation {
pname = "list-t";
version = "0.4.6";
sha256 = "fe49a4fee6f166c677758e26bb26dadd8fa57c5a8fa288c64bbcaeeb420467b2";
+ revision = "1";
+ editedCabalFile = "ddb609f5492eff290b2c12a0f3b42607b44970462487746864cc37a513ffe5e6";
libraryHaskellDepends = [
- base-prelude mmorph monad-control mtl transformers
+ base base-prelude mmorph monad-control mtl transformers
+ transformers-base
+ ];
+ testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ];
+ doCheck = false;
+ homepage = "https://github.com/nikita-volkov/list-t";
+ description = "ListT done right";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "list-t_0_4_6_1" = callPackage
+ ({ mkDerivation, base, base-prelude, HTF, mmorph, monad-control
+ , mtl, mtl-prelude, transformers, transformers-base
+ }:
+ mkDerivation {
+ pname = "list-t";
+ version = "0.4.6.1";
+ sha256 = "78c9cc7da0593571d4f0724df197ad23b467677573e1ac2714fd8fc6d7d1c00f";
+ revision = "3";
+ editedCabalFile = "7365d2a90b8a073460d2e89532c9ca45978e9e6db782c43c0847fd90f63dfc1f";
+ libraryHaskellDepends = [
+ base base-prelude mmorph monad-control mtl transformers
transformers-base
];
testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ];
@@ -143144,15 +143562,15 @@ self: {
}) {};
"list-t" = callPackage
- ({ mkDerivation, base-prelude, HTF, mmorph, monad-control, mtl
- , mtl-prelude, transformers, transformers-base
+ ({ mkDerivation, base, base-prelude, HTF, mmorph, monad-control
+ , mtl, mtl-prelude, transformers, transformers-base
}:
mkDerivation {
pname = "list-t";
- version = "0.4.6.1";
- sha256 = "78c9cc7da0593571d4f0724df197ad23b467677573e1ac2714fd8fc6d7d1c00f";
+ version = "0.4.7";
+ sha256 = "6b5900d4570bef59b5ebdc25317a032314f738adacc742d19d9c5078bb48a6c9";
libraryHaskellDepends = [
- base-prelude mmorph monad-control mtl transformers
+ base base-prelude mmorph monad-control mtl transformers
transformers-base
];
testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ];
@@ -144328,16 +144746,16 @@ self: {
"logging" = callPackage
({ mkDerivation, base, binary, bytestring, fast-logger, hspec
- , lifted-base, monad-control, old-locale, pcre-light, text, time
+ , lifted-base, monad-control, old-locale, regex-compat, text, time
, time-locale-compat, transformers, unix
}:
mkDerivation {
pname = "logging";
- version = "3.0.2";
- sha256 = "72ae6d6fde21af8dd58031d0da054d12115c6cf6e64a4236150562d8f5c8818a";
+ version = "3.0.4";
+ sha256 = "a04db0375aef48c941a001c754d87d65a0df5e059efd9fcd54efc059570a7b62";
libraryHaskellDepends = [
base binary bytestring fast-logger lifted-base monad-control
- old-locale pcre-light text time time-locale-compat transformers
+ old-locale regex-compat text time time-locale-compat transformers
];
testHaskellDepends = [ base hspec unix ];
description = "Simplified logging in IO for application writers";
@@ -144491,8 +144909,8 @@ self: {
({ mkDerivation, base, logict, mtl, transformers }:
mkDerivation {
pname = "logict-state";
- version = "0.1.0.1";
- sha256 = "0d312387a11fab6441258732cfcb59bd12ac72471fd1379877f6da1928c60cbe";
+ version = "0.1.0.2";
+ sha256 = "7715a898f79742282a8cf2f047fc3f4c6d3095183d6830d68aaf36abc2c751ac";
libraryHaskellDepends = [ base logict mtl transformers ];
homepage = "https://github.com/atzedijkstra/logict-state";
description = "Library for logic programming based on haskell package logict";
@@ -145087,6 +145505,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "lua-bc" = callPackage
+ ({ mkDerivation, base, binary, bytestring, containers
+ , data-binary-ieee754, pretty, text, vector
+ }:
+ mkDerivation {
+ pname = "lua-bc";
+ version = "0.1";
+ sha256 = "518dcad6c16a870fe64d6d45ad83202dc9586a71dd976b652dfb5445150bd352";
+ libraryHaskellDepends = [
+ base binary bytestring containers data-binary-ieee754 pretty text
+ vector
+ ];
+ homepage = "https://github.com/GaloisInc/lua-bc";
+ description = "Lua bytecode parser";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"lua-bytecode" = callPackage
({ mkDerivation, array, base, bytestring, cereal, containers
, hashable, numeric-extras, vector
@@ -146660,12 +147095,26 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "managed" = callPackage
+ "managed_1_0_3" = callPackage
({ mkDerivation, base, transformers }:
mkDerivation {
pname = "managed";
version = "1.0.3";
sha256 = "67e9f15717db54abcd3864d4f20cdcdf709a7f82c087fa77ad0bcb456bb631b2";
+ revision = "1";
+ editedCabalFile = "f350e935d9d1688e8c2880679b90fcf8b3c430fed49f7482b6396488a2b3ca5d";
+ 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.4";
+ sha256 = "1b6c9eb9fea0266497fb6f50d7e9b6a65d2456103c716fdc190be994d143c3d9";
libraryHaskellDepends = [ base transformers ];
description = "A monad for managed values";
license = stdenv.lib.licenses.bsd3;
@@ -147447,8 +147896,8 @@ self: {
}:
mkDerivation {
pname = "manifolds";
- version = "0.2.0.1";
- sha256 = "72116d4489b4b2b125647271c92a1b1d7c2323554ae329614e175e967ce3c3f4";
+ version = "0.2.2.0";
+ sha256 = "95bfb764205c8d2038ec1dacbe30ca89a4bb85d19292dd55e77274f75e71fbc1";
libraryHaskellDepends = [
base comonad constrained-categories containers deepseq hmatrix
MemoTrie semigroups tagged transformers trivial-constraint vector
@@ -148008,6 +148457,8 @@ self: {
pname = "math-functions";
version = "0.1.5.2";
sha256 = "9ec9b809d33c3b4deebc07d8e776cb3f81866e99906ed84f9c4145fe8eb39f89";
+ revision = "1";
+ editedCabalFile = "3e2b050f7e1d531dd64b088e63886e4b8b5c093d6eee68fb76cbdf7ebb4065fd";
libraryHaskellDepends = [
base deepseq erf vector vector-th-unbox
];
@@ -148023,7 +148474,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "math-functions" = callPackage
+ "math-functions_0_1_6_0" = callPackage
({ mkDerivation, base, deepseq, erf, HUnit, ieee754, QuickCheck
, test-framework, test-framework-hunit, test-framework-quickcheck2
, vector, vector-th-unbox
@@ -148032,6 +148483,8 @@ self: {
pname = "math-functions";
version = "0.1.6.0";
sha256 = "3cb90fc750d28c8f6096ee083aff77dfa4dcf4a4938497957860d222e4436199";
+ revision = "1";
+ editedCabalFile = "2ca1e4ab2bc7a9b4858afb3e68e510841a769f211bf3cb886ccc509f3865f227";
libraryHaskellDepends = [
base deepseq erf vector vector-th-unbox
];
@@ -148043,6 +148496,32 @@ self: {
homepage = "https://github.com/bos/math-functions";
description = "Special functions and Chebyshev polynomials";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "math-functions" = callPackage
+ ({ mkDerivation, base, deepseq, erf, HUnit, primitive, QuickCheck
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , vector, vector-th-unbox
+ }:
+ mkDerivation {
+ pname = "math-functions";
+ version = "0.1.7.0";
+ sha256 = "f3faa070947829fb56a5563f474bfe41237b4b5e8c88c37cac42d208f4a6bea6";
+ revision = "1";
+ editedCabalFile = "c7e7287e2206d4bc8020141fc9a2b2f1ee09dd8c11f4e2eacbd24e68b99852f5";
+ libraryHaskellDepends = [
+ base deepseq erf primitive vector vector-th-unbox
+ ];
+ testHaskellDepends = [
+ base deepseq erf HUnit primitive QuickCheck test-framework
+ test-framework-hunit test-framework-quickcheck2 vector
+ vector-th-unbox
+ ];
+ doCheck = false;
+ homepage = "https://github.com/bos/math-functions";
+ description = "Special functions and Chebyshev polynomials";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"mathblog" = callPackage
@@ -148823,6 +149302,32 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
+ "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
+ }:
+ mkDerivation {
+ pname = "megaparsec";
+ version = "5.0.0";
+ sha256 = "6ed6448cfd5f37017296b5ce170e037d11855c9d52e7ef01103313514fbead70";
+ libraryHaskellDepends = [
+ base bytestring containers exceptions fail mtl scientific
+ semigroups text transformers
+ ];
+ testHaskellDepends = [
+ base bytestring containers exceptions HUnit mtl QuickCheck
+ scientific semigroups 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
({ mkDerivation, base }:
mkDerivation {
@@ -149107,8 +149612,8 @@ self: {
}:
mkDerivation {
pname = "memory";
- version = "0.12";
- sha256 = "e27e15cdfb41842ad1b6d68d5feb3c3ae041c0af1eb4dc997331e4c895162d1a";
+ version = "0.13";
+ sha256 = "dc73602573eaed85b1887f07057151c7de63f559ef90a10297c363d9b120870a";
libraryHaskellDepends = [ base bytestring deepseq ghc-prim ];
testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ];
homepage = "https://github.com/vincenthz/hs-memory";
@@ -149716,8 +150221,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "microlens";
- version = "0.4.3.0";
- sha256 = "c6476fa747094cc385a0aa369f705d3c5edbe5435e0e15d20dcb4ffa84443620";
+ version = "0.4.4.0";
+ sha256 = "376423b8820d620644e919ff0333800cf499fcdf3969fa13a24494c66d0c64a2";
libraryHaskellDepends = [ base ];
homepage = "http://github.com/aelve/microlens";
description = "A tiny part of the lens library with no dependencies";
@@ -149901,8 +150406,8 @@ self: {
}:
mkDerivation {
pname = "microlens-ghc";
- version = "0.4.3.0";
- sha256 = "f6ceaa3824742a8aa9659d01c3688997d72c0dedd74163147d0ee7744f62ede5";
+ version = "0.4.4.0";
+ sha256 = "b6e83dbfa16b78f9af477eaa635d2ea6b965603d16e7e751b4d1e4cf26dd23a8";
libraryHaskellDepends = [
array base bytestring containers microlens transformers
];
@@ -150080,8 +150585,8 @@ self: {
}:
mkDerivation {
pname = "microlens-platform";
- version = "0.3.0.0";
- sha256 = "76c27befd899f86306e191b29b2f57afeb93eeaa91569ea7c80ad8a234b6ecc9";
+ version = "0.3.1.0";
+ sha256 = "f0d62c55fa492cd2e98c1fd70cd64b2ec1991d3c3b45cfe2b8e38617ac8c4d36";
libraryHaskellDepends = [
base hashable microlens microlens-ghc microlens-mtl microlens-th
text unordered-containers vector
@@ -150321,16 +150826,14 @@ self: {
}:
mkDerivation {
pname = "midi-util";
- version = "0.1.1.1";
- sha256 = "d3c93d2112b5fbbff2fc2da10e18372f9f6d57a87166d313891e6663438719bd";
- revision = "1";
- editedCabalFile = "2c42b8e0940125f6354a9174ad5cb19da6fc0122b4947576e28abb753a7cff14";
+ version = "0.2";
+ sha256 = "f92ad57d4ba9b8120e66d55927938d968b97e305fd7a4296b94189a32461d7ee";
libraryHaskellDepends = [
base containers event-list midi non-negative
];
homepage = "http://github.com/mtolly/midi-util";
description = "Utility functions for processing MIDI files";
- license = "GPL";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"midimory" = callPackage
@@ -151315,11 +151818,10 @@ self: {
}:
mkDerivation {
pname = "mnist-idx";
- version = "0.1.2.3";
- sha256 = "10c7717cfa6955bc023a9a5be3692fc733ad0864d351a2b24e2a197ac10acecb";
+ version = "0.1.2.5";
+ 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;
@@ -152189,7 +152691,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "monad-journal" = callPackage
+ "monad-journal_0_7_1" = callPackage
({ mkDerivation, base, either, monad-control, mtl, transformers
, transformers-base
}:
@@ -152203,6 +152705,23 @@ self: {
homepage = "http://github.com/phaazon/monad-journal";
description = "Pure logger typeclass and monad transformer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "monad-journal" = callPackage
+ ({ mkDerivation, base, either, monad-control, mtl, transformers
+ , transformers-base
+ }:
+ mkDerivation {
+ pname = "monad-journal";
+ version = "0.7.2";
+ sha256 = "72b1a676bd994198544c4861a05b1d1b4f7ae55ea35a837cace539b8d6c69d08";
+ libraryHaskellDepends = [
+ base either monad-control mtl transformers transformers-base
+ ];
+ homepage = "http://github.com/phaazon/monad-journal";
+ description = "Pure logger typeclass and monad transformer";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"monad-levels" = callPackage
@@ -152755,7 +153274,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "monad-peel" = callPackage
+ "monad-peel_0_2" = callPackage
({ mkDerivation, base, extensible-exceptions, transformers }:
mkDerivation {
pname = "monad-peel";
@@ -152767,6 +153286,27 @@ self: {
homepage = "http://andersk.mit.edu/haskell/monad-peel/";
description = "Lift control operations like exception catching through monad transformers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "monad-peel" = callPackage
+ ({ mkDerivation, base, extensible-exceptions, HUnit, test-framework
+ , test-framework-hunit, transformers
+ }:
+ mkDerivation {
+ pname = "monad-peel";
+ version = "0.2.1.1";
+ sha256 = "f591f54910a117bba2fc963d5502de668ece69181b605cf9db353fbcfa9fe394";
+ libraryHaskellDepends = [
+ base extensible-exceptions transformers
+ ];
+ testHaskellDepends = [
+ base extensible-exceptions HUnit test-framework
+ test-framework-hunit transformers
+ ];
+ homepage = "http://andersk.mit.edu/haskell/monad-peel/";
+ description = "Lift control operations like exception catching through monad transformers";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"monad-primitive" = callPackage
@@ -154151,6 +154691,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "monoid-subclasses_0_4_2_1" = callPackage
+ ({ mkDerivation, base, bytestring, containers, primes, QuickCheck
+ , quickcheck-instances, tasty, tasty-quickcheck, text, vector
+ }:
+ mkDerivation {
+ pname = "monoid-subclasses";
+ version = "0.4.2.1";
+ sha256 = "4fe3360d06c09b66ba89c080337e2813ad225b1e6a28a580410930e882f5032a";
+ libraryHaskellDepends = [
+ base bytestring containers primes text vector
+ ];
+ testHaskellDepends = [
+ 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
({ mkDerivation, base }:
mkDerivation {
@@ -155060,6 +155622,19 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "mtl-prelude_2_0_3_1" = callPackage
+ ({ mkDerivation, base, mtl, transformers }:
+ mkDerivation {
+ pname = "mtl-prelude";
+ version = "2.0.3.1";
+ sha256 = "c4a6dda093d63bd2161f55030c5825903dfa9b7d5e766c487fd848cb2aa01233";
+ libraryHaskellDepends = [ base mtl transformers ];
+ 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
({ mkDerivation, base }:
mkDerivation {
@@ -155213,8 +155788,8 @@ self: {
pname = "mueval";
version = "0.9.1.1.2";
sha256 = "e04c3b754695cc8f71c072c6398b8a567c112c69d48355b5bca9bfbb1c050ac1";
- revision = "1";
- editedCabalFile = "5c6cf1e221928e15536f1dfa46942293acf7b470a442c619ef66529b78c59596";
+ revision = "2";
+ editedCabalFile = "fbea4bfb334f9f8ff79942e916e22c1ee9c1a78126f59d7a64e64bc6aa592151";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -155222,6 +155797,7 @@ self: {
mtl process QuickCheck show simple-reflect unix
];
executableHaskellDepends = [ base ];
+ jailbreak = true;
homepage = "https://github.com/gwern/mueval";
description = "Safely evaluate pure Haskell expressions";
license = stdenv.lib.licenses.bsd3;
@@ -155559,19 +156135,6 @@ self: {
}) {};
"multiset-comb" = callPackage
- ({ mkDerivation, base, containers, transformers }:
- mkDerivation {
- pname = "multiset-comb";
- version = "0.2.4";
- sha256 = "297d7a2ec9ecae0deb83e8ff8685b81221a4a4127dcf56e96f4773754cedfb48";
- revision = "1";
- editedCabalFile = "b6ecbed315e0578b665644b8a73ed1e348968e5a93bb1d491fb5a6faf79d7545";
- libraryHaskellDepends = [ base containers transformers ];
- description = "Combinatorial algorithms over multisets";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "multiset-comb_0_2_4_1" = callPackage
({ mkDerivation, base, containers, transformers }:
mkDerivation {
pname = "multiset-comb";
@@ -155580,7 +156143,6 @@ self: {
libraryHaskellDepends = [ base containers transformers ];
description = "Combinatorial algorithms over multisets";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"multisetrewrite" = callPackage
@@ -155602,10 +156164,8 @@ self: {
}:
mkDerivation {
pname = "multistate";
- version = "0.7.0.0";
- sha256 = "012cefe6afa33be2285c47538e6d79ba54bcb15328865751209cadbea2a38b75";
- revision = "2";
- editedCabalFile = "bef1a17a6c406a4468feee7dea8f82e70565a7acb1dae9dd0bf974d7cb3a6018";
+ version = "0.7.1.1";
+ sha256 = "609650cbbfd102c775b44be3fd7bb4f6732127e64b21dd45ea1af057c5ffb8a6";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -156121,6 +156681,8 @@ self: {
pname = "mutable-containers";
version = "0.2.1.2";
sha256 = "c89ff0d7fd37153d9cf259ca48282c273425e7beb3d92c6f5603471b51ff2dc8";
+ revision = "1";
+ editedCabalFile = "bc39fc4614bb907bc01f1ad47871bf359f330b14ab12c6cdf17449acc79f30d9";
libraryHaskellDepends = [
base containers ghc-prim mono-traversable primitive vector
];
@@ -156141,6 +156703,8 @@ self: {
pname = "mutable-containers";
version = "0.3.0";
sha256 = "ccec3cc85fa5a4facd65e7ab39220d0b41bd4ec2fe15df0bcd38fcf249105ff7";
+ revision = "1";
+ editedCabalFile = "a2978f06656719d92aff431c32ce5ac2c16b7ef903f8b5d05790f92469439683";
libraryHaskellDepends = [
base containers ghc-prim mono-traversable primitive vector
];
@@ -156161,6 +156725,8 @@ self: {
pname = "mutable-containers";
version = "0.3.2";
sha256 = "781388cf52faa5f9c4c8a825eef11bec430e323c6913d25b5f4e63d8ce02017e";
+ revision = "1";
+ editedCabalFile = "ff58817f1b7c5b5d448bcf93a216fa067ad76f7151649874abadba5676f49901";
libraryHaskellDepends = [
base containers ghc-prim mono-traversable primitive vector
];
@@ -156181,6 +156747,8 @@ self: {
pname = "mutable-containers";
version = "0.3.2.1";
sha256 = "fb83475c6a755d1998906f37a71b6aa6f414fd0b5d41b16567c2219fb43e4e4d";
+ revision = "1";
+ editedCabalFile = "cab478fe3a2d06ef49ac28dcd4e61d6a285a9c59d5a32c5a45480243b4a6fe69";
libraryHaskellDepends = [
base containers ghc-prim mono-traversable primitive vector
];
@@ -158679,7 +159247,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "network-conduit-tls" = callPackage
+ "network-conduit-tls_1_2_1_1" = callPackage
({ mkDerivation, base, bytestring, conduit, conduit-extra
, connection, cprng-aes, data-default, HUnit, monad-control, mtl
, network, streaming-commons, tls, transformers
@@ -158699,6 +159267,29 @@ self: {
homepage = "https://github.com/snoyberg/conduit";
description = "Create TLS-aware network code with conduits";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "network-conduit-tls" = callPackage
+ ({ mkDerivation, base, bytestring, conduit, conduit-extra
+ , connection, cprng-aes, data-default, HUnit, monad-control, mtl
+ , network, streaming-commons, tls, transformers, transformers-base
+ }:
+ mkDerivation {
+ pname = "network-conduit-tls";
+ version = "1.2.2";
+ sha256 = "12a2cddfacd19d0585e57ff143d625e255e1a4628a463a41332eabc3c02bb087";
+ libraryHaskellDepends = [
+ base bytestring conduit conduit-extra connection cprng-aes
+ data-default monad-control network streaming-commons tls
+ transformers transformers-base
+ ];
+ testHaskellDepends = [
+ base bytestring conduit conduit-extra connection HUnit mtl
+ ];
+ homepage = "https://github.com/snoyberg/conduit";
+ description = "Create TLS-aware network code with conduits";
+ license = stdenv.lib.licenses.mit;
}) {};
"network-connection" = callPackage
@@ -158792,6 +159383,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "network-hans" = callPackage
+ ({ mkDerivation, base, bytestring, hans, parsec }:
+ mkDerivation {
+ pname = "network-hans";
+ version = "0.2";
+ sha256 = "22edd54234b97336910dd35d2e3d083aae15411cf30c8a5407e85faccf1cef05";
+ libraryHaskellDepends = [ base bytestring hans parsec ];
+ description = "HaNS to Network shims for easier HaNS integration";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"network-house" = callPackage
({ mkDerivation, array, base, containers, mtl }:
mkDerivation {
@@ -158931,8 +159533,8 @@ self: {
({ mkDerivation, base, binary, bytestring, network, unix }:
mkDerivation {
pname = "network-msg";
- version = "0.7";
- sha256 = "dc11cb84d44b805bf004d4fcd2e687f5d1858de3b33cf3f60960977dbf50ba9b";
+ version = "0.8";
+ sha256 = "221d381b1eee214af99d9b5551751a93042d7447aabb7d636688791d7e68eaad";
libraryHaskellDepends = [ base binary bytestring network unix ];
description = "Recvmsg and sendmsg bindings";
license = "unknown";
@@ -158950,7 +159552,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "network-multicast" = callPackage
+ "network-multicast_0_1_0" = callPackage
({ mkDerivation, base, network }:
mkDerivation {
pname = "network-multicast";
@@ -158959,6 +159561,18 @@ self: {
libraryHaskellDepends = [ base network ];
description = "Simple multicast library";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "network-multicast" = callPackage
+ ({ mkDerivation, base, network }:
+ mkDerivation {
+ pname = "network-multicast";
+ version = "0.1.1";
+ sha256 = "f44c0b10569a10349d6e5a587ba3ed85a61a56a001939f1b6fb1b15911e8b742";
+ libraryHaskellDepends = [ base network ];
+ description = "Simple multicast library";
+ license = stdenv.lib.licenses.publicDomain;
}) {};
"network-netpacket" = callPackage
@@ -159795,19 +160409,30 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "ngx-export" = callPackage
+ ({ mkDerivation, base, bytestring, template-haskell }:
+ mkDerivation {
+ pname = "ngx-export";
+ version = "0.1.0.0";
+ sha256 = "71eb528e964f72801c832038a929a693fd654b258be0c654c004f150a17d6c63";
+ libraryHaskellDepends = [ base bytestring template-haskell ];
+ homepage = "http://github.com/lyokha/nginx-haskell-module";
+ description = "Export custom haskell functions into nginx configuration";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"niagra" = callPackage
- ({ mkDerivation, base, containers, ghc-prim, mtl, text
- , transformers
+ ({ mkDerivation, base, ghc-prim, mtl, primitive, text, transformers
}:
mkDerivation {
pname = "niagra";
- version = "0.2.1";
- sha256 = "5b6cb93d70015fc48a200f4937470b73c1e1fd152ce6dd2a4413e3b547d6ee00";
+ version = "0.2.3";
+ sha256 = "19d15b13766496bfceea6b871329984441d42884d662fbf25902b30538745431";
libraryHaskellDepends = [
- base containers ghc-prim mtl text transformers
+ base ghc-prim mtl primitive text transformers
];
homepage = "https://github.com/fhsjaagshs/niagra";
- description = "CSS EDSL for Haskell";
+ description = "High performance CSS EDSL";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -160294,13 +160919,14 @@ self: {
pname = "nonlinear-optimization-ad";
version = "0.2.1";
sha256 = "4da26e17e8b8f877d1c6cfb2da008153d7372cbaadf1e0b54ab5ee76aff5714c";
+ revision = "1";
+ editedCabalFile = "0e98c117988be619a34551dcabf96b2f451248a333d8b086fe762d54bf2af89c";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ad base nonlinear-optimization primitive reflection vector
];
executableHaskellDepends = [ base csv ];
- jailbreak = true;
homepage = "https://github.com/msakai/nonlinear-optimization-ad";
description = "Wrapper of nonlinear-optimization package for using with AD package";
license = stdenv.lib.licenses.gpl3;
@@ -160477,8 +161103,8 @@ self: {
({ mkDerivation, base, containers, numeric-prelude, primes }:
mkDerivation {
pname = "np-extras";
- version = "0.3.1";
- sha256 = "3e0a363aa70842155dfe0046f0e96c3feac56f7e543f6307a9d764b4af1991d1";
+ version = "0.3.1.1";
+ sha256 = "8e2ee0de39eae5984e69010fdcaea68a0defb6d6a007e235053805d4ea9d273c";
libraryHaskellDepends = [ base containers numeric-prelude primes ];
description = "NumericPrelude extras";
license = stdenv.lib.licenses.bsd3;
@@ -160647,6 +161273,19 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
+ "nullpipe" = callPackage
+ ({ mkDerivation, base, bytestring, hspec, pipes }:
+ mkDerivation {
+ pname = "nullpipe";
+ version = "0.1.0.0";
+ sha256 = "289bbf459ed94ee015ec978bfaaeb4c5b94de066838719fc3f5652280411cf93";
+ libraryHaskellDepends = [ base bytestring pipes ];
+ testHaskellDepends = [ base hspec pipes ];
+ homepage = "https://github.com/mwotton/nullpipe#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"number" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -160895,7 +161534,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "numtype" = callPackage
+ "numtype_1_1" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "numtype";
@@ -160905,14 +161544,40 @@ self: {
homepage = "http://dimensional.googlecode.com/";
description = "Type-level (low cardinality) integers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "numtype" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "numtype";
+ version = "1.2";
+ sha256 = "d537a8caefc04306384b5b14178b08ece87aeae25f5759be2cde2aff8de3aadd";
+ libraryHaskellDepends = [ base ];
+ homepage = "http://dimensional.googlecode.com/";
+ description = "Type-level (low cardinality) integers";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "numtype-dk_0_5" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "numtype-dk";
+ version = "0.5";
+ sha256 = "adafa783b499dffe02265bfb7b126b53ea3548f0c706670adb842fe06051a13d";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/bjornbm/numtype-dk";
+ description = "Type-level integers, using TypeNats, Data Kinds, and Closed Type Families";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"numtype-dk" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "numtype-dk";
- version = "0.5";
- sha256 = "adafa783b499dffe02265bfb7b126b53ea3548f0c706670adb842fe06051a13d";
+ version = "0.5.0.1";
+ sha256 = "29dbb9bf7693989f94605804de31b1a4dacf53ab566ce0346445288eae95d017";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/bjornbm/numtype-dk";
description = "Type-level integers, using TypeNats, Data Kinds, and Closed Type Families";
@@ -161253,8 +161918,8 @@ self: {
}:
mkDerivation {
pname = "octane";
- version = "0.4.19";
- sha256 = "e0e71189d3c0848e2c2c59cae80d82979be5d00c25e38a100392022c9ce43ab1";
+ version = "0.4.24";
+ sha256 = "2c74c33a03f90c141da3ffc94c5434e24b6c7cf8c426927480ce0f278eb6802a";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -162010,8 +162675,8 @@ self: {
}:
mkDerivation {
pname = "opaleye-trans";
- version = "0.3.1";
- sha256 = "61c5c21c4bbb9bcc3111ed3310fe454c3cd9e612c2c79cc34f5bbbbae28024f7";
+ version = "0.3.2";
+ sha256 = "aeed0edf623028aedabeda7899a9ac566b69119ec2fa60e806f121021be47d37";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -162021,8 +162686,7 @@ self: {
executableHaskellDepends = [
base opaleye postgresql-simple product-profunctors
];
- jailbreak = true;
- homepage = "https://github.com/tomjaguarpaw/haskell-opaleye";
+ homepage = "https://github.com/WraithM/opaleye-trans";
description = "A monad transformer for Opaleye";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -162753,8 +163417,8 @@ self: {
}:
mkDerivation {
pname = "operational-extra";
- version = "0.3";
- sha256 = "12c01a37e59c5ec5696ce231b894399ee37fc9e6b0400e166b4e92457ced06db";
+ version = "0.4";
+ sha256 = "1a19bddfa919f84ee64482a34ff2e001d8bd8e5fdf9f53693f1921994845ec7d";
libraryHaskellDepends = [
base bytestring operational text time transformers
];
@@ -163172,6 +163836,31 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "optparse-helper" = 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 ];
+ homepage = "https://github.com/pharpend/optparse-helper";
+ description = "Helper functions for optparse-applicative";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"optparse-simple_0_0_2" = callPackage
({ mkDerivation, base, either, gitrev, optparse-applicative
, template-haskell, transformers
@@ -163493,6 +164182,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "oscpacking" = callPackage
+ ({ mkDerivation, base, colour, gloss, random }:
+ mkDerivation {
+ pname = "oscpacking";
+ version = "0.1.0.0";
+ sha256 = "74c471f1bf18d877061ce60fdcd0030fa77b617ae99c2c10d6d375e2a3fd23f1";
+ libraryHaskellDepends = [ base colour gloss random ];
+ jailbreak = true;
+ description = "Implements an osculatory packing (kissing circles) algorithm and display";
+ license = stdenv.lib.licenses.gpl3;
+ }) {};
+
"osdkeys" = callPackage
({ mkDerivation, base, bytestring, conduit, conduit-extra
, containers, libnotify, process, resourcet, time, transformers
@@ -163614,8 +164315,8 @@ self: {
({ mkDerivation, base, containers, parsec, split, uniplate }:
mkDerivation {
pname = "ottparse-pretty";
- version = "0.1.2.5";
- sha256 = "a4aeef67d3f01694114c9e28869f01df8c2931b2d3d21ac53fab7098974c94b7";
+ version = "0.1.2.6";
+ sha256 = "45abdb079fc904f507493c32a2defbb2460f4666b7e49cb39e512e1204fba2e0";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -164983,8 +165684,8 @@ self: {
}:
mkDerivation {
pname = "pandoc-crossref";
- version = "0.2.1.2";
- sha256 = "1410526eb891d20f0d16d6c970c3f7e8355b21c55fde56a1899a5d55828e593a";
+ version = "0.2.1.3";
+ sha256 = "d14b78972c48a722b7e53d12fb601e4379d5384f9a58c8ce46ab42b058125471";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -165064,8 +165765,8 @@ self: {
({ mkDerivation, base, containers, lens, pandoc-types }:
mkDerivation {
pname = "pandoc-lens";
- version = "0.5";
- sha256 = "407c6098424879a1add6393c8f07266291fd28b4ada61366e5625736323a13fb";
+ version = "0.6";
+ sha256 = "70ffd8f5a5086cd6e2f3f92fd3f304ac6cf5ebbef70361086984ce8a11faf3fc";
libraryHaskellDepends = [ base containers lens pandoc-types ];
homepage = "http://github.com/bgamari/pandoc-lens";
description = "Lenses for Pandoc documents";
@@ -165350,6 +166051,25 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs.gnome) pango;};
+ "pango_0_13_2_0" = 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;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs.gnome) pango;};
+
"papillon" = callPackage
({ mkDerivation, base, bytestring, directory, filepath, monads-tf
, template-haskell, transformers
@@ -165755,7 +166475,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "parsec" = callPackage
+ "parsec_3_1_9" = callPackage
({ mkDerivation, base, bytestring, HUnit, mtl, test-framework
, test-framework-hunit, text
}:
@@ -165772,6 +166492,25 @@ self: {
homepage = "https://github.com/aslatter/parsec";
description = "Monadic parser combinators";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "parsec" = callPackage
+ ({ mkDerivation, base, bytestring, HUnit, mtl, test-framework
+ , test-framework-hunit, text
+ }:
+ mkDerivation {
+ pname = "parsec";
+ version = "3.1.11";
+ sha256 = "6f87251cb1d11505e621274dec15972de924a9074f07f7430a18892064c2676e";
+ libraryHaskellDepends = [ base bytestring mtl text ];
+ testHaskellDepends = [
+ base HUnit test-framework test-framework-hunit
+ ];
+ doCheck = false;
+ homepage = "https://github.com/aslatter/parsec";
+ description = "Monadic parser combinators";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"parsec-extra" = callPackage
@@ -167045,6 +167784,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "pcre-utils_0_1_8" = callPackage
+ ({ mkDerivation, array, attoparsec, base, bytestring, HUnit, mtl
+ , regex-pcre-builtin, vector
+ }:
+ mkDerivation {
+ pname = "pcre-utils";
+ version = "0.1.8";
+ sha256 = "9599b89fcea0676891fcb6a51b556db4af5f870c1362a84492d773b3927cd8b2";
+ 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;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"pdf-toolbox-content_0_0_5_0" = callPackage
({ mkDerivation, attoparsec, base, base16-bytestring, bytestring
, containers, io-streams, pdf-toolbox-core, text
@@ -169341,7 +170098,7 @@ self: {
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
- "persistent-sqlite_2_5" = callPackage
+ "persistent-sqlite_2_5_0_1" = callPackage
({ mkDerivation, aeson, base, bytestring, conduit, containers
, hspec, monad-control, monad-logger, old-locale, persistent
, persistent-template, resource-pool, resourcet, text, time
@@ -169349,8 +170106,8 @@ self: {
}:
mkDerivation {
pname = "persistent-sqlite";
- version = "2.5";
- sha256 = "ca67e87e5089215cfe1782c32b5e227355054caa92c802beef056f2304bb6373";
+ version = "2.5.0.1";
+ sha256 = "0aeb44b66436ed0e55d473915f1cbaa2a673b21861c03edf0e83418c6f2c17e7";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -169685,7 +170442,7 @@ self: {
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
- "persistent-template" = callPackage
+ "persistent-template_2_1_8" = 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
@@ -169706,10 +170463,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_1" = 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
@@ -169717,8 +170475,32 @@ self: {
}:
mkDerivation {
pname = "persistent-template";
- version = "2.5.1.1";
- sha256 = "37b70abf241324a296fbfa949ba0572515701dbb593648cdd6deffce6db3aae3";
+ version = "2.1.8.1";
+ sha256 = "34911f40028357567717f6724abae4e6fc905567ffc8ba8ee5042e9680b2f168";
+ libraryHaskellDepends = [
+ aeson aeson-compat base bytestring containers ghc-prim
+ http-api-data monad-control monad-logger path-pieces persistent
+ tagged template-haskell text transformers unordered-containers
+ ];
+ testHaskellDepends = [
+ aeson base bytestring hspec persistent QuickCheck text transformers
+ ];
+ homepage = "http://www.yesodweb.com/book/persistent";
+ description = "Type-safe, non-relational, multi-backend persistence";
+ license = stdenv.lib.licenses.mit;
+ maintainers = with stdenv.lib.maintainers; [ psibi ];
+ }) {};
+
+ "persistent-template_2_5_1_3" = callPackage
+ ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers
+ , ghc-prim, hspec, http-api-data, monad-control, monad-logger
+ , path-pieces, persistent, QuickCheck, tagged, template-haskell
+ , text, transformers, unordered-containers
+ }:
+ mkDerivation {
+ pname = "persistent-template";
+ version = "2.5.1.3";
+ sha256 = "c0070245e0b569ceef15e55be816a069cf2d26774c9613368d915e6ecb396f2a";
libraryHaskellDepends = [
aeson aeson-compat base bytestring containers ghc-prim
http-api-data monad-control monad-logger path-pieces persistent
@@ -169982,22 +170764,22 @@ self: {
"pgdl" = callPackage
({ mkDerivation, base, binary, brick, bytestring, Cabal, conduit
, conduit-extra, configurator, data-default, directory
- , directory-listing-webpage-parser, filepath, http-conduit, process
- , resourcet, tagsoup, text, time, transformers, unix, vector, vty
+ , directory-listing-webpage-parser, filepath, http-conduit
+ , http-types, process, resourcet, tagsoup, text, time, transformers
+ , unix, vector, vty
}:
mkDerivation {
pname = "pgdl";
- version = "9.0";
- sha256 = "d4812a30b8d37572c9fc0da282dbc1258bd31769a2e3d0771da8f391eb72d3a5";
+ version = "9.2";
+ sha256 = "db25085b9b2ed08020635dd1e48b031b1811d2d5e7df2d991cbe8f8710415faf";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base binary brick bytestring Cabal conduit conduit-extra
configurator data-default directory
- directory-listing-webpage-parser filepath http-conduit process
- resourcet tagsoup text time transformers unix vector vty
+ 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;
}) {};
@@ -170090,6 +170872,18 @@ self: {
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";
+ 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
({ mkDerivation, array, base, ghc-prim, monad-st, primitive, vector
}:
@@ -170174,8 +170968,8 @@ self: {
}:
mkDerivation {
pname = "phoityne-vscode";
- version = "0.0.2.0";
- sha256 = "fa1c8d6f4e6f034f439db307e44990b0cb8840cdd2084e8a4bd28008b6139cdb";
+ version = "0.0.3.0";
+ sha256 = "cf33fb53d46cdb21c76397e1a2b69ee96f5c582b63276fc2f337abf43698a0ca";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -170185,7 +170979,7 @@ self: {
text transformers
];
testHaskellDepends = [ aeson base hspec ];
- homepage = "https://sites.google.com/site/phoityne/";
+ homepage = "https://sites.google.com/site/phoityne/vscode";
description = "ghci debug viewer on Visual Studio Code";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -170575,6 +171369,29 @@ self: {
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
+ "pinch_0_2_0_1" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, deepseq
+ , ghc-prim, hashable, hspec, hspec-discover, QuickCheck, text
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "pinch";
+ version = "0.2.0.1";
+ sha256 = "02115cbe9ad2053d57e4d14e203acb9962bcaa7a4b390b838e650a5d5e18d536";
+ 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 = stdenv.lib.platforms.none;
+ }) {};
+
"pinchot_0_6_0_0" = callPackage
({ mkDerivation, base, containers, Earley, lens, template-haskell
, transformers
@@ -171536,8 +172353,8 @@ self: {
}:
mkDerivation {
pname = "pipes-key-value-csv";
- version = "0.0.0.0";
- sha256 = "5a6f09f41031bd66ceca26fed08c51784610b1c586d064a0e76d83cf8dd780c5";
+ version = "0.1.0.0";
+ sha256 = "b4f65a07978ddd42d54bd1082b2185df87f3feff391fafaff1fc254b3d9ad8a0";
libraryHaskellDepends = [
base containers data-default-class lens mtl pipes pipes-bytestring
pipes-group pipes-parse pipes-safe pipes-text reflection text
@@ -173172,7 +173989,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "polyparse" = callPackage
+ "polyparse_1_11" = callPackage
({ mkDerivation, base, bytestring, text }:
mkDerivation {
pname = "polyparse";
@@ -173182,9 +173999,10 @@ self: {
homepage = "http://code.haskell.org/~malcolm/polyparse/";
description = "A variety of alternative parser combinator libraries";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "polyparse_1_12" = callPackage
+ "polyparse" = callPackage
({ mkDerivation, base, bytestring, text }:
mkDerivation {
pname = "polyparse";
@@ -173194,7 +174012,6 @@ self: {
homepage = "http://code.haskell.org/~malcolm/polyparse/";
description = "A variety of alternative parser combinator libraries";
license = "LGPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"polyseq" = callPackage
@@ -173227,6 +174044,7 @@ self: {
libraryHaskellDepends = [
base containers deepseq polyparse tagsoup
];
+ jailbreak = true;
homepage = "https://github.com/kawu/polysoup";
description = "Online XML parsing with polyparse and tagsoup";
license = stdenv.lib.licenses.bsd3;
@@ -173629,6 +174447,8 @@ self: {
pname = "posix-paths";
version = "0.2.1.0";
sha256 = "2086e66f6aef0629d586c63d461a0c45232dc6c3afc939898106bcc632c0faa0";
+ revision = "2";
+ editedCabalFile = "8ad8aaa78d501b83f4583cb66365cc518f531a54fa4f97e458c0b86008a1acfe";
libraryHaskellDepends = [ base bytestring unix ];
testHaskellDepends = [
base bytestring doctest HUnit QuickCheck unix
@@ -174417,8 +175237,8 @@ self: {
pname = "postgresql-simple-url";
version = "0.1.0.1";
sha256 = "cf165ec652e1192f392349e09e413a776921ddef71d95bac0d23e9f81cfbe8a0";
- revision = "6";
- editedCabalFile = "316507c07968bf66036b35f24ee6899bfcca65978730197a2687c9ccc3b2a48d";
+ revision = "7";
+ editedCabalFile = "f4f8535e362cc496675fa36640cea043fbe46e99e2d3bc8ee449ebe6a293c8cc";
libraryHaskellDepends = [
base network-uri postgresql-simple split
];
@@ -174431,19 +175251,6 @@ self: {
}) {};
"postgresql-transactional" = callPackage
- ({ mkDerivation, base, monad-control, mtl, postgresql-simple }:
- mkDerivation {
- pname = "postgresql-transactional";
- version = "1.0.0";
- sha256 = "5d4468f6142628432a6f6ace9485ac441a54f6ce42a99d8efaad6f532a9bfd48";
- libraryHaskellDepends = [
- base monad-control mtl postgresql-simple
- ];
- description = "a transactional monad on top of postgresql-simple";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "postgresql-transactional_1_1_1" = callPackage
({ mkDerivation, base, monad-control, mtl, postgresql-simple }:
mkDerivation {
pname = "postgresql-transactional";
@@ -174454,7 +175261,6 @@ self: {
];
description = "a transactional monad on top of postgresql-simple";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"postgresql-typed" = callPackage
@@ -174714,7 +175520,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "pqueue" = callPackage
+ "pqueue_1_3_1" = callPackage
({ mkDerivation, base, deepseq }:
mkDerivation {
pname = "pqueue";
@@ -174723,6 +175529,18 @@ self: {
libraryHaskellDepends = [ base deepseq ];
description = "Reliable, persistent, fast priority queues";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "pqueue" = callPackage
+ ({ mkDerivation, base, deepseq }:
+ mkDerivation {
+ pname = "pqueue";
+ version = "1.3.1.1";
+ sha256 = "a40a5eaa1b74b34f774c09613ac92955ae381000a5007a67b500a794516063a2";
+ libraryHaskellDepends = [ base deepseq ];
+ description = "Reliable, persistent, fast priority queues";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"pqueue-mtl" = callPackage
@@ -175467,8 +176285,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "prettyFunctionComposing";
- version = "1.0.1";
- sha256 = "0b254954b19b3217eb4f1d6dc84cf5b8ffaa3dfe67ce2cb00a506546a56f6930";
+ version = "2.0.0";
+ sha256 = "0d222ed7f53f836ae025a5f19e242f1224e065043c19f25ec51e27d516e47823";
libraryHaskellDepends = [ base ];
description = "prettier function composition by (°)";
license = stdenv.lib.licenses.bsd3;
@@ -175638,6 +176456,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "pringletons" = callPackage
+ ({ mkDerivation, aeson, base, hashable, singletons
+ , template-haskell, text, unordered-containers, vector, vinyl
+ }:
+ mkDerivation {
+ pname = "pringletons";
+ version = "0.3";
+ sha256 = "2d9587e66b232f66ec7821df4c5999d48883a7f06daf4a39ad1f770b92baecd7";
+ libraryHaskellDepends = [
+ aeson base hashable singletons template-haskell text
+ unordered-containers vector vinyl
+ ];
+ homepage = "https://github.com/andrewthad/pringletons";
+ description = "Classes and data structures complementing the singletons library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"print-debugger" = callPackage
({ mkDerivation, base, split }:
mkDerivation {
@@ -175936,6 +176771,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "process-extras_0_4_1_4" = callPackage
+ ({ mkDerivation, base, bytestring, deepseq, generic-deriving
+ , ListLike, process, text
+ }:
+ mkDerivation {
+ pname = "process-extras";
+ version = "0.4.1.4";
+ sha256 = "05cd949158ff605cb63fc86a2de1b51bfd8d27bf54b5fbe6427a1941e938cfc0";
+ libraryHaskellDepends = [
+ base bytestring deepseq generic-deriving ListLike process text
+ ];
+ homepage = "https://github.com/seereason/process-extras";
+ description = "Process extras";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"process-iterio" = callPackage
({ mkDerivation, base, bytestring, cpphs, iterIO, process
, transformers
@@ -176026,39 +176878,6 @@ self: {
}) {};
"process-streaming" = callPackage
- ({ mkDerivation, attoparsec, base, bifunctors, bytestring, conceit
- , containers, directory, doctest, exceptions, filepath, foldl, free
- , kan-extensions, lens-family-core, pipes, pipes-attoparsec
- , pipes-bytestring, pipes-concurrency, pipes-group, pipes-parse
- , pipes-safe, pipes-text, pipes-transduce, process, profunctors
- , semigroups, tasty, tasty-hunit, text, transformers
- , transformers-compat, void
- }:
- mkDerivation {
- pname = "process-streaming";
- version = "0.9.1.1";
- sha256 = "0d773c9c61232de9878a4d56f98e810932980309bde2e321e3a3007a8797d7c6";
- libraryHaskellDepends = [
- base bifunctors bytestring conceit free kan-extensions pipes
- pipes-bytestring pipes-concurrency pipes-parse pipes-safe
- pipes-text pipes-transduce process profunctors text transformers
- transformers-compat void
- ];
- testHaskellDepends = [
- attoparsec base bifunctors bytestring containers directory doctest
- exceptions filepath foldl free lens-family-core pipes
- pipes-attoparsec pipes-bytestring pipes-concurrency pipes-group
- pipes-parse pipes-safe pipes-text pipes-transduce process
- semigroups tasty tasty-hunit text transformers transformers-compat
- void
- ];
- doCheck = false;
- description = "Streaming interface to system processes";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "process-streaming_0_9_1_2" = callPackage
({ mkDerivation, attoparsec, base, bifunctors, bytestring, conceit
, containers, directory, doctest, exceptions, filepath, foldl, free
, kan-extensions, lens-family-core, pipes, pipes-attoparsec
@@ -176776,8 +177595,8 @@ self: {
}:
mkDerivation {
pname = "propellor";
- version = "3.0.3";
- sha256 = "c0dc9dff49c9062e51fd4e7486fe3d882766633f51110161d56c5011c378ee45";
+ version = "3.0.4";
+ sha256 = "99b80381aa6811b2ad504c86a8b453b139b2aae3f3db4da766effb66f0ffda3a";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -176792,7 +177611,7 @@ self: {
];
homepage = "https://propellor.branchable.com/";
description = "property-based host configuration management in haskell";
- license = stdenv.lib.licenses.bsd3;
+ license = stdenv.lib.licenses.bsd2;
}) {};
"properties" = callPackage
@@ -177427,6 +178246,8 @@ self: {
pname = "pseudo-boolean";
version = "0.1.4.0";
sha256 = "0fc981b210c969fb150f5720829556c94bc6f24c5aff6807a08c3d39e2ca726d";
+ revision = "1";
+ editedCabalFile = "3d1f36fb70c675267b56b621175f957ea34d56f7149da4e3085d1ace84ad0d43";
libraryHaskellDepends = [
attoparsec base bytestring bytestring-builder containers deepseq
dlist hashable megaparsec parsec
@@ -177592,8 +178413,8 @@ self: {
({ mkDerivation, base, filepath, hspec, template-haskell }:
mkDerivation {
pname = "publicsuffix";
- version = "0.20160505";
- sha256 = "936c39ccb9d0d6ca661a924d95244699eaec0d634afa6f852438430967c5c4e7";
+ version = "0.20160522";
+ sha256 = "1ae1ae02b3c317d421de31490cbd4b83a306f6be53103a5b1438aa170703f529";
libraryHaskellDepends = [ base filepath template-haskell ];
testHaskellDepends = [ base hspec ];
homepage = "https://github.com/wereHamster/publicsuffix-haskell/";
@@ -177982,7 +178803,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "pureMD5" = callPackage
+ "pureMD5_2_1_2_1" = callPackage
({ mkDerivation, base, binary, bytestring, cereal, crypto-api
, tagged
}:
@@ -177995,9 +178816,10 @@ self: {
];
description = "A Haskell-only implementation of the MD5 digest (hash) algorithm";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "pureMD5_2_1_3" = callPackage
+ "pureMD5" = callPackage
({ mkDerivation, base, binary, bytestring, cereal, crypto-api
, crypto-api-tests, pretty-hex, QuickCheck, tagged, test-framework
, test-framework-quickcheck2
@@ -178015,7 +178837,6 @@ self: {
];
description = "A Haskell-only implementation of the MD5 digest (hash) algorithm";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"purescript_0_7_2_0" = callPackage
@@ -178303,17 +179124,19 @@ self: {
"purescript-bridge" = callPackage
({ mkDerivation, base, containers, directory, filepath
- , generic-deriving, text
+ , generic-deriving, lens, mtl, text, transformers
}:
mkDerivation {
pname = "purescript-bridge";
- version = "0.3.2.0";
- sha256 = "0377f67fc941523c093767ca33c215236550f6f67f51b95c6527e93f8f618954";
+ version = "0.4.0.0";
+ sha256 = "f58f12eaeab88ab31d7e16de761cfdf21e3ea12acc99c899528242d404538600";
libraryHaskellDepends = [
- base containers directory filepath generic-deriving text
+ base containers directory filepath generic-deriving lens mtl text
+ transformers
];
+ testHaskellDepends = [ base containers text ];
description = "Generate PureScript data types from Haskell data types";
- license = stdenv.lib.licenses.agpl3;
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
@@ -178498,6 +179321,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "pusher-ws" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, deepseq
+ , hashable, http-conduit, lens, lens-aeson, network, scientific
+ , stm, text, time, transformers, unordered-containers, websockets
+ , wuss
+ }:
+ mkDerivation {
+ pname = "pusher-ws";
+ version = "0.1.0.0";
+ sha256 = "ba74ec6413d8ae7811afe748bd6dde6e9ceb12cb65a69884f02043cb76eeab3d";
+ libraryHaskellDepends = [
+ aeson base bytestring containers deepseq hashable http-conduit lens
+ lens-aeson network scientific stm text time transformers
+ unordered-containers websockets wuss
+ ];
+ homepage = "https://github.com/barrucadu/pusher-ws";
+ description = "Implementation of the Pusher WebSocket protocol";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"pushme" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, deepseq
, hslogger, io-storage, lens, old-locale, optparse-applicative
@@ -179088,6 +179931,27 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "quickbooks" = callPackage
+ ({ mkDerivation, aeson, authenticate-oauth, base, bytestring
+ , doctest, email-validate, fast-logger, http-client
+ , http-client-tls, http-types, interpolate, old-locale, text, thyme
+ , yaml
+ }:
+ mkDerivation {
+ pname = "quickbooks";
+ version = "0.5.0.1";
+ sha256 = "460895f6edbb16e4256a779a817f548fef8f49464c304eb036e3ed22c4b65f30";
+ libraryHaskellDepends = [
+ aeson authenticate-oauth base bytestring email-validate fast-logger
+ http-client http-client-tls http-types interpolate old-locale text
+ thyme yaml
+ ];
+ testHaskellDepends = [ base doctest ];
+ jailbreak = true;
+ description = "QuickBooks API binding";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"quickcheck-assertions_0_1_1" = callPackage
({ mkDerivation, base, hspec, ieee754, QuickCheck }:
mkDerivation {
@@ -180356,8 +181220,8 @@ self: {
}:
mkDerivation {
pname = "random-variates";
- version = "0.1.4.0";
- sha256 = "266a3e0a39914bf15da877e1cf866c263d73be820017d6543445510b16fda554";
+ version = "0.1.5.1";
+ sha256 = "f407c82ceb9dc24f795bc06f8f186e83986f23ae8d8db40fbf8976a33fa4aacc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -181546,12 +182410,11 @@ self: {
}:
mkDerivation {
pname = "record";
- version = "0.4.0.2";
- sha256 = "bc96ff1b80e5c5c7aba2ce4ba366099ab262be5b858c9b1ca6a0dedb8e0443a2";
+ version = "0.4.1.1";
+ sha256 = "efb51262d06872cc7881b000842e46fd593468a4e6823e80cf0c0d58196b2d96";
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;
@@ -182022,6 +182885,8 @@ self: {
pname = "reducers";
version = "3.12.1";
sha256 = "e43bb7678272691a358c049daecbac715c4b0fcece021c6b2ac7b2a1c16b6d5e";
+ revision = "1";
+ editedCabalFile = "c6ab48d549368fdf26d133be187a1ca00831307271b1a710ec950d50b2d1c2be";
libraryHaskellDepends = [
array base bytestring containers fingertree hashable semigroupoids
semigroups text transformers unordered-containers
@@ -182095,7 +182960,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ref-fd" = callPackage
+ "ref-fd_0_4" = callPackage
({ mkDerivation, base, stm, transformers }:
mkDerivation {
pname = "ref-fd";
@@ -182106,6 +182971,18 @@ self: {
homepage = "http://www.cs.drexel.edu/~mainland/";
description = "A type class for monads with references using functional dependencies";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ref-fd" = callPackage
+ ({ mkDerivation, base, stm, transformers }:
+ mkDerivation {
+ pname = "ref-fd";
+ version = "0.4.0.1";
+ sha256 = "e416f1afba149e3af9cbe1011381d0b89609c240d812127bd03b8a922a5f6037";
+ libraryHaskellDepends = [ base stm transformers ];
+ description = "A type class for monads with references using functional dependencies";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"ref-mtl" = callPackage
@@ -182192,23 +183069,25 @@ self: {
"references" = callPackage
({ mkDerivation, array, base, containers, directory, either
- , filepath, instance-control, mtl, template-haskell, text
- , transformers
+ , filepath, HUnit, instance-control, lens, mtl, template-haskell
+ , text, transformers, uniplate
}:
mkDerivation {
pname = "references";
- version = "0.3.0.0";
- sha256 = "53d69562abb903586376434b4b8dcc8e3199144bf6e0fe05bfc3a5f175ca8367";
+ version = "0.3.0.1";
+ sha256 = "ca6eb6aaa433fd9acf8cb2d4c9208a15285b8bd3dd1fdcd30201f370a5fb534f";
libraryHaskellDepends = [
array base containers directory either filepath instance-control
- mtl template-haskell text transformers
+ mtl template-haskell text transformers uniplate
+ ];
+ testHaskellDepends = [
+ array base containers directory either filepath HUnit
+ instance-control lens mtl template-haskell text transformers
];
- jailbreak = true;
homepage = "https://github.com/lazac/references";
- description = "Generalization of lenses, folds and traversals to handle monads and addition";
+ description = "Selectors for reading and updating data";
license = stdenv.lib.licenses.bsd3;
- broken = true;
- }) {instance-control = null;};
+ }) {};
"refh" = callPackage
({ mkDerivation, base, clippard, cmdargs, directory, filepath
@@ -182466,6 +183345,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "reflex-dom-helpers" = callPackage
+ ({ mkDerivation, base, reflex, reflex-dom, template-haskell }:
+ mkDerivation {
+ pname = "reflex-dom-helpers";
+ version = "0.1.0.0";
+ sha256 = "11ca03871d79471c6aca59f7a947a0d809ed9ec5765b0c2250c510d478e2fb3b";
+ libraryHaskellDepends = [
+ base reflex reflex-dom template-haskell
+ ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/layer-3-communications/reflex-dom-helpers";
+ description = "Element tag helpers for working with reflex-dom";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"reflex-gloss" = callPackage
({ mkDerivation, base, dependent-sum, gloss, mtl, reflex
, transformers
@@ -182514,6 +183408,23 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
+ "reflex-jsx" = callPackage
+ ({ mkDerivation, base, containers, haskell-src-meta, parsec, reflex
+ , reflex-dom, template-haskell, text
+ }:
+ mkDerivation {
+ pname = "reflex-jsx";
+ version = "0.1.0.0";
+ sha256 = "a06801ba3100eb5966fb078c1e04f8c2662eb63661615aef8b54b1d31e98fde4";
+ libraryHaskellDepends = [
+ base containers haskell-src-meta parsec reflex reflex-dom
+ template-haskell text
+ ];
+ homepage = "https://github.com/dackerman/reflex-jsx";
+ description = "Use jsx-like syntax in Reflex";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"reflex-orphans" = callPackage
({ mkDerivation, base, deepseq, dependent-map, mtl, ref-tf, reflex
, tasty, tasty-hunit, these
@@ -182935,7 +183846,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "regex-tdfa" = callPackage
+ "regex-tdfa_1_2_1" = callPackage
({ mkDerivation, array, base, bytestring, containers, ghc-prim, mtl
, parsec, regex-base
}:
@@ -182949,9 +183860,10 @@ self: {
homepage = "http://hackage.haskell.org/package/regex-tdfa";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "regex-tdfa_1_2_2" = callPackage
+ "regex-tdfa" = callPackage
({ mkDerivation, array, base, bytestring, containers, ghc-prim, mtl
, parsec, regex-base
}:
@@ -182965,7 +183877,6 @@ self: {
homepage = "https://github.com/ChrisKuklewicz/regex-tdfa";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regex-tdfa-pipes" = callPackage
@@ -183519,8 +184430,8 @@ self: {
}:
mkDerivation {
pname = "relational-query";
- version = "0.8.2.0";
- sha256 = "b7cf3a04b353413c21128dec79569dab465f92d42ad918cc55e44ffe03976735";
+ version = "0.8.2.1";
+ sha256 = "f5a23508f572529d4d935293c26f38b6db8768cbaea434150a2184e342368d5e";
libraryHaskellDepends = [
array base bytestring containers dlist names-th persistable-record
sql-words template-haskell text time time-locale-compat
@@ -183571,19 +184482,23 @@ self: {
}) {};
"relational-record-examples" = callPackage
- ({ mkDerivation, base, HDBC, HDBC-session, HDBC-sqlite3, names-th
+ ({ mkDerivation, base, HDBC, HDBC-session, HDBC-sqlite3
, persistable-record, relational-query, relational-query-HDBC
- , template-haskell, time
+ , relational-schemas, template-haskell, time
}:
mkDerivation {
pname = "relational-record-examples";
- version = "0.2.0.3";
- sha256 = "3c84a71adf6493df47e6a54cd67ed83fd9c095dea8712ed63c0905ad0729f9c1";
- isLibrary = false;
+ version = "0.3.1.0";
+ sha256 = "eaf3bae14a4e05bc159efb3a8f0bc721d0fbb2d7bcea6df65002daaf93cc3352";
+ isLibrary = true;
isExecutable = true;
+ libraryHaskellDepends = [
+ base HDBC HDBC-session HDBC-sqlite3 persistable-record
+ relational-query relational-query-HDBC relational-schemas
+ template-haskell
+ ];
executableHaskellDepends = [
- base HDBC HDBC-session HDBC-sqlite3 names-th persistable-record
- relational-query relational-query-HDBC template-haskell time
+ base relational-query template-haskell time
];
description = "Examples of Haskell Relationa Record";
license = stdenv.lib.licenses.bsd3;
@@ -183595,8 +184510,8 @@ self: {
}:
mkDerivation {
pname = "relational-schemas";
- version = "0.1.2.2";
- sha256 = "aaab90384f20c5cbf3badab61b1dd7a0579acc7edcccc96af3ff07ebe9269626";
+ version = "0.1.3.0";
+ sha256 = "73a8f38827f2e346dada062f185fa351890880c74888f240bc1020037c0b68ad";
libraryHaskellDepends = [
base bytestring containers persistable-record relational-query
template-haskell time
@@ -185148,8 +186063,8 @@ self: {
pname = "rest-client";
version = "0.5.1.0";
sha256 = "9b75fb30f0f101945440c21b38d64b22a9aad81b81bce8e6a21e4675e6c8136e";
- revision = "2";
- editedCabalFile = "a95c81e43b13fd4998514f346a7b81093228886b99dc0b05e07506f44b8ae642";
+ revision = "3";
+ editedCabalFile = "71a86d947b97b59428d9314c8adf60e55995b9824886e2d11fc855fc30d92e09";
libraryHaskellDepends = [
aeson-utils base bytestring case-insensitive data-default
exceptions http-conduit http-types hxt hxt-pickle-utils
@@ -186085,6 +187000,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "rest-types_1_14_1" = callPackage
+ ({ mkDerivation, aeson, base, base-compat, case-insensitive
+ , generic-aeson, generic-xmlpickler, hxt, json-schema
+ , rest-stringmap, text, uuid
+ }:
+ mkDerivation {
+ pname = "rest-types";
+ version = "1.14.1";
+ sha256 = "a8433f4736820b19da3ac626f653954a93e72ab3c3d5a50983eed3aeffb20157";
+ libraryHaskellDepends = [
+ aeson base base-compat case-insensitive generic-aeson
+ generic-xmlpickler hxt json-schema rest-stringmap text uuid
+ ];
+ description = "Silk Rest Framework Types";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"rest-wai_0_1_0_4" = callPackage
({ mkDerivation, base, bytestring, case-insensitive, containers
, http-types, mime-types, mtl, rest-core, text
@@ -187008,12 +187941,16 @@ self: {
}) {};
"ring-buffer" = callPackage
- ({ mkDerivation, base, mtl, primitive, vector }:
+ ({ mkDerivation, base, mtl, primitive, QuickCheck, vector }:
mkDerivation {
pname = "ring-buffer";
- version = "0.1.3";
- sha256 = "3d0c0333711efb14d739e966b37bd6e3f6189125675251f87aa647398d7b2dc7";
+ version = "0.2.0";
+ sha256 = "4b4d074fbc35267d32fe1124f8346bd5c7e39f9286514b428cb0fc0198d39428";
+ revision = "1";
+ 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;
@@ -187658,6 +188595,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "roundRobin" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "roundRobin";
+ version = "0.1.0.1";
+ sha256 = "90f5e012886131801863bf00105f249d4d44250fd378beb9fc87fe13bbf0d23b";
+ libraryHaskellDepends = [ base ];
+ description = "A simple round-robin data type";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"rounding" = callPackage
({ mkDerivation, array, base, numeric-extras }:
mkDerivation {
@@ -188293,12 +189241,16 @@ self: {
}) {};
"s-cargot" = callPackage
- ({ mkDerivation, base, containers, parsec, text }:
+ ({ mkDerivation, base, containers, parsec, QuickCheck, text }:
mkDerivation {
pname = "s-cargot";
- version = "0.1.0.0";
- sha256 = "18682ea8684e704ba2abc55d699b9df0a98a2f400c3d0ace436de5b90c335a3e";
+ version = "0.1.1.1";
+ sha256 = "5ac3d9e1a58763943249b3d7ac174ff3f17dec7a7508f984b8c1efc2a1c51c60";
+ isLibrary = true;
+ isExecutable = true;
libraryHaskellDepends = [ base containers parsec text ];
+ executableHaskellDepends = [ base containers parsec text ];
+ testHaskellDepends = [ base parsec QuickCheck text ];
homepage = "https://github.com/aisamanra/s-cargot";
description = "A flexible, extensible s-expression library";
license = stdenv.lib.licenses.bsd3;
@@ -189059,6 +190011,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "sandman_0_2_0_1" = callPackage
+ ({ mkDerivation, base, Cabal, containers, directory, filepath
+ , optparse-applicative, process, text, unix-compat
+ }:
+ mkDerivation {
+ pname = "sandman";
+ version = "0.2.0.1";
+ sha256 = "407d283e1fc4a2a369615bac569683bf399ac14ddbce1331850bfe1d7837ce64";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base Cabal containers directory filepath optparse-applicative
+ process text unix-compat
+ ];
+ 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
({ mkDerivation, base, deepseq, portaudio }:
mkDerivation {
@@ -190340,8 +191312,8 @@ self: {
pname = "scotty";
version = "0.11.0";
sha256 = "892203c937ccf1279f5005ddb78ebea84629b80687a1e38fc118b38011a386ed";
- revision = "1";
- editedCabalFile = "2e46f8dbc3078a329ac2d6662f80aa48a7c0517d02978812b0d1293c8bc050dc";
+ revision = "2";
+ editedCabalFile = "d26457a20e549b7577daf798b5bd7cdfca4e6b21e39b345175b7841e7660d22e";
libraryHaskellDepends = [
aeson base blaze-builder bytestring case-insensitive
data-default-class fail http-types monad-control mtl nats network
@@ -191826,9 +192798,12 @@ self: {
pname = "semver-range";
version = "0.1.1";
sha256 = "162a7149c50908cd1669ecc16193e2a1bc5cee99bf9e78baa985550592b421d7";
+ revision = "1";
+ editedCabalFile = "f27c2457d92acc53e4fad4d66b74b2a4633838d6c32a15257902b0a677d46890";
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;
@@ -192283,6 +193258,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "serpentine" = callPackage
+ ({ mkDerivation, base, pringletons, singletons, template-haskell
+ , text, vinyl
+ }:
+ mkDerivation {
+ pname = "serpentine";
+ version = "0.2";
+ sha256 = "7b0ba5ca3e3612c824dcdf108a63b641484d9b37f9c80b21a3463245e54dedf2";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base pringletons singletons template-haskell text vinyl
+ ];
+ executableHaskellDepends = [ base singletons text ];
+ homepage = "http://github.com/githubuser/serpentine#readme";
+ description = "Simple project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"serv" = callPackage
({ mkDerivation, base, containers, http-kinder, singletons, text }:
mkDerivation {
@@ -192521,56 +193515,28 @@ self: {
({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring
, bytestring-conversion, case-insensitive, directory, doctest
, filemanip, filepath, hspec, http-api-data, http-media, http-types
- , network-uri, QuickCheck, quickcheck-instances, string-conversions
- , text, url, vault
+ , mmorph, mtl, network-uri, QuickCheck, quickcheck-instances
+ , string-conversions, text, url, vault
}:
mkDerivation {
pname = "servant";
- version = "0.6.1";
- sha256 = "830154335052270314be49644db3a88665b1910d1678ff35337a9b3caabaab3a";
+ version = "0.7.1";
+ sha256 = "e4e847df340f76172f719d7570cbf2cc59e4045aa994bb764f0ca5fd11c6126c";
libraryHaskellDepends = [
aeson attoparsec base base-compat bytestring bytestring-conversion
- case-insensitive http-api-data http-media http-types network-uri
- string-conversions text vault
+ case-insensitive http-api-data http-media http-types mmorph mtl
+ network-uri string-conversions text vault
];
testHaskellDepends = [
aeson attoparsec base bytestring directory doctest filemanip
filepath hspec QuickCheck quickcheck-instances string-conversions
text url
];
- doCheck = false;
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "A family of combinators for defining webservices APIs";
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant_0_7" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring
- , bytestring-conversion, case-insensitive, directory, doctest
- , filemanip, filepath, hspec, http-api-data, http-media, http-types
- , network-uri, QuickCheck, quickcheck-instances, string-conversions
- , text, url, vault
- }:
- mkDerivation {
- pname = "servant";
- version = "0.7";
- sha256 = "c4a61f0bb998c7e3a7dd808c64e73419e7c1b3a60e51d3cbce8cb32eb1ea3f97";
- libraryHaskellDepends = [
- aeson attoparsec base base-compat bytestring bytestring-conversion
- case-insensitive http-api-data http-media http-types network-uri
- string-conversions text vault
- ];
- testHaskellDepends = [
- aeson attoparsec base bytestring directory doctest filemanip
- filepath hspec QuickCheck quickcheck-instances string-conversions
- text url
- ];
- homepage = "http://haskell-servant.github.io/";
- description = "A family of combinators for defining webservices APIs";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-JuicyPixels_0_1_0_0" = callPackage
({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant
, servant-server, wai, warp
@@ -192695,37 +193661,22 @@ self: {
({ mkDerivation, base, blaze-html, http-media, servant }:
mkDerivation {
pname = "servant-blaze";
- version = "0.6.1";
- sha256 = "f34b45f7c15f53858034052bc0e662ce884ca2c231bc7f3fecc69bc8763f209f";
+ version = "0.7.1";
+ sha256 = "90ed1c7a22b83bee344ef3896203f3699b7633bf986ffa064752c3596c072646";
libraryHaskellDepends = [ base blaze-html http-media servant ];
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "Blaze-html support for servant";
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant-blaze_0_7" = callPackage
- ({ mkDerivation, base, blaze-html, http-media, servant }:
- mkDerivation {
- pname = "servant-blaze";
- version = "0.7";
- sha256 = "e0639a646d1ce876da88ddbcc32e99348c6e3c9b76d21fb43261b89b19dc8ebd";
- libraryHaskellDepends = [ base blaze-html http-media servant ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
- description = "Blaze-html support for servant";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-cassava" = callPackage
({ mkDerivation, base, cassava, http-media, servant, vector }:
mkDerivation {
pname = "servant-cassava";
- version = "0.7";
- sha256 = "ae4d8a51a2a6a1bafa224fd83ce7ccb7669e01e0bb19328bb09841e4e6a3a8ad";
+ version = "0.7.1";
+ sha256 = "385bf6187f86c0fb9ba39578eb132118d2ada5dd17f1d0abd6235e4e9113623d";
libraryHaskellDepends = [ base cassava http-media servant vector ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "Servant CSV content-type for cassava";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -192934,8 +193885,8 @@ self: {
}:
mkDerivation {
pname = "servant-client";
- version = "0.6.1";
- sha256 = "3b2724cd01fd60c10132b4c20384e5bc734f2e46b03db9b6a0f6d4b947decee4";
+ version = "0.7.1";
+ sha256 = "1aecf3d0d573900bc0b20e3ecadd0561d8cbaaf461efb40b213341d36396661d";
libraryHaskellDepends = [
aeson attoparsec base base64-bytestring bytestring exceptions
http-api-data http-client http-client-tls http-media http-types
@@ -192947,41 +193898,11 @@ self: {
http-types HUnit network QuickCheck servant servant-server text
transformers transformers-compat wai warp
];
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "automatical derivation of querying functions for servant webservices";
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant-client_0_7" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, base64-bytestring
- , bytestring, deepseq, exceptions, hspec, http-api-data
- , http-client, http-client-tls, http-media, http-types, HUnit
- , network, network-uri, QuickCheck, safe, servant, servant-server
- , string-conversions, text, transformers, transformers-compat, wai
- , warp
- }:
- mkDerivation {
- pname = "servant-client";
- version = "0.7";
- sha256 = "8874dc13f0256d31734e011d8fcd4ffbb38c3d25ca0514e5e9433a16d42b96cf";
- libraryHaskellDepends = [
- aeson attoparsec base base64-bytestring bytestring exceptions
- http-api-data http-client http-client-tls http-media http-types
- network-uri safe servant string-conversions text transformers
- transformers-compat
- ];
- testHaskellDepends = [
- aeson base bytestring deepseq hspec http-client http-media
- http-types HUnit network QuickCheck servant servant-server text
- transformers transformers-compat wai warp
- ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
- description = "automatical derivation of querying functions for servant webservices";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-csharp" = callPackage
({ mkDerivation, aeson, base, bytestring, directory, filepath
, heredocs, http-types, lens, mtl, servant, servant-foreign
@@ -192997,7 +193918,6 @@ 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;
@@ -193215,8 +194135,8 @@ self: {
}:
mkDerivation {
pname = "servant-docs";
- version = "0.6.1";
- sha256 = "66604bcbeee4f84847d64fb7ed127eb4f32570d16a33aa24adf2684688aae33b";
+ version = "0.7.1";
+ sha256 = "cd1a9fbcba479a9086fb562ad5c5d5921d2e4d1d079f7922ef0f3d2c75701964";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -193231,42 +194151,11 @@ self: {
testHaskellDepends = [
aeson base hspec lens servant string-conversions
];
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "generate API docs for your servant webservice";
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant-docs_0_7" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, bytestring
- , bytestring-conversion, case-insensitive, control-monad-omega
- , hashable, hspec, http-media, http-types, lens, servant
- , string-conversions, text, unordered-containers
- }:
- mkDerivation {
- pname = "servant-docs";
- version = "0.7";
- sha256 = "8bb427ae3f9633b166efa45274cfffd17e7c313a5cbe40f6e6384e746eb59fb2";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson aeson-pretty base bytestring bytestring-conversion
- case-insensitive control-monad-omega hashable http-media http-types
- lens servant string-conversions text unordered-containers
- ];
- executableHaskellDepends = [
- aeson base bytestring-conversion lens servant string-conversions
- text
- ];
- testHaskellDepends = [
- aeson base hspec lens servant string-conversions
- ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
- description = "generate API docs for your servant webservice";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-ede" = callPackage
({ mkDerivation, aeson, base, bytestring, ede, either, filepath
, http-media, http-types, semigroups, servant, servant-server, text
@@ -193310,8 +194199,7 @@ self: {
homepage = "http://github.com/mattjbray/servant-elm#readme";
description = "Automatically derive Elm functions to query servant webservices";
license = stdenv.lib.licenses.bsd3;
- broken = true;
- }) {elm-export = null;};
+ }) {};
"servant-examples" = callPackage
({ mkDerivation, aeson, base, bytestring, directory, either
@@ -193342,8 +194230,8 @@ self: {
({ mkDerivation, base, hspec, http-types, lens, servant, text }:
mkDerivation {
pname = "servant-foreign";
- version = "0.6.1";
- sha256 = "de131f3538d9e01a5c9a8c57ee85a22753fa25e80f98031e0c2947c5aca9b324";
+ version = "0.7.1";
+ sha256 = "93ee994eeb20b28a00fea5092ec34223c4826c4db6da71f4150d8a91950fb578";
libraryHaskellDepends = [ base http-types lens servant text ];
testHaskellDepends = [ base hspec ];
description = "Helpers for generating clients for servant APIs in any programming language";
@@ -193351,20 +194239,6 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "servant-foreign_0_7" = callPackage
- ({ mkDerivation, base, hspec, http-types, lens, servant, text }:
- mkDerivation {
- pname = "servant-foreign";
- version = "0.7";
- sha256 = "2c0fe064a4cd38fe73bb6133fd7d402e5b6457dd2902c76322887d6c5f0e383b";
- libraryHaskellDepends = [ base http-types lens servant text ];
- testHaskellDepends = [ base hspec ];
- jailbreak = true;
- description = "Helpers for generating clients for servant APIs in any programming language";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-github" = callPackage
({ mkDerivation, aeson, base, either, hspec, http-link-header
, QuickCheck, servant, servant-client, text, transformers
@@ -193592,8 +194466,8 @@ self: {
}:
mkDerivation {
pname = "servant-js";
- version = "0.6.1";
- sha256 = "8bafcd5632bb49346280a1922e1708e55da639c485347d0566724445e2854611";
+ version = "0.7.1";
+ sha256 = "15f4f26ffe2e9613defe30c028c43bc685f1582a6a0d97186dea5867c5cd5e89";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -193607,36 +194481,7 @@ self: {
base base-compat hspec hspec-expectations language-ecmascript lens
servant text
];
- homepage = "http://haskell-servant.github.io/";
- description = "Automatically derive javascript functions to query servant webservices";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "servant-js_0_7" = callPackage
- ({ mkDerivation, aeson, base, base-compat, charset, filepath, hspec
- , hspec-expectations, language-ecmascript, lens, servant
- , servant-foreign, servant-server, stm, text, transformers, warp
- }:
- mkDerivation {
- pname = "servant-js";
- version = "0.7";
- sha256 = "355fac0a7232a163b628194750aa47897e0bc53a57799d6b132509cf4a82be66";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base base-compat charset lens servant-foreign text
- ];
- executableHaskellDepends = [
- aeson base filepath lens servant servant-server stm transformers
- warp
- ];
- testHaskellDepends = [
- base base-compat hspec hspec-expectations language-ecmascript lens
- servant text
- ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
+ 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;
@@ -193646,11 +194491,10 @@ self: {
({ mkDerivation, base, http-media, lucid, servant }:
mkDerivation {
pname = "servant-lucid";
- version = "0.7";
- sha256 = "6a1dc36d919763d0793e21dca873038ececfaa386e792ac8d70c597ef94e74a4";
+ version = "0.7.1";
+ sha256 = "ec26ba7d159b09be10beacf6242f6ae1bd111e9c738bfbf3cf2f560f48e0fe40";
libraryHaskellDepends = [ base http-media lucid servant ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "Servant support for lucid";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -193662,8 +194506,8 @@ self: {
}:
mkDerivation {
pname = "servant-mock";
- version = "0.6.1";
- sha256 = "c612d546f82f0b633cab8396c71583f0866034abd9c3f2462fce3faec9006621";
+ version = "0.7.1";
+ sha256 = "e9bec220198a9c9ae67782d88870ea4002562ad20eb6302b5f5a4d6f9752a169";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -193682,34 +194526,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant-mock_0_7" = callPackage
- ({ mkDerivation, aeson, base, bytestring, bytestring-conversion
- , hspec, hspec-wai, http-types, QuickCheck, servant, servant-server
- , transformers, wai, warp
- }:
- mkDerivation {
- pname = "servant-mock";
- version = "0.7";
- sha256 = "42065734878eabbb2cd424737bab0e1dd3ff99eddace93c9c0953f59a42dc55d";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring http-types QuickCheck servant servant-server
- transformers wai
- ];
- executableHaskellDepends = [
- aeson base QuickCheck servant-server warp
- ];
- testHaskellDepends = [
- aeson base bytestring-conversion hspec hspec-wai QuickCheck servant
- servant-server wai
- ];
- homepage = "http://github.com/haskell-servant/servant";
- description = "Derive a mock server for free from your servant API types";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-pandoc_0_4_1_1" = callPackage
({ mkDerivation, base, bytestring, http-media, lens, pandoc-types
, servant-docs, text, unordered-containers
@@ -193802,7 +194618,6 @@ 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;
}) {};
@@ -193821,6 +194636,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-router" = callPackage
+ ({ mkDerivation, base, bytestring, http-api-data, http-types, mtl
+ , network-uri, servant, text
+ }:
+ mkDerivation {
+ pname = "servant-router";
+ version = "0.7.1";
+ sha256 = "32498fadd0bfd0adf5bcddb79538e45a1a9807b3cbb7ad2ac3358eab2673f826";
+ libraryHaskellDepends = [
+ base bytestring http-api-data http-types mtl network-uri servant
+ text
+ ];
+ testHaskellDepends = [ base mtl servant ];
+ homepage = "https://github.com/ElvishJerricco/servant-router";
+ description = "Servant router for non-server applications";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"servant-scotty" = callPackage
({ mkDerivation, aeson, base, http-types, scotty, servant
, servant-response, text, transformers
@@ -194110,21 +194943,21 @@ self: {
({ mkDerivation, aeson, attoparsec, base, base-compat
, base64-bytestring, bytestring, bytestring-conversion, containers
, directory, doctest, exceptions, filemanip, filepath, hspec
- , hspec-wai, http-api-data, http-types, mmorph, mtl, network
- , network-uri, parsec, QuickCheck, safe, servant
- , should-not-typecheck, split, string-conversions, system-filepath
- , temporary, text, transformers, transformers-compat, wai
- , wai-app-static, wai-extra, warp, word8
+ , hspec-wai, http-api-data, http-types, mtl, network, network-uri
+ , parsec, QuickCheck, safe, servant, should-not-typecheck, split
+ , string-conversions, system-filepath, temporary, text
+ , transformers, transformers-compat, wai, wai-app-static, wai-extra
+ , warp, word8
}:
mkDerivation {
pname = "servant-server";
- version = "0.6.1";
- sha256 = "4d1b0871008945009bf4d4756108cc1376edbd08e49ce96d9c1365d9b382ec07";
+ version = "0.7.1";
+ sha256 = "ba4f10cc14c216cf27e08cae7e7cbb717930400e46dbecc9b8354751584909eb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base base-compat base64-bytestring bytestring
- containers filepath http-api-data http-types mmorph mtl network
+ containers filepath http-api-data http-types mtl network
network-uri safe servant split string-conversions system-filepath
text transformers transformers-compat wai wai-app-static warp word8
];
@@ -194136,48 +194969,11 @@ self: {
safe servant should-not-typecheck string-conversions temporary text
transformers transformers-compat wai wai-extra warp
];
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "A family of combinators for defining webservices APIs and serving them";
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant-server_0_7" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, base-compat
- , base64-bytestring, bytestring, bytestring-conversion, containers
- , directory, doctest, exceptions, filemanip, filepath, hspec
- , hspec-wai, http-api-data, http-types, mmorph, mtl, network
- , network-uri, parsec, QuickCheck, safe, servant
- , should-not-typecheck, split, string-conversions, system-filepath
- , temporary, text, transformers, transformers-compat, wai
- , wai-app-static, wai-extra, warp, word8
- }:
- mkDerivation {
- pname = "servant-server";
- version = "0.7";
- sha256 = "ea58c79d6ac65d0beda9e64c1cde420d77a355be4cab0b48738ccf3adad4eb0b";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson attoparsec base base-compat base64-bytestring bytestring
- containers filepath http-api-data http-types mmorph mtl network
- network-uri safe servant split string-conversions system-filepath
- text transformers transformers-compat wai wai-app-static warp word8
- ];
- executableHaskellDepends = [ aeson base servant text wai warp ];
- testHaskellDepends = [
- aeson base base-compat base64-bytestring bytestring
- bytestring-conversion directory doctest exceptions filemanip
- filepath hspec hspec-wai http-types mtl network parsec QuickCheck
- safe servant should-not-typecheck string-conversions temporary text
- transformers transformers-compat wai wai-extra warp
- ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
- description = "A family of combinators for defining webservices APIs and serving them";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-swagger_0_1_1" = callPackage
({ mkDerivation, aeson, aeson-qq, base, bytestring, hspec
, http-media, lens, servant, swagger2, text, time
@@ -194258,8 +195054,8 @@ self: {
pname = "servant-yaml";
version = "0.1.0.0";
sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204";
- revision = "6";
- editedCabalFile = "a9fa85d3e31c0057aa1144044436cc833a1a46165760b03e00e4c23bce578cb0";
+ revision = "7";
+ editedCabalFile = "9a296b06cf199ab8e8ff19172601c239c77d885196a258ee5f4eaac4ebe34e66";
libraryHaskellDepends = [
base bytestring http-media servant yaml
];
@@ -194542,6 +195338,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "servius_1_2_0_2" = callPackage
+ ({ mkDerivation, base, blaze-builder, blaze-html, bytestring
+ , http-types, markdown, shakespeare, text, wai, wai-app-static
+ }:
+ mkDerivation {
+ pname = "servius";
+ version = "1.2.0.2";
+ sha256 = "c11682eb485f028aaf2dc6abdbda38cc5a68fd57521cc3ffb5b56b765e9b5d2b";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base blaze-builder blaze-html bytestring http-types markdown
+ shakespeare text wai wai-app-static
+ ];
+ 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
({ mkDerivation, base, base64-bytestring, blaze-html, byteable
, bytestring, cryptohash, HsOpenSSL, http-streams, tagsoup, time
@@ -194725,6 +195541,7 @@ self: {
isExecutable = true;
libraryHaskellDepends = [ base random vty ];
executableHaskellDepends = [ base ];
+ jailbreak = true;
description = "A console interface to the game of Set";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -194788,6 +195605,8 @@ self: {
pname = "setters";
version = "0.1";
sha256 = "5f2820de0e25847ace980132c04913c7ec61333e2b20cce49e2062765caa8967";
+ revision = "1";
+ editedCabalFile = "c4ff7321208bb4f71ea367d5a1811d7c13aadda0d05a1d9ddb25fff5e31c9365";
libraryHaskellDepends = [ base mtl template-haskell ];
description = "Small (TH) library to declare setters for typical `record' data type fields";
license = stdenv.lib.licenses.bsd3;
@@ -196547,6 +197366,8 @@ self: {
pname = "shelly";
version = "1.6.6";
sha256 = "9c89e1ed25de9ede0ee6d6a4094ff72ca6af5b1a1f67503ea40a87beb796e1c5";
+ revision = "1";
+ editedCabalFile = "cfea5fb2615eb1f4833a368d051db2065d02aa4a5ff7578c5323f65ba9298894";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -196859,22 +197680,25 @@ self: {
}) {};
"sifflet" = callPackage
- ({ mkDerivation, base, cairo, containers, directory, fgl, filepath
- , glib, gtk, hxt, mtl, parsec, process, sifflet-lib, unix
+ ({ mkDerivation, base, Cabal, cairo, containers, directory, fgl
+ , filepath, glib, gtk, HUnit, hxt, mtl, parsec, process, text, unix
}:
mkDerivation {
pname = "sifflet";
- version = "2.2.1";
- sha256 = "927045ed0cd2e524db59361f80bebba48d9a2d79bc9bdcf2166bcfa043d25075";
- isLibrary = false;
+ version = "2.3.0";
+ sha256 = "0415b97daa7be921421716fbda8e5ab8138f707b636b0a45db5580df842d0ed4";
+ isLibrary = true;
isExecutable = true;
- executableHaskellDepends = [
+ libraryHaskellDepends = [
base cairo containers directory fgl filepath glib gtk hxt mtl
- parsec process sifflet-lib unix
+ parsec process text unix
];
- jailbreak = true;
- homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/";
- description = "A simple, visual, functional programming language";
+ executableHaskellDepends = [ base unix ];
+ testHaskellDepends = [
+ base Cabal cairo containers fgl HUnit parsec process
+ ];
+ 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;
}) {};
@@ -197294,16 +198118,16 @@ self: {
"simple-log" = callPackage
({ mkDerivation, async, base, containers, deepseq, directory
- , filepath, MonadCatchIO-transformers, mtl, SafeSemaphore, text
- , time, transformers
+ , exceptions, filepath, mtl, SafeSemaphore, text, time
+ , transformers
}:
mkDerivation {
pname = "simple-log";
- version = "0.3.4";
- sha256 = "7d81fdfb91a2ee88d73dc4a5680be4f0e8b44faa460ce15d41a33d3a975c84f9";
+ version = "0.4.0";
+ sha256 = "548c444505f70beb02b14b5b1e0c647acaa1879edc5699ef365ec516a9b55aa5";
libraryHaskellDepends = [
- async base containers deepseq directory filepath
- MonadCatchIO-transformers mtl SafeSemaphore text time transformers
+ async base containers deepseq directory exceptions filepath mtl
+ SafeSemaphore text time transformers
];
homepage = "http://github.com/mvoidex/simple-log";
description = "Simple log for Haskell";
@@ -197495,7 +198319,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "simple-sendfile" = callPackage
+ "simple-sendfile_0_2_21" = callPackage
({ mkDerivation, base, bytestring, conduit, conduit-extra
, directory, hspec, HUnit, network, process, resourcet, unix
}:
@@ -197511,6 +198335,44 @@ self: {
doCheck = false;
description = "Cross platform library for the sendfile system call";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "simple-sendfile_0_2_23" = callPackage
+ ({ mkDerivation, base, bytestring, conduit, conduit-extra
+ , directory, hspec, HUnit, network, process, resourcet, unix
+ }:
+ mkDerivation {
+ pname = "simple-sendfile";
+ version = "0.2.23";
+ sha256 = "75316d58bb67fe49decb8bff6dbf1dd90dbcfef2f14f9a4737b677152243f6b4";
+ libraryHaskellDepends = [ base bytestring network unix ];
+ testHaskellDepends = [
+ base bytestring conduit conduit-extra directory hspec HUnit network
+ process resourcet unix
+ ];
+ doCheck = false;
+ description = "Cross platform library for the sendfile system call";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "simple-sendfile" = callPackage
+ ({ mkDerivation, base, bytestring, conduit, conduit-extra
+ , directory, hspec, HUnit, network, process, resourcet, unix
+ }:
+ mkDerivation {
+ pname = "simple-sendfile";
+ version = "0.2.24";
+ sha256 = "9f68a51a58db42e79f50bf2f500bd25d66a848a242b8e4694c2fdc94d476925c";
+ libraryHaskellDepends = [ base bytestring network unix ];
+ testHaskellDepends = [
+ base bytestring conduit conduit-extra directory hspec HUnit network
+ process resourcet unix
+ ];
+ doCheck = false;
+ description = "Cross platform library for the sendfile system call";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"simple-server" = callPackage
@@ -197994,6 +198856,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "singletons_2_1" = callPackage
+ ({ mkDerivation, base, Cabal, containers, directory, filepath, mtl
+ , process, syb, tasty, tasty-golden, template-haskell, th-desugar
+ }:
+ mkDerivation {
+ pname = "singletons";
+ version = "2.1";
+ sha256 = "b9b294ba36b62cf77104600b436269bda0087497c010f2fb295bea1fec1a412c";
+ libraryHaskellDepends = [
+ base containers mtl syb template-haskell th-desugar
+ ];
+ testHaskellDepends = [
+ base Cabal directory filepath process tasty tasty-golden
+ ];
+ jailbreak = true;
+ 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
({ mkDerivation, base }:
mkDerivation {
@@ -198079,8 +198962,8 @@ self: {
pname = "sized-types";
version = "0.5.1";
sha256 = "c76772fc89028f5407906bc699e7dd98e02328d0fe98c151706100e49f4899db";
- revision = "1";
- editedCabalFile = "b6a0520904cba8a44505d78d4188a94ccdf67be3c376c0cbd49c92e07943d17c";
+ revision = "2";
+ editedCabalFile = "5fb95524f6e6156ba969609e60f55ded8817bbad8c26ce610002e02b8d987152";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -198394,8 +199277,8 @@ self: {
}:
mkDerivation {
pname = "slack-api";
- version = "0.7";
- sha256 = "2352c9ab62358547243620220c56836df20fb40e090e0234f643dda0460c90a2";
+ version = "0.8";
+ sha256 = "ebc98de706cb40a19ac2295c2129263240696f27412f8bcadf5816787b3cb446";
libraryHaskellDepends = [
aeson base bytestring containers errors HsOpenSSL io-streams lens
lens-aeson monad-loops mtl network network-uri openssl-streams text
@@ -199057,7 +199940,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "smtLib" = callPackage
+ "smtLib_1_0_7" = callPackage
({ mkDerivation, base, pretty }:
mkDerivation {
pname = "smtLib";
@@ -199068,9 +199951,10 @@ self: {
libraryHaskellDepends = [ base pretty ];
description = "A library for working with the SMTLIB format";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "smtLib_1_0_8" = callPackage
+ "smtLib" = callPackage
({ mkDerivation, base, pretty }:
mkDerivation {
pname = "smtLib";
@@ -199079,7 +199963,6 @@ self: {
libraryHaskellDepends = [ base pretty ];
description = "A library for working with the SMTLIB format";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"smtlib2" = callPackage
@@ -199838,6 +200721,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "snap-routes" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring, containers
+ , filepath, http-types, mime-types, path-pieces, random, snap
+ , template-haskell, text
+ }:
+ mkDerivation {
+ pname = "snap-routes";
+ version = "0.0.1";
+ sha256 = "5ec5bff04474aef1d89318f9bc01fe8ef166f0a09c6c35b7b5003aca312afbcb";
+ libraryHaskellDepends = [
+ base blaze-builder bytestring containers filepath http-types
+ mime-types path-pieces random snap template-haskell text
+ ];
+ description = "Typesafe URLs for Snap applications";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"snap-server_0_9_4_5" = callPackage
({ mkDerivation, attoparsec, attoparsec-enumerator, base
, blaze-builder, blaze-builder-enumerator, bytestring
@@ -201269,6 +202169,8 @@ self: {
pname = "socket";
version = "0.5.3.1";
sha256 = "d32a2ac77d54ce74507cc24d0bf68a719ea67ee961c61d367bfb9f0010e9c044";
+ revision = "1";
+ editedCabalFile = "ce27df183e3917eb8b747fb31c06bb0724405c35498ba5d6c143ef53d8d65ec1";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [ async base bytestring ];
homepage = "https://github.com/lpeterse/haskell-socket";
@@ -201579,7 +202481,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "sorted-list" = callPackage
+ "sorted-list_0_1_4_2" = callPackage
({ mkDerivation, base, deepseq }:
mkDerivation {
pname = "sorted-list";
@@ -201589,6 +202491,19 @@ 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" = callPackage
+ ({ mkDerivation, base, deepseq }:
+ mkDerivation {
+ pname = "sorted-list";
+ version = "0.1.5.0";
+ sha256 = "e19bde4d9b22ce127bbf2fd194fd4854576c2f5b275620be3a4fdb29bcd479a0";
+ 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
@@ -203034,6 +203949,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "sscript" = callPackage
+ ({ mkDerivation, base, hspec }:
+ mkDerivation {
+ pname = "sscript";
+ version = "0.1.0.2";
+ sha256 = "c07c16c227b9dba9fb56262efcaa4e185fbf0dc5757e969b763c4a5000caf1da";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base hspec ];
+ homepage = "https://github.com/khalilfazal/sscript#readme";
+ description = "Formats Strings with subscript or superscript characters";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ssh" = callPackage
({ mkDerivation, asn1-encoding, asn1-types, base, base64-string
, binary, bytestring, cereal, containers, crypto-api
@@ -203951,46 +204879,48 @@ self: {
"stack" = callPackage
({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base
- , base16-bytestring, base64-bytestring, binary, binary-tagged
- , blaze-builder, byteable, bytestring, Cabal, conduit
- , conduit-extra, containers, cryptohash, cryptohash-conduit
- , deepseq, directory, edit-distance, either, enclosed-exceptions
- , errors, exceptions, extra, fast-logger, filelock, filepath
- , fsnotify, gitrev, hashable, hastache, hpack, hpc, hspec
- , http-client, http-client-tls, http-conduit, http-types
- , lifted-base, microlens, monad-control, monad-logger, mtl
- , open-browser, optparse-applicative, optparse-simple, path
- , path-io, persistent, persistent-sqlite, persistent-template
- , pretty, process, project-template, QuickCheck, resourcet, retry
- , safe, semigroups, split, stm, streaming-commons, tar
- , template-haskell, temporary, text, text-binary, time
+ , base-compat, base16-bytestring, base64-bytestring, binary
+ , binary-tagged, blaze-builder, byteable, bytestring, Cabal
+ , conduit, conduit-extra, containers, cryptohash
+ , cryptohash-conduit, deepseq, directory, edit-distance, either
+ , enclosed-exceptions, errors, exceptions, extra, fast-logger
+ , filelock, filepath, fsnotify, generic-deriving, gitrev, hashable
+ , hastache, hit, hpack, hpc, hspec, http-client, http-client-tls
+ , http-conduit, http-types, lifted-base, microlens, monad-control
+ , monad-logger, monad-unlift, mtl, open-browser
+ , optparse-applicative, optparse-simple, path, path-io, persistent
+ , persistent-sqlite, persistent-template, pretty, process
+ , project-template, QuickCheck, regex-applicative-text, resourcet
+ , retry, safe, semigroups, split, stm, streaming-commons, tar
+ , template-haskell, temporary, text, text-binary, time, tls
, transformers, transformers-base, unix, unix-compat
, unordered-containers, vector, vector-binary-instances, yaml
, zip-archive, zlib
}:
mkDerivation {
pname = "stack";
- version = "1.1.0";
- sha256 = "58cce7048438bc452a81384493b4644034d5a0b456acd51bf7c19098a9cf406a";
- revision = "1";
- editedCabalFile = "6ea3e00f37c34ddbb05c71a6cf0db9c7d8cedcf48f16be66e347e02b4357b0c4";
+ version = "1.1.2";
+ sha256 = "fc836b24fdeac54244fc79b6775d5edee146b7e552ad8e69596c7cc2f2b10625";
+ revision = "2";
+ editedCabalFile = "dd075d659ecf05d8d9e811d12b60b523d189b6b1d520aa1a86e58b382aba6384";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson ansi-terminal async attoparsec base base16-bytestring
- base64-bytestring binary binary-tagged blaze-builder byteable
- bytestring Cabal conduit conduit-extra containers cryptohash
- cryptohash-conduit deepseq directory edit-distance either
- enclosed-exceptions errors exceptions extra fast-logger filelock
- filepath fsnotify hashable hastache hpack hpc http-client
- http-client-tls http-conduit http-types lifted-base microlens
- monad-control monad-logger mtl open-browser optparse-applicative
- path path-io persistent persistent-sqlite persistent-template
- pretty process project-template resourcet retry safe semigroups
- split stm streaming-commons tar template-haskell temporary text
- text-binary time transformers transformers-base unix unix-compat
- unordered-containers vector vector-binary-instances yaml
- zip-archive zlib
+ aeson ansi-terminal async attoparsec base base-compat
+ base16-bytestring base64-bytestring binary binary-tagged
+ blaze-builder byteable bytestring Cabal conduit conduit-extra
+ containers cryptohash cryptohash-conduit deepseq directory
+ edit-distance either enclosed-exceptions errors exceptions extra
+ fast-logger filelock filepath fsnotify generic-deriving hashable
+ hastache hit hpack hpc http-client http-client-tls http-conduit
+ http-types lifted-base microlens monad-control monad-logger
+ monad-unlift mtl open-browser optparse-applicative path path-io
+ persistent persistent-sqlite persistent-template pretty process
+ project-template regex-applicative-text resourcet retry safe
+ semigroups split stm streaming-commons tar template-haskell
+ temporary text text-binary time tls transformers transformers-base
+ unix unix-compat unordered-containers vector
+ vector-binary-instances yaml zip-archive zlib
];
executableHaskellDepends = [
base bytestring Cabal containers directory filelock filepath gitrev
@@ -204049,13 +204979,12 @@ self: {
}:
mkDerivation {
pname = "stack-prism";
- version = "0.1.4";
- sha256 = "4020440962715bf1dd4987d6b96c865a1de3e9d5f26aebd0ab87e9bfa61584d3";
+ version = "0.1.5";
+ sha256 = "ead22ecccaa5110b9ceba98077a5101e97ac21675f9d74ff01df4a01cd41540f";
libraryHaskellDepends = [
base profunctors tagged template-haskell transformers
];
testHaskellDepends = [ base template-haskell ];
- jailbreak = true;
homepage = "https://github.com/MedeaMelana/stack-prism";
description = "Stack prisms";
license = stdenv.lib.licenses.bsd3;
@@ -205126,6 +206055,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "stateWriter_0_2_8" = callPackage
+ ({ mkDerivation, base, free, hspec, mtl, QuickCheck, transformers
+ }:
+ mkDerivation {
+ pname = "stateWriter";
+ version = "0.2.8";
+ sha256 = "dbed209ec350b751b2c56388ab751149874f6b76c0d7a6725de1583682ccc6e2";
+ libraryHaskellDepends = [ base mtl transformers ];
+ 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
({ mkDerivation, base, polyparse }:
mkDerivation {
@@ -206034,18 +206977,20 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "stm-containers" = callPackage
- ({ mkDerivation, base-prelude, focus, free, hashable, HTF, list-t
- , loch-th, mtl, mtl-prelude, placeholders, primitive, QuickCheck
- , transformers, unordered-containers
+ "stm-containers_0_2_10" = callPackage
+ ({ mkDerivation, base, base-prelude, focus, free, hashable, HTF
+ , list-t, loch-th, mtl, mtl-prelude, placeholders, primitive
+ , QuickCheck, transformers, unordered-containers
}:
mkDerivation {
pname = "stm-containers";
version = "0.2.10";
sha256 = "1dd724fda2456279d2bf70b8666eb1f87604776932b452f3b097236ad1533e6d";
+ revision = "1";
+ editedCabalFile = "0e879ab4d7fc5ef981e11343eed75760bccbe2f93ea876d3e1fab9cd6e8cf46f";
libraryHaskellDepends = [
- base-prelude focus hashable list-t loch-th placeholders primitive
- transformers
+ base base-prelude focus hashable list-t loch-th placeholders
+ primitive transformers
];
testHaskellDepends = [
base-prelude focus free hashable HTF list-t loch-th mtl mtl-prelude
@@ -206055,6 +207000,55 @@ 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" = callPackage
+ ({ mkDerivation, base, base-prelude, focus, free, hashable, HTF
+ , list-t, loch-th, mtl, mtl-prelude, placeholders, primitive
+ , QuickCheck, transformers, unordered-containers
+ }:
+ mkDerivation {
+ pname = "stm-containers";
+ version = "0.2.11";
+ sha256 = "f7eff1833da6c9ad18a5301912bbb477216347d7940f6495d398fbdedee27f8e";
+ revision = "1";
+ editedCabalFile = "78f0d160b53c64c755e21e477bbc5b0721bcd8548358556ff590791edf4da0cb";
+ libraryHaskellDepends = [
+ 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
+ ];
+ doCheck = false;
+ homepage = "https://github.com/nikita-volkov/stm-containers";
+ description = "Containers for STM";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "stm-containers_0_2_13" = callPackage
+ ({ mkDerivation, base, base-prelude, focus, free, hashable, HTF
+ , list-t, loch-th, mtl, mtl-prelude, placeholders, primitive
+ , QuickCheck, transformers, unordered-containers
+ }:
+ mkDerivation {
+ pname = "stm-containers";
+ version = "0.2.13";
+ sha256 = "ba38ce4c8438071fad33d69902e2a8637ec53aec2175b0c88b1de8af02db4b1c";
+ libraryHaskellDepends = [
+ 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
+ ];
+ 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
@@ -206292,8 +207286,8 @@ self: {
({ mkDerivation, base, clock, hspec, transformers }:
mkDerivation {
pname = "stopwatch";
- version = "0.1.0.1";
- sha256 = "647e89db9b9b23631c751b6d73cdee124b86c1768186d3a572ba6951a57c46da";
+ version = "0.1.0.2";
+ sha256 = "f9f0897702a3b5cb3cd7ef8960caa4733fef3273dab0c91f6f6da3d956e0489b";
libraryHaskellDepends = [ base clock transformers ];
testHaskellDepends = [ base clock hspec ];
homepage = "https://github.com/debug-ito/stopwatch";
@@ -206450,6 +207444,40 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "store" = callPackage
+ ({ mkDerivation, array, base, base-orphans, bytestring, conduit
+ , containers, cryptohash, deepseq, fail, ghc-prim, hashable, hspec
+ , hspec-smallcheck, integer-gmp, lifted-base, monad-control
+ , mono-traversable, primitive, resourcet, safe, semigroups
+ , smallcheck, syb, template-haskell, text, th-lift
+ , th-lift-instances, th-orphans, th-reify-many, th-utilities, time
+ , transformers, unordered-containers, vector, void
+ }:
+ mkDerivation {
+ pname = "store";
+ version = "0.1.0.1";
+ sha256 = "2f7bae795eec86374f1d55edfd9705beb493399a4f85979eec7a366b5ab2bfa2";
+ libraryHaskellDepends = [
+ array base base-orphans bytestring conduit containers cryptohash
+ deepseq fail ghc-prim hashable hspec hspec-smallcheck integer-gmp
+ lifted-base monad-control mono-traversable primitive resourcet safe
+ semigroups smallcheck syb template-haskell text th-lift
+ th-lift-instances th-orphans th-reify-many th-utilities time
+ transformers unordered-containers vector void
+ ];
+ testHaskellDepends = [
+ array base base-orphans bytestring conduit containers cryptohash
+ deepseq fail ghc-prim hashable hspec hspec-smallcheck integer-gmp
+ lifted-base monad-control mono-traversable primitive resourcet safe
+ semigroups smallcheck syb template-haskell text th-lift
+ th-lift-instances th-orphans th-reify-many th-utilities time
+ transformers unordered-containers vector void
+ ];
+ homepage = "https://github.com/fpco/store#readme";
+ description = "Fast binary serialization";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"str" = callPackage
({ mkDerivation, base, base16-bytestring, bytestring, Crypto
, hashable, MissingH, text, utf8-string
@@ -206469,14 +207497,14 @@ self: {
}) {};
"stratosphere" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, bytestring, ede, hlint
- , lens, system-fileio, system-filepath, tasty, tasty-hspec
- , template-haskell, text, unordered-containers
+ ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory
+ , ede, hlint, lens, system-fileio, system-filepath, tasty
+ , tasty-hspec, template-haskell, text, unordered-containers
}:
mkDerivation {
pname = "stratosphere";
- version = "0.1.0";
- sha256 = "4cc6816f1196fcf59d774f0267268935c7bbdf5d8953b8e0ebe1b92d5cb51d15";
+ version = "0.1.1";
+ sha256 = "2679f57659e9ed8d1ab2822b76d521b0692e3f21e1110bf21df432caa3a5dbc2";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -206488,9 +207516,9 @@ self: {
system-filepath template-haskell text unordered-containers
];
testHaskellDepends = [
- aeson aeson-pretty base bytestring ede hlint lens system-fileio
- system-filepath tasty tasty-hspec template-haskell text
- unordered-containers
+ aeson aeson-pretty base bytestring directory ede hlint lens
+ system-fileio system-filepath tasty tasty-hspec template-haskell
+ text unordered-containers
];
homepage = "https://github.com/frontrowed/stratosphere#readme";
description = "EDSL for AWS CloudFormation";
@@ -207004,7 +208032,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "streaming-commons" = callPackage
+ "streaming-commons_0_1_15_4" = callPackage
({ mkDerivation, array, async, base, blaze-builder, bytestring
, deepseq, directory, hspec, network, process, QuickCheck, random
, stm, text, transformers, unix, zlib
@@ -207024,6 +208052,29 @@ self: {
homepage = "https://github.com/fpco/streaming-commons";
description = "Common lower-level functions needed by various streaming data libraries";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "streaming-commons" = callPackage
+ ({ mkDerivation, array, async, base, blaze-builder, bytestring
+ , deepseq, directory, hspec, network, process, QuickCheck, random
+ , stm, text, transformers, unix, zlib
+ }:
+ mkDerivation {
+ pname = "streaming-commons";
+ version = "0.1.15.5";
+ sha256 = "7cdab71a7c696310bcac376dd9d7a1f8debd881198fc511b9140f853f6925389";
+ libraryHaskellDepends = [
+ array async base blaze-builder bytestring directory network process
+ random stm text transformers unix zlib
+ ];
+ testHaskellDepends = [
+ array async base blaze-builder bytestring deepseq hspec network
+ QuickCheck text unix zlib
+ ];
+ homepage = "https://github.com/fpco/streaming-commons";
+ description = "Common lower-level functions needed by various streaming data libraries";
+ license = stdenv.lib.licenses.mit;
}) {};
"streaming-histogram" = callPackage
@@ -207724,6 +208775,19 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "structural-traversal" = callPackage
+ ({ mkDerivation, base, HUnit, mtl, template-haskell }:
+ mkDerivation {
+ pname = "structural-traversal";
+ version = "0.1.0.0";
+ sha256 = "790057b83c3abd981f25554fb583e598bff4208be727bbd350ad1e83fbcef857";
+ libraryHaskellDepends = [ base mtl template-haskell ];
+ testHaskellDepends = [ base HUnit mtl ];
+ homepage = "http://github.com/nboldi/structural-traversal#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"structured-haskell-mode" = callPackage
({ mkDerivation, applicative-quoters, base, descriptive, ghc-prim
, haskell-src-exts, text
@@ -208323,6 +209387,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "subwordgraph" = callPackage
+ ({ mkDerivation, base, containers, mtl, QuickCheck }:
+ mkDerivation {
+ pname = "subwordgraph";
+ version = "1.0.0";
+ sha256 = "e662eec910320fb4dd017ff40fa24bd7f050991d5bfea64de0632670d296c26d";
+ libraryHaskellDepends = [ base containers mtl ];
+ testHaskellDepends = [ base containers mtl QuickCheck ];
+ homepage = "https://github.com/danielnowakowski/Subword-Graph";
+ description = "Subword graph implementation";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"success_0_2_4" = callPackage
({ mkDerivation, base, monad-control, mtl, transformers
, transformers-base
@@ -208836,8 +209913,8 @@ self: {
}:
mkDerivation {
pname = "svgcairo";
- version = "0.13.0.4";
- sha256 = "a366bb2592d9bd398183eefc9407442cfeaddd5b39e9f898081c788c691126a6";
+ version = "0.13.1.0";
+ sha256 = "055adbb80d21091be3703215f1d210f5b40c762adc8450a45a9a39bdc20315a5";
libraryHaskellDepends = [ base cairo glib mtl text ];
libraryPkgconfigDepends = [ librsvg ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -209109,6 +210186,7 @@ self: {
base containers hashable HUnit network-uri old-locale semigroups
test-framework test-framework-hunit text time
];
+ jailbreak = true;
homepage = "https://bitbucket.org/doug_burke/swish/wiki/Home";
description = "A semantic web toolkit";
license = "LGPL";
@@ -210271,18 +211349,20 @@ self: {
}) {};
"system-test" = callPackage
- ({ mkDerivation, aeson, ansi-terminal, base, bytestring, process
- , text
+ ({ mkDerivation, aeson, ansi-terminal, base, bytestring, HUnit
+ , process, text
}:
mkDerivation {
pname = "system-test";
- version = "0.1.1";
- sha256 = "d7c3118a4592a96cb9869ee8d1f5eb67d593a6d9e88dba8fad9998a3132bbf56";
- isLibrary = false;
+ version = "0.1.2";
+ sha256 = "02b14ebb4d0291f658f52ea3117ef47b6025859cadd7593eff1b5d37833b0641";
+ isLibrary = true;
isExecutable = true;
- executableHaskellDepends = [
+ libraryHaskellDepends = [
aeson ansi-terminal base bytestring process text
];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [ base HUnit ];
homepage = "https://github.com/ExcaliburZero/system-test-haskell";
description = "Runs system tests of applications";
license = stdenv.lib.licenses.mit;
@@ -210485,8 +211565,8 @@ self: {
}:
mkDerivation {
pname = "table-layout";
- version = "0.5.2.0";
- sha256 = "5000afb85689a2b1e9141887bdf8d589a0cb6a9026ce600be269f856f27a88d3";
+ version = "0.6.0.0";
+ sha256 = "383291677ebb039ae83bc4deebc39bdb9cec5b910e6ac5053bbeab1abf80d10c";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -212536,18 +213616,25 @@ self: {
}) {};
"telegram-api" = callPackage
- ({ mkDerivation, aeson, base, either, hspec, http-types, servant
- , servant-client, text
+ ({ 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.3.0.0";
- sha256 = "f32039ab9d0a6090c32a0b5d3c1ed83c6ecadf784cd97de680dce33eb52b880a";
+ version = "0.4.2.0";
+ sha256 = "ba0d6b7e2e7461d7eeb6182ef1c38ee445a657f23469ea844e827c3dcfaef62e";
libraryHaskellDepends = [
- aeson base either servant servant-client text
+ aeson base bytestring either http-api-data http-client http-media
+ http-types mime-types servant servant-client string-conversions
+ text transformers
];
testHaskellDepends = [
- base hspec http-types servant servant-client text
+ 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";
@@ -212664,13 +213751,13 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "template-haskell_2_10_0_0" = callPackage
- ({ mkDerivation, base, pretty }:
+ "template-haskell_2_11_0_0" = callPackage
+ ({ mkDerivation, base, ghc-boot-th, pretty }:
mkDerivation {
pname = "template-haskell";
- version = "2.10.0.0";
- sha256 = "358a3818d04fde27dd44f2c6d24b409031839ee5da2c9ec34b16257fd78c0df8";
- libraryHaskellDepends = [ base pretty ];
+ version = "2.11.0.0";
+ sha256 = "e7bddc18f980f6b8a589a2c4d5e6dd3e1d76e533321cb7ad22afb7242269f6d4";
+ libraryHaskellDepends = [ base ghc-boot-th pretty ];
description = "Support library for Template Haskell";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -213219,6 +214306,18 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "test-fixture" = callPackage
+ ({ mkDerivation, base, mtl }:
+ mkDerivation {
+ pname = "test-fixture";
+ version = "0.1.0.0";
+ sha256 = "2349b01c2d29c6645055155c4f0fade1d539a9909ba6a41edf4c0550b97e2459";
+ libraryHaskellDepends = [ base mtl ];
+ homepage = "http://github.com/cjdev/test-fixture#readme";
+ description = "Test monadic typeclasses deterministically using hooks";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"test-framework_0_8_0_3" = callPackage
({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, containers
, hostname, old-locale, random, regex-posix, time, xml
@@ -213656,6 +214755,26 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "testbench" = callPackage
+ ({ mkDerivation, base, boxes, bytestring, containers, criterion
+ , deepseq, HUnit, statistics, transformers
+ }:
+ mkDerivation {
+ pname = "testbench";
+ version = "0.1.0.0";
+ sha256 = "66592406ff6e1a03d3ae994560e0bf04e500398fd0a9c9be6bca34a3b86f3e83";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base boxes criterion deepseq HUnit statistics transformers
+ ];
+ executableHaskellDepends = [
+ base bytestring containers criterion HUnit
+ ];
+ description = "Create tests and benchmarks together";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"testing-feat_0_4_0_2" = callPackage
({ mkDerivation, base, mtl, QuickCheck, tagshare, template-haskell
}:
@@ -214152,6 +215271,31 @@ self: {
license = "GPL";
}) {};
+ "texmath_0_8_6_3" = callPackage
+ ({ mkDerivation, base, bytestring, containers, directory, filepath
+ , mtl, network-uri, pandoc-types, parsec, process, split, syb
+ , temporary, text, utf8-string, xml
+ }:
+ mkDerivation {
+ pname = "texmath";
+ version = "0.8.6.3";
+ sha256 = "74f600a77a5ce2d88aa1aa81b0bea5f5e79da6b64b51e50656f7bbf27debc22b";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers mtl pandoc-types parsec syb xml
+ ];
+ executableHaskellDepends = [ network-uri ];
+ testHaskellDepends = [
+ base bytestring directory filepath process split temporary text
+ utf8-string xml
+ ];
+ homepage = "http://github.com/jgm/texmath";
+ description = "Conversion between formats used to represent mathematics";
+ license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"texrunner" = callPackage
({ mkDerivation, attoparsec, base, bytestring, directory, filepath
, HUnit, io-streams, lens, mtl, process, temporary, test-framework
@@ -214230,7 +215374,7 @@ self: {
"text_1_2_0_4" = callPackage
({ mkDerivation, array, base, bytestring, deepseq, directory
- , ghc-prim, HUnit, integer-gmp, QuickCheck, quickcheck-unicode
+ , ghc-prim, HUnit, integer-simple, QuickCheck, quickcheck-unicode
, random, test-framework, test-framework-hunit
, test-framework-quickcheck2
}:
@@ -214241,11 +215385,11 @@ self: {
revision = "1";
editedCabalFile = "ee605e146a984f0f9ea30b9e8d92a93a765f1bcc1fa6b6d23e0487fc3f210f0b";
libraryHaskellDepends = [
- array base bytestring deepseq ghc-prim integer-gmp
+ array base bytestring deepseq ghc-prim integer-simple
];
testHaskellDepends = [
- array base bytestring deepseq directory ghc-prim HUnit integer-gmp
- QuickCheck quickcheck-unicode random test-framework
+ array base bytestring deepseq directory ghc-prim HUnit
+ integer-simple QuickCheck quickcheck-unicode random test-framework
test-framework-hunit test-framework-quickcheck2
];
doCheck = false;
@@ -214257,7 +215401,7 @@ self: {
"text_1_2_0_6" = callPackage
({ mkDerivation, array, base, bytestring, deepseq, directory
- , ghc-prim, HUnit, integer-gmp, QuickCheck, quickcheck-unicode
+ , ghc-prim, HUnit, integer-simple, QuickCheck, quickcheck-unicode
, random, test-framework, test-framework-hunit
, test-framework-quickcheck2
}:
@@ -214268,11 +215412,11 @@ self: {
revision = "1";
editedCabalFile = "1d5d0c706835f1ca74925cd3b0aa025bf4ee0fd795581b6038c13cd030fddb47";
libraryHaskellDepends = [
- array base bytestring deepseq ghc-prim integer-gmp
+ array base bytestring deepseq ghc-prim integer-simple
];
testHaskellDepends = [
- array base bytestring deepseq directory ghc-prim HUnit integer-gmp
- QuickCheck quickcheck-unicode random test-framework
+ array base bytestring deepseq directory ghc-prim HUnit
+ integer-simple QuickCheck quickcheck-unicode random test-framework
test-framework-hunit test-framework-quickcheck2
];
doCheck = false;
@@ -214284,7 +215428,7 @@ self: {
"text_1_2_1_3" = callPackage
({ mkDerivation, array, base, binary, bytestring, deepseq
- , directory, ghc-prim, HUnit, integer-gmp, QuickCheck
+ , directory, ghc-prim, HUnit, integer-simple, QuickCheck
, quickcheck-unicode, random, test-framework, test-framework-hunit
, test-framework-quickcheck2
}:
@@ -214295,11 +215439,11 @@ self: {
revision = "1";
editedCabalFile = "0f5b6a2f9204089b6cc58071b92e9f2fc3e6d773e3aa486b4a66bf25e124712a";
libraryHaskellDepends = [
- array base binary bytestring deepseq ghc-prim integer-gmp
+ array base binary bytestring deepseq ghc-prim integer-simple
];
testHaskellDepends = [
array base binary bytestring deepseq directory ghc-prim HUnit
- integer-gmp QuickCheck quickcheck-unicode random test-framework
+ integer-simple QuickCheck quickcheck-unicode random test-framework
test-framework-hunit test-framework-quickcheck2
];
doCheck = false;
@@ -214403,6 +215547,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "text-conversions" = callPackage
+ ({ mkDerivation, base, bytestring, errors, hspec, hspec-discover
+ , text
+ }:
+ mkDerivation {
+ pname = "text-conversions";
+ version = "0.1.0";
+ sha256 = "a7930b778d757ae771f80d71aebc2112c243a02c87b32a1483d3901a160d506f";
+ libraryHaskellDepends = [ base bytestring errors text ];
+ testHaskellDepends = [ base bytestring hspec hspec-discover text ];
+ homepage = "https://github.com/cjdev/text-conversions#readme";
+ description = "Safe conversions between textual types";
+ license = stdenv.lib.licenses.isc;
+ }) {};
+
"text-format" = callPackage
({ mkDerivation, array, base, double-conversion, ghc-prim
, integer-gmp, old-locale, text, time, transformers
@@ -214680,8 +215839,8 @@ self: {
}:
mkDerivation {
pname = "text-region";
- version = "0.1.0.0";
- sha256 = "bf65047a5608e62b55a6a10067068b5ef63675df1b41148ad198f464e8f80673";
+ version = "0.1.0.1";
+ sha256 = "5217ff7af33898ca615e5444ba4293f214d6a5cbc8c4eb34ba53845151f61bf1";
libraryHaskellDepends = [
aeson base base-unicode-symbols bytestring containers groups lens
mtl text
@@ -214690,7 +215849,7 @@ self: {
base base-unicode-symbols containers hspec lens mtl text
];
homepage = "https://github.com/mvoidex/text-region";
- description = "Provides functions to update text region positions according to text edit actions";
+ description = "Marking text regions";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -214780,7 +215939,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "text-show_3_2_1" = callPackage
+ "text-show_3_2_2" = callPackage
({ mkDerivation, array, base, base-compat, base-orphans, bifunctors
, bytestring, bytestring-builder, containers, generic-deriving
, ghc-prim, hspec, integer-gmp, nats, QuickCheck
@@ -214789,8 +215948,8 @@ self: {
}:
mkDerivation {
pname = "text-show";
- version = "3.2.1";
- sha256 = "c5d13ce1c1a411930a0bc3220f8189b91d9ff58c8b82f5777277fc62cc27d28a";
+ version = "3.2.2";
+ sha256 = "93a9479d19f303d4e8310ae8e35a8609d27ef6e443f8a4531c73bd5d1bbd4c40";
libraryHaskellDepends = [
array base base-compat bifunctors bytestring bytestring-builder
containers generic-deriving ghc-prim integer-gmp nats semigroups
@@ -214908,7 +216067,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "text-zipper" = callPackage
+ "text-zipper_0_3_1" = callPackage
({ mkDerivation, base, text, vector }:
mkDerivation {
pname = "text-zipper";
@@ -214917,6 +216076,18 @@ self: {
libraryHaskellDepends = [ base text vector ];
description = "A text editor zipper library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "text-zipper" = callPackage
+ ({ mkDerivation, base, text, vector }:
+ mkDerivation {
+ pname = "text-zipper";
+ version = "0.4";
+ sha256 = "0a94fbdc2febc7656369b30c09fe4bcee1f9323547af40037a2adbee52a45d97";
+ libraryHaskellDepends = [ base text vector ];
+ description = "A text editor zipper library";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"text1" = callPackage
@@ -215214,6 +216385,8 @@ self: {
pname = "th-desugar";
version = "1.5.3";
sha256 = "209e979a0daee1e0264245754161531c3d1b198b3960c9062682db765de9cbae";
+ revision = "1";
+ editedCabalFile = "5320c5ef2aea345e394d55a3c5f1ea3998a214a44698bbff9b8fb0bf9b3d6f89";
libraryHaskellDepends = [
base containers mtl syb template-haskell th-lift th-orphans
];
@@ -215235,6 +216408,8 @@ self: {
pname = "th-desugar";
version = "1.5.4";
sha256 = "c83013c92f136fb8d94c4d1893cbcb6748cba19d63382536588b20eddf3997b7";
+ revision = "2";
+ editedCabalFile = "e29f050217971aa98418f5461dcf11fe89f1de422d5f5b99e9699b1139a3b817";
libraryHaskellDepends = [
base containers mtl syb template-haskell th-lift th-orphans
];
@@ -215256,6 +216431,8 @@ self: {
pname = "th-desugar";
version = "1.5.4.1";
sha256 = "d32902a53c31b557eab3c2f2e6723a56b3b038f8655cee26b9d700e2737fef0a";
+ revision = "1";
+ editedCabalFile = "6562d39a31104101bb4a688faa5ab3644187c839f3de75c521a860f78154f7da";
libraryHaskellDepends = [
base containers mtl syb template-haskell th-lift th-orphans
];
@@ -215277,6 +216454,8 @@ self: {
pname = "th-desugar";
version = "1.5.5";
sha256 = "db8cfe15c2b1c5b5e6c2105a0a16f409c9eb9b359c2f2c18e440d5562c5d38a3";
+ revision = "1";
+ editedCabalFile = "6dffacc4a25cfaa78844eb30be50f7e0c9c502c808c84279577308cb1ec8d1b8";
libraryHaskellDepends = [
base containers mtl syb template-haskell th-lift th-orphans
];
@@ -215289,6 +216468,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "th-desugar_1_6" = callPackage
+ ({ mkDerivation, base, containers, hspec, HUnit, mtl, syb
+ , template-haskell, th-expand-syns, th-lift, th-orphans
+ }:
+ mkDerivation {
+ pname = "th-desugar";
+ version = "1.6";
+ sha256 = "c8f8ece2bde9b12070ea50bc089fbc672f144659225d837478fbc793777f634f";
+ libraryHaskellDepends = [
+ base containers mtl syb template-haskell th-expand-syns th-lift
+ th-orphans
+ ];
+ testHaskellDepends = [
+ base containers hspec HUnit mtl syb template-haskell th-expand-syns
+ th-lift th-orphans
+ ];
+ 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
({ mkDerivation, base, containers, syb, template-haskell }:
mkDerivation {
@@ -215345,7 +216546,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "th-extras" = callPackage
+ "th-extras_0_0_0_2" = callPackage
({ mkDerivation, base, syb, template-haskell }:
mkDerivation {
pname = "th-extras";
@@ -215357,6 +216558,19 @@ self: {
homepage = "https://github.com/mokus0/th-extras";
description = "A grab bag of functions for use with Template Haskell";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "th-extras" = callPackage
+ ({ mkDerivation, base, syb, template-haskell }:
+ mkDerivation {
+ pname = "th-extras";
+ version = "0.0.0.4";
+ sha256 = "8feff450aaf28ec4f08c45a5656c62879861a8e7f45591cb367d5351ddc3fbed";
+ libraryHaskellDepends = [ base syb template-haskell ];
+ homepage = "https://github.com/mokus0/th-extras";
+ description = "A grab bag of functions for use with Template Haskell";
+ license = stdenv.lib.licenses.publicDomain;
}) {};
"th-fold" = callPackage
@@ -215517,21 +216731,19 @@ self: {
}) {};
"th-lift-instances" = callPackage
- ({ mkDerivation, base, bytestring, containers, directory, doctest
- , filepath, QuickCheck, template-haskell, text, th-lift, vector
+ ({ mkDerivation, base, bytestring, containers, QuickCheck
+ , template-haskell, text, th-lift, vector
}:
mkDerivation {
pname = "th-lift-instances";
- version = "0.1.6";
- sha256 = "537ebabc98a9026292813ad2f48a3ca68601cb0fcdf559f579405da385ca40e5";
+ version = "0.1.7";
+ sha256 = "9497a844d352bca5739ac5ce873e501d4cc8abcde54c2d76c2d23263adfb5265";
libraryHaskellDepends = [
base bytestring containers template-haskell text th-lift vector
];
testHaskellDepends = [
- base bytestring containers directory doctest filepath QuickCheck
- template-haskell text vector
+ base bytestring containers QuickCheck template-haskell text vector
];
- jailbreak = true;
homepage = "http://github.com/bennofs/th-lift-instances/";
description = "Lift instances for template-haskell for common data types";
license = stdenv.lib.licenses.bsd3;
@@ -215715,7 +216927,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "th-reify-many" = callPackage
+ "th-reify-many_0_1_4_1" = callPackage
({ mkDerivation, base, containers, mtl, safe, template-haskell
, th-expand-syns
}:
@@ -215730,9 +216942,10 @@ self: {
homepage = "http://github.com/mgsloan/th-reify-many";
description = "Recurseively reify template haskell datatype info";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "th-reify-many_0_1_6" = callPackage
+ "th-reify-many" = callPackage
({ mkDerivation, base, containers, mtl, safe, template-haskell
, th-expand-syns
}:
@@ -215747,7 +216960,6 @@ self: {
homepage = "http://github.com/mgsloan/th-reify-many";
description = "Recurseively reify template haskell datatype info";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"th-sccs" = callPackage
@@ -215804,8 +217016,8 @@ self: {
}:
mkDerivation {
pname = "th-utilities";
- version = "0.1.0.1";
- sha256 = "b41375d16d87fb64e1b3a8e32dfd154199175cdd1ab16c86e3923c75f36d1160";
+ version = "0.1.1.0";
+ sha256 = "8d9905d0be5ac2e009f0cab4f0c44e61b997beb8c3e7183bb1ce544217cbbe70";
libraryHaskellDepends = [
base bytestring containers directory filepath primitive syb
template-haskell text th-orphans
@@ -215933,8 +217145,8 @@ self: {
pname = "these";
version = "0.6.2.1";
sha256 = "41dd6403ec489deef66632fcae4cd058f636badb162aedff7c8b4930affb99bb";
- revision = "1";
- editedCabalFile = "d4a7e4b298af27e72431b3f361841ce3063dc451500d319f754fd39117fd6907";
+ revision = "2";
+ editedCabalFile = "3899efa5ea17e23cfb9acde7fa3316fa35183358b90d4540899b5d9d38d59a35";
libraryHaskellDepends = [
base bifunctors containers data-default-class hashable mtl
profunctors semigroupoids semigroups transformers
@@ -216250,6 +217462,8 @@ self: {
pname = "through-text";
version = "0.1.0.0";
sha256 = "933225da128906e61865ccd1da73463781b890d742cbb38f52524d94ac19b4cd";
+ revision = "1";
+ editedCabalFile = "f0c09f65756b493eee2c55f4ef5ef1f71f1afe9b0d19448c34bf1db6e942a865";
libraryHaskellDepends = [ base bytestring case-insensitive text ];
homepage = "https://www.github.com/bergmark/through-text";
description = "Convert textual types through Text without needing O(n^2) instances";
@@ -216435,6 +217649,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "tidal-serial" = callPackage
+ ({ mkDerivation, base, bytestring, containers, serialport, tidal }:
+ mkDerivation {
+ pname = "tidal-serial";
+ version = "0.8";
+ sha256 = "8d1737f82e01ee80c3cf833f018f159a4e70afab7043fcdbd0fed3c04efe63db";
+ libraryHaskellDepends = [
+ base bytestring containers serialport tidal
+ ];
+ jailbreak = true;
+ homepage = "http://tidalcycles.org/";
+ description = "Serial support for tidal";
+ license = stdenv.lib.licenses.gpl3;
+ }) {};
+
"tidal-vis" = callPackage
({ mkDerivation, base, cairo, colour, tidal }:
mkDerivation {
@@ -217736,32 +218965,6 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "tls" = callPackage
- ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring
- , cereal, cryptonite, data-default-class, hourglass, memory, mtl
- , network, QuickCheck, tasty, tasty-quickcheck, transformers, x509
- , x509-store, x509-validation
- }:
- mkDerivation {
- pname = "tls";
- version = "1.3.6";
- sha256 = "72285fbc0f79f3138213cbe493a0bb10780becb1469b0e2c7aa840e6ba04dd62";
- revision = "1";
- editedCabalFile = "37d05226822e7949fe96455f2e8130a454700c65c87bec7745cad0bcc1a8379c";
- libraryHaskellDepends = [
- asn1-encoding asn1-types async base bytestring cereal cryptonite
- data-default-class memory mtl network transformers x509 x509-store
- x509-validation
- ];
- testHaskellDepends = [
- base bytestring cereal cryptonite data-default-class hourglass mtl
- QuickCheck tasty tasty-quickcheck x509 x509-validation
- ];
- homepage = "http://github.com/vincenthz/hs-tls";
- description = "TLS/SSL protocol native implementation (Server and Client)";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
"tls_1_3_7" = callPackage
({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring
, cereal, cryptonite, data-default-class, hourglass, memory, mtl
@@ -217789,6 +218992,30 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "tls" = callPackage
+ ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring
+ , cereal, cryptonite, data-default-class, hourglass, memory, mtl
+ , network, QuickCheck, tasty, tasty-quickcheck, transformers, x509
+ , x509-store, x509-validation
+ }:
+ mkDerivation {
+ pname = "tls";
+ version = "1.3.8";
+ sha256 = "b440cf011c3e7af89e1ed719c714ab1001e8d3b13ef9dd3660019d88826bb1e5";
+ libraryHaskellDepends = [
+ asn1-encoding asn1-types async base bytestring cereal cryptonite
+ data-default-class memory mtl network transformers x509 x509-store
+ x509-validation
+ ];
+ testHaskellDepends = [
+ base bytestring cereal cryptonite data-default-class hourglass mtl
+ QuickCheck tasty tasty-quickcheck x509 x509-validation
+ ];
+ homepage = "http://github.com/vincenthz/hs-tls";
+ description = "TLS/SSL protocol native implementation (Server and Client)";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"tls-debug_0_3_4" = callPackage
({ mkDerivation, base, bytestring, cprng-aes, crypto-pubkey
, data-default-class, network, pem, time, tls, x509, x509-system
@@ -217853,26 +219080,6 @@ self: {
}) {};
"tls-debug" = callPackage
- ({ mkDerivation, base, bytestring, cryptonite, data-default-class
- , network, pem, time, tls, x509, x509-store, x509-system
- , x509-validation
- }:
- mkDerivation {
- pname = "tls-debug";
- version = "0.4.3";
- sha256 = "40e34f1a0635c006ecd495bb44b8f24587052f2277236254308fe7d5f2b6312d";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- base bytestring cryptonite data-default-class network pem time tls
- x509 x509-store x509-system x509-validation
- ];
- homepage = "http://github.com/vincenthz/hs-tls";
- description = "Set of programs for TLS testing and debugging";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "tls-debug_0_4_4" = callPackage
({ mkDerivation, base, bytestring, cryptonite, data-default-class
, network, pem, time, tls, x509, x509-store, x509-system
, x509-validation
@@ -217890,7 +219097,6 @@ self: {
homepage = "http://github.com/vincenthz/hs-tls";
description = "Set of programs for TLS testing and debugging";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tls-extra" = callPackage
@@ -217932,21 +219138,27 @@ self: {
}) {};
"tn" = callPackage
- ({ mkDerivation, base, bytestring, containers, directory, process
- , safe, text, time, yaml
+ ({ mkDerivation, aeson, base, bytestring, directory, file-embed
+ , optparse-applicative, optparse-helper, optparse-simple, pager
+ , text, time, vector, yaml
}:
mkDerivation {
pname = "tn";
- version = "1.0.2.1";
- sha256 = "be665fab37226ff6bfe94cce7ab2c195d4a91bea2536923a58098eb1d05b501e";
- isLibrary = false;
+ version = "4.1.0.0";
+ sha256 = "50f7f11a98410900517e89a511477c7a3aebcc57e80a4f97a1c1c33e5bc405e1";
+ isLibrary = true;
isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring directory file-embed optparse-simple pager
+ text time vector yaml
+ ];
executableHaskellDepends = [
- base bytestring containers directory process safe text time yaml
+ base bytestring file-embed optparse-applicative optparse-helper
];
jailbreak = true;
+ homepage = "https://github.com/pharpend/tn";
description = "A simple daily journal program";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.isc;
}) {};
"tnet" = callPackage
@@ -218297,8 +219509,8 @@ self: {
({ mkDerivation, base, containers }:
mkDerivation {
pname = "total-map";
- version = "0.0.5";
- sha256 = "c7392d06e1c5ed4b1219eda838aaa0e2a7befcb3650765f1e87e86533d2195d3";
+ version = "0.0.6";
+ sha256 = "32ff8bf84ce379fa4a3d9f2630471ff0ab4924bcd5e65bad9b539da50e65af85";
libraryHaskellDepends = [ base containers ];
homepage = "http://github.com/conal/total-map/";
description = "Finitely represented /total/ maps";
@@ -218467,14 +219679,13 @@ self: {
}:
mkDerivation {
pname = "tracetree";
- version = "0.1.0.0";
- sha256 = "f4dcb708ed295ba09068560f65600242b0b59357e119d1868830ca2dfc724b1c";
+ version = "0.1.0.1";
+ sha256 = "12d0eb7923a905fff4b92c7f4f187a4715ba95883ac1df5e0a7efb59427f5115";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base bifunctors containers json mtl transformers
];
- jailbreak = true;
description = "Visualize Haskell data structures as edge-labeled trees";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -218514,6 +219725,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "traildb" = callPackage
+ ({ mkDerivation, base, bytestring, cmph, containers, directory
+ , exceptions, Judy, lens, primitive, text, time, traildb
+ , transformers, unix, vector
+ }:
+ mkDerivation {
+ pname = "traildb";
+ version = "0.1.0.1";
+ sha256 = "60945b9b57871c10d25d364c5ae27ba676e4651c785c6ddb8ba79a4c085341c8";
+ libraryHaskellDepends = [
+ base bytestring containers directory exceptions lens primitive text
+ time transformers unix vector
+ ];
+ librarySystemDepends = [ cmph Judy traildb ];
+ description = "TrailDB bindings for Haskell";
+ license = stdenv.lib.licenses.mit;
+ }) {Judy = null; cmph = null; traildb = null;};
+
"trajectory" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, cmdargs
, containers, http-enumerator, http-types, regexpr, text
@@ -219318,7 +220547,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "true-name" = callPackage
+ "true-name_0_1_0_1" = callPackage
({ mkDerivation, base, containers, template-haskell, time }:
mkDerivation {
pname = "true-name";
@@ -219329,6 +220558,20 @@ self: {
homepage = "https://github.com/liyang/true-name";
description = "Template Haskell hack to violate module abstractions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "true-name" = callPackage
+ ({ mkDerivation, base, containers, template-haskell, time }:
+ mkDerivation {
+ pname = "true-name";
+ version = "0.1.0.2";
+ sha256 = "067627890569fe5a241b6bd7e0de44b2f2fa22a2e9e2e29eaed6aadc2e6e1cb0";
+ libraryHaskellDepends = [ base template-haskell ];
+ testHaskellDepends = [ base containers template-haskell time ];
+ homepage = "https://github.com/liyang/true-name";
+ description = "Template Haskell hack to violate module abstractions";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"truelevel" = callPackage
@@ -219892,6 +221135,18 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
+ "turingMachine" = callPackage
+ ({ mkDerivation, base, containers }:
+ mkDerivation {
+ pname = "turingMachine";
+ version = "0.1.3.0";
+ sha256 = "26b255719f25bdf73a0ce45e043b68bd57a4ebd8f582311aa6e0c8e6ec7efafc";
+ libraryHaskellDepends = [ base containers ];
+ homepage = "https://github.com/sanjorgek/turingMachine";
+ description = "An implementation of Turing Machine and Automaton";
+ license = stdenv.lib.licenses.gpl3;
+ }) {};
+
"turkish-deasciifier" = callPackage
({ mkDerivation, base, containers, HUnit, vector }:
mkDerivation {
@@ -219952,6 +221207,8 @@ self: {
pname = "turtle";
version = "1.2.1";
sha256 = "9c5886fcfc2397da2d2861ad85992d952b0f749ef07b60f93c717b5ca87d8406";
+ revision = "1";
+ editedCabalFile = "aeed045fbbb2e98a90dc4ccdd33fe81dfafb6cce130632d927bd56f6c12a2e93";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process system-fileio system-filepath
@@ -219974,6 +221231,8 @@ self: {
pname = "turtle";
version = "1.2.2";
sha256 = "b2676e0222829b8951fe127676f891e212d1dad95d8db92dc7ffdbd099e60ec6";
+ revision = "1";
+ editedCabalFile = "94e5ce1de1914b27b012e9c4e243cab208d2a5ebeadc0979a18491991870ea62";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process stm system-fileio system-filepath
@@ -219996,6 +221255,8 @@ self: {
pname = "turtle";
version = "1.2.3";
sha256 = "3669a203887b58621ba20a4192defb3bdbfdf17ac13de80747143f739127d36d";
+ revision = "1";
+ editedCabalFile = "730c8de9603e2d53fae9c544b667d5e93778a2883f48e4ac2ef4b99e0963a457";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process stm system-fileio system-filepath
@@ -220018,6 +221279,8 @@ self: {
pname = "turtle";
version = "1.2.4";
sha256 = "c42148d062098913a4519af92c0bc6b139edad18c22f6c01aea8697386851de4";
+ revision = "1";
+ editedCabalFile = "4eadcd71a803df6ac90d05bd47208c581933cabc1d42a2072e5476f149834a97";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process stm system-fileio system-filepath
@@ -220040,6 +221303,8 @@ self: {
pname = "turtle";
version = "1.2.5";
sha256 = "006566b6d1060c576ad10db068381ff433598bffac0e49847c6aff522ad9c5c7";
+ revision = "1";
+ editedCabalFile = "01ecee5b95ca73d30fec3176c3d0c763322506d0f89020f442c77a5094ade60c";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process stm system-fileio system-filepath
@@ -220062,6 +221327,8 @@ self: {
pname = "turtle";
version = "1.2.6";
sha256 = "947f73268b9b72585c0b6e8943a1eeb51d5683dec01cbdbe9a3f94ef00b91d92";
+ revision = "1";
+ editedCabalFile = "f7b7554ff334221e86fe193dad0ad53a218435a97fa1f107e536b91287b14c46";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process stm system-fileio system-filepath
@@ -220084,6 +221351,8 @@ self: {
pname = "turtle";
version = "1.2.7";
sha256 = "45736cf5106e75808eaed098228309bcfa3eb8b5e7e956c28423002ca5232f98";
+ revision = "1";
+ editedCabalFile = "2215d980813e67b577b7d44d2b83cdca5c327f153340b3a9ac3084936ae58faa";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process stm system-fileio system-filepath
@@ -220269,6 +221538,8 @@ self: {
pname = "twentyseven";
version = "0.0.0";
sha256 = "471690467742286cc9e4eb744b06d2a298a9c770fdb8ac0c816774d4c0b70133";
+ revision = "1";
+ editedCabalFile = "32b1d53bc3a5a56998f35452cbcdc9d00db7e4848e50ebd8fec2607d2243f147";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -220631,6 +221902,7 @@ self: {
lens-aeson network-uri resourcet template-haskell text time
twitter-types twitter-types-lens
];
+ doCheck = false;
homepage = "https://github.com/himura/twitter-conduit";
description = "Twitter API package with conduit interface and Streaming API support";
license = stdenv.lib.licenses.bsd3;
@@ -221295,7 +222567,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "type-list" = callPackage
+ "type-list_0_3_0_2" = callPackage
({ mkDerivation, base, singletons }:
mkDerivation {
pname = "type-list";
@@ -221304,6 +222576,18 @@ self: {
libraryHaskellDepends = [ base singletons ];
description = "Operations on type-level lists and tuples";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "type-list" = callPackage
+ ({ mkDerivation, base, singletons }:
+ mkDerivation {
+ pname = "type-list";
+ version = "0.3.0.4";
+ sha256 = "cd06218bf2f6897e0caf85c86334d8834ea36410a0d0b1d9193e1cbadd1b300a";
+ libraryHaskellDepends = [ base singletons ];
+ description = "Operations on type-level lists and tuples";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"type-natural" = callPackage
@@ -221634,7 +222918,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "typelits-witnesses" = callPackage
+ "typelits-witnesses_0_2_0_0" = callPackage
({ mkDerivation, base, constraints, reflection }:
mkDerivation {
pname = "typelits-witnesses";
@@ -221644,6 +222928,40 @@ 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_0_2_1_0" = callPackage
+ ({ mkDerivation, base, base-compat, constraints, reflection
+ , transformers
+ }:
+ mkDerivation {
+ pname = "typelits-witnesses";
+ version = "0.2.1.0";
+ sha256 = "43da6f58b1ee54ad8c03d29311db55df82fbd9e7fa3a6ae6ace257f86e690ba7";
+ 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;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "typelits-witnesses" = callPackage
+ ({ mkDerivation, base, base-compat, constraints, reflection
+ , transformers
+ }:
+ mkDerivation {
+ pname = "typelits-witnesses";
+ version = "0.2.2.0";
+ sha256 = "9d9e1ce622b309d51f748bbbbccdc1648c00680257426c1ebd90c1e590d3cf0b";
+ 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
@@ -222031,8 +223349,8 @@ self: {
}:
mkDerivation {
pname = "uhc-light";
- version = "1.1.9.3";
- sha256 = "e1c4868e38987c2938c6c9379bb3d8b1bfcfbfc95541862e118e8ca9439343f3";
+ version = "1.1.9.4";
+ sha256 = "617fd803d9693cc9c03f071045a892b5a1f8b4564e7764c595014a440261f053";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -222052,16 +223370,17 @@ self: {
"uhc-util" = callPackage
({ mkDerivation, array, base, binary, bytestring, containers
- , directory, fclabels, fgl, hashable, logict-state, mtl, process
- , syb, time, time-compat, uulib
+ , directory, fclabels, fgl, hashable, logict-state, mtl, pqueue
+ , process, time, time-compat, transformers, uulib
}:
mkDerivation {
pname = "uhc-util";
- version = "0.1.6.5";
- sha256 = "a296ebd71c34353f69ad42b6b8979dbdc5e2bb5fb117b5e8953ff77ccbc378fc";
+ version = "0.1.6.6";
+ sha256 = "b5abc07215168b1f203ce50da8f13b8170269a5e4b2e4c8a872819f13f14bb47";
libraryHaskellDepends = [
array base binary bytestring containers directory fclabels fgl
- hashable logict-state mtl process syb time time-compat uulib
+ hashable logict-state mtl pqueue process time time-compat
+ transformers uulib
];
homepage = "https://github.com/UU-ComputerScience/uhc-util";
description = "UHC utilities";
@@ -222310,6 +223629,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "unbound-generics_0_3_1" = callPackage
+ ({ mkDerivation, base, containers, contravariant, deepseq, mtl
+ , profunctors, QuickCheck, tasty, tasty-hunit, tasty-quickcheck
+ , template-haskell, transformers, transformers-compat
+ }:
+ mkDerivation {
+ pname = "unbound-generics";
+ version = "0.3.1";
+ sha256 = "1f85672c8edfc8cbea638bcbf1e29d04934d79470177cb59e6dba0f9bb7a6440";
+ libraryHaskellDepends = [
+ base containers contravariant deepseq mtl profunctors
+ template-haskell transformers transformers-compat
+ ];
+ testHaskellDepends = [
+ base mtl QuickCheck tasty tasty-hunit tasty-quickcheck
+ ];
+ 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
({ mkDerivation, base }:
mkDerivation {
@@ -222386,17 +223727,16 @@ self: {
}) {};
"uncertain" = callPackage
- ({ mkDerivation, ad, base, containers, free, mwc-random, primitive
- , transformers
+ ({ mkDerivation, ad, base, base-compat, containers, free
+ , mwc-random, primitive, transformers
}:
mkDerivation {
pname = "uncertain";
- version = "0.2.0.0";
- sha256 = "3f3d46ee31b7ad2328761f6e7225bde5c94e61fa35b078838b8ae44de15598b3";
- revision = "1";
- editedCabalFile = "1057e2e280de08d8a148f7a29028d6d04083adb6bd8b375bf9fed1513e937c86";
+ version = "0.3.1.0";
+ sha256 = "6f67855ed4799e0c3465dfaef062b637efc61fbea40ebc44ced163028a996ff2";
libraryHaskellDepends = [
- ad base containers free mwc-random primitive transformers
+ ad base base-compat containers free mwc-random primitive
+ transformers
];
homepage = "https://github.com/mstksg/uncertain";
description = "Manipulating numbers with inherent experimental/measurement uncertainty";
@@ -224388,17 +225728,17 @@ self: {
}) {};
"users-persistent" = callPackage
- ({ mkDerivation, base, bytestring, hspec, monad-logger, mtl
- , persistent, persistent-sqlite, persistent-template, temporary
- , text, time, transformers, users, users-test, uuid
+ ({ mkDerivation, base, bytestring, esqueleto, hspec, monad-logger
+ , mtl, persistent, persistent-sqlite, persistent-template
+ , temporary, text, time, transformers, users, users-test, uuid
}:
mkDerivation {
pname = "users-persistent";
- version = "0.5.0.1";
- sha256 = "59107ccbc443ecc37f8539eca28c0717a45d902bf07f47fddadc704a0c701ba2";
+ version = "0.5.0.2";
+ sha256 = "f860936c9eaca82353979c70344576964319d241e3c74caf0a55cd3c9918944c";
libraryHaskellDepends = [
- base bytestring mtl persistent persistent-template text time
- transformers users uuid
+ base bytestring esqueleto mtl persistent persistent-template text
+ time transformers users uuid
];
testHaskellDepends = [
base hspec monad-logger persistent-sqlite temporary text users-test
@@ -224471,8 +225811,8 @@ self: {
}:
mkDerivation {
pname = "users-postgresql-simple";
- version = "0.5.0.1";
- sha256 = "bac279ce4e93c71581e9aa890170d5acea262b1c4fddb8b5c7df5ea9807d9905";
+ version = "0.5.0.2";
+ sha256 = "051b5d2c9c6cdeaacb6271a50ee4084cc1473de8d873825dc6d98023e96ec100";
libraryHaskellDepends = [
base bytestring mtl postgresql-simple text time users uuid
];
@@ -224526,8 +225866,8 @@ self: {
({ mkDerivation, base, hspec, text, users }:
mkDerivation {
pname = "users-test";
- version = "0.5.0.0";
- sha256 = "d3cee7db30b5fe19ca4d822f5f03484eda82090a5060ef6493befe0324d15643";
+ version = "0.5.0.1";
+ sha256 = "f68549fa0cc002b16dc55f23a73b1a423aa2e64ab584c4041252a3bb6a5cac3e";
libraryHaskellDepends = [ base hspec text users ];
homepage = "https://github.com/agrafix/users";
description = "Library to test backends for the users library";
@@ -224747,6 +226087,8 @@ self: {
pname = "uu-parsinglib";
version = "2.9.1";
sha256 = "0d9c0fa5a8d9fcce596cc46c7caff3c19313eedc5ec641a216d6a8848c032c32";
+ revision = "1";
+ editedCabalFile = "6698743a35d0791453123aecd3547df4bec9e6fa8cf326a052e3e3e13e842c85";
libraryHaskellDepends = [ base ListLike time uu-interleaved ];
homepage = "http://www.cs.uu.nl/wiki/bin/view/HUT/ParserCombinators";
description = "Fast, online, error-correcting, monadic, applicative, merging, permuting, interleaving, idiomatic parser combinators";
@@ -225372,8 +226714,8 @@ self: {
}:
mkDerivation {
pname = "vado";
- version = "0.0.6";
- sha256 = "cc9b6ffa83eaedf2c793a93e47b8341b2f8014382aaae63a46b4028c3e86212c";
+ version = "0.0.7";
+ sha256 = "fc8609a92ce40a4c52d37a44297b67928bf30562c4b87a2e3885059ecbc6273b";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -226508,7 +227850,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "vector-space-points" = callPackage
+ "vector-space-points_0_2_1_1" = callPackage
({ mkDerivation, base, vector-space }:
mkDerivation {
pname = "vector-space-points";
@@ -226517,6 +227859,18 @@ self: {
libraryHaskellDepends = [ base vector-space ];
description = "A type for points, as distinct from vectors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "vector-space-points" = callPackage
+ ({ mkDerivation, base, vector-space }:
+ mkDerivation {
+ pname = "vector-space-points";
+ version = "0.2.1.2";
+ sha256 = "feead3c4e82d25b0ef3a64af93e01ac377083adb7f755c2360417838d6f1114b";
+ libraryHaskellDepends = [ base vector-space ];
+ description = "A type for points, as distinct from vectors";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"vector-static" = callPackage
@@ -226959,14 +228313,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "vinyl-operational" = callPackage
+ ({ mkDerivation, base, operational, operational-extra, vinyl-plus
+ }:
+ mkDerivation {
+ pname = "vinyl-operational";
+ version = "0.1.1";
+ sha256 = "ba556484509f789d6c8d49655d8f0a77d12a16179ffe59335d0b037c02c185a5";
+ libraryHaskellDepends = [
+ base operational operational-extra vinyl-plus
+ ];
+ homepage = "http://github.com/andrewthad/vinyl-operational#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"vinyl-plus" = callPackage
({ mkDerivation, base, contravariant, doctest, ghc-prim
, profunctors, transformers, unordered-containers, vinyl
}:
mkDerivation {
pname = "vinyl-plus";
- version = "0.1.0.0";
- sha256 = "438d84c4f71422229b673b14aee7bb14defa8a3f7b9232f67a8a4f91fb2a29d0";
+ version = "0.1.1";
+ sha256 = "f8a195c81456db7694f0e44966e2907d90a9417d231a3aece78e9e9a35905697";
libraryHaskellDepends = [
base contravariant ghc-prim profunctors transformers
unordered-containers vinyl
@@ -226982,8 +228351,8 @@ self: {
({ mkDerivation, base, contravariant, transformers, vinyl }:
mkDerivation {
pname = "vinyl-utils";
- version = "0.2.0.3";
- sha256 = "870e5f5fb312fd3ff37f56eb06d28518571b085a5257852b652cde31e9abc08c";
+ version = "0.3.0.0";
+ sha256 = "e6d7668cd91d5ef14b54396561c10930654dae9398cedefc1fb6faab00c4143f";
libraryHaskellDepends = [ base contravariant transformers vinyl ];
homepage = "https://github.com/marcinmrotek/vinyl-utils";
description = "Utilities for vinyl";
@@ -227275,8 +228644,8 @@ self: {
({ mkDerivation, base, glib, gtk, gtk2hs-buildtools, pango, vte }:
mkDerivation {
pname = "vte";
- version = "0.13.0.3";
- sha256 = "70efa9daec459aa3d7d49e767af2449752c62f47985d5bac9ef50fc1cdb4f90f";
+ version = "0.13.1.0";
+ sha256 = "6dc78551c75c393f2c8b9c463539293214ee788ad73c0623adc69f10b36f4a9d";
libraryHaskellDepends = [ base glib gtk pango ];
libraryPkgconfigDepends = [ vte ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -227291,8 +228660,8 @@ self: {
({ mkDerivation, base, glib, gtk2hs-buildtools, gtk3, pango, vte }:
mkDerivation {
pname = "vtegtk3";
- version = "0.13.0.3";
- sha256 = "d712bf11446133f3146985db6ced3d932cf8f65d6a81900f4b65bb6e914c176a";
+ version = "0.13.1.0";
+ sha256 = "9da47c606db50183e1d9c19dc6626864a50c2838623836e65084951416452dfe";
libraryHaskellDepends = [ base glib gtk3 pango ];
libraryPkgconfigDepends = [ vte ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -227303,7 +228672,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs.gnome) vte;};
- "vty" = callPackage
+ "vty_5_4_0" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, Cabal, containers
, data-default, deepseq, directory, filepath, hashable, HUnit, lens
, mtl, parallel, parsec, QuickCheck, quickcheck-assertions, random
@@ -227334,6 +228703,43 @@ self: {
homepage = "https://github.com/coreyoconnor/vty";
description = "A simple terminal UI library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "vty" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring, Cabal, containers
+ , data-default, deepseq, directory, filepath, hashable, HUnit
+ , microlens, microlens-mtl, microlens-th, mtl, parallel, parsec
+ , QuickCheck, quickcheck-assertions, random, smallcheck, stm
+ , string-qq, terminfo, test-framework, test-framework-hunit
+ , test-framework-smallcheck, text, transformers, unix, utf8-string
+ , vector
+ }:
+ mkDerivation {
+ pname = "vty";
+ version = "5.5.0";
+ sha256 = "9e185e42aff3385767b2f025765d896d8f503719f08cc6484f1c12b795eca41d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base blaze-builder bytestring containers data-default deepseq
+ directory filepath hashable microlens microlens-mtl microlens-th
+ mtl parallel parsec stm terminfo text transformers unix utf8-string
+ vector
+ ];
+ executableHaskellDepends = [
+ base containers data-default microlens microlens-mtl mtl
+ ];
+ testHaskellDepends = [
+ base blaze-builder bytestring Cabal containers data-default deepseq
+ HUnit microlens microlens-mtl mtl QuickCheck quickcheck-assertions
+ random smallcheck stm string-qq terminfo test-framework
+ test-framework-hunit test-framework-smallcheck text unix
+ utf8-string vector
+ ];
+ homepage = "https://github.com/coreyoconnor/vty";
+ description = "A simple terminal UI library";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"vty-examples" = callPackage
@@ -227343,8 +228749,8 @@ self: {
}:
mkDerivation {
pname = "vty-examples";
- version = "5.4.0";
- sha256 = "4c324ed6d398c8792f84860252680ee2b2a3a32ed158a647423818ee08b7ca17";
+ version = "5.5.0";
+ sha256 = "0cc9e351599fcbb0e8f0ee1e60cc31eeb002b8c03bfeb6d3e3d4ec4ed14f5a35";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -227668,6 +229074,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "wai_3_2_1_1" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring
+ , bytestring-builder, hspec, http-types, network, text
+ , transformers, vault
+ }:
+ mkDerivation {
+ pname = "wai";
+ version = "3.2.1.1";
+ sha256 = "5d80a68f5d8806682d8267b7dacc383d094e3ef7ecd705f20e42c91cad564e21";
+ libraryHaskellDepends = [
+ base blaze-builder bytestring bytestring-builder http-types network
+ text transformers vault
+ ];
+ testHaskellDepends = [ base blaze-builder bytestring hspec ];
+ homepage = "https://github.com/yesodweb/wai";
+ description = "Web Application Interface";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"wai-accept-language" = callPackage
({ mkDerivation, base, bytestring, file-embed, http-types, text
, wai, wai-app-static, wai-extra, warp, word8
@@ -229125,7 +230551,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "wai-handler-launch" = callPackage
+ "wai-handler-launch_3_0_1" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, http-types
, process, streaming-commons, transformers, wai, warp
}:
@@ -229139,6 +230565,40 @@ self: {
];
description = "Launch a web app in the default browser";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "wai-handler-launch_3_0_2" = callPackage
+ ({ mkDerivation, async, base, blaze-builder, bytestring, http-types
+ , process, streaming-commons, transformers, wai, warp
+ }:
+ mkDerivation {
+ pname = "wai-handler-launch";
+ version = "3.0.2";
+ sha256 = "06189f6fbaa20baa02dcf19790f017ade73dce2fa57e941e8770cdc2a81ed1c0";
+ libraryHaskellDepends = [
+ async base blaze-builder bytestring http-types process
+ streaming-commons transformers wai warp
+ ];
+ description = "Launch a web app in the default browser";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "wai-handler-launch" = callPackage
+ ({ mkDerivation, async, base, blaze-builder, bytestring, http-types
+ , process, streaming-commons, transformers, wai, warp
+ }:
+ mkDerivation {
+ pname = "wai-handler-launch";
+ version = "3.0.2.1";
+ sha256 = "84a466837e6df61be9ae03f8c0241bee374a0493f24f4bdc2a1e5f38ab705864";
+ libraryHaskellDepends = [
+ async base blaze-builder bytestring http-types process
+ streaming-commons transformers wai warp
+ ];
+ description = "Launch a web app in the default browser";
+ license = stdenv.lib.licenses.mit;
}) {};
"wai-handler-scgi" = callPackage
@@ -229952,8 +231412,8 @@ self: {
pname = "wai-middleware-static";
version = "0.8.0";
sha256 = "a37aaf452e3816928934d39b4eef3c1f7186c9db618d0b303e5136fc858e5e58";
- revision = "2";
- editedCabalFile = "41421955e1c4c86f72ea709dd43ff1e8a7a4b5ad59fb90923441d449a9506327";
+ revision = "3";
+ editedCabalFile = "819eb104224cefb36cb6d8db5c43a2103e0add6c5bb799fad8bde0762493bfa9";
libraryHaskellDepends = [
base base16-bytestring bytestring containers cryptohash directory
expiring-cache-map filepath http-types mime-types mtl old-locale
@@ -230144,6 +231604,7 @@ self: {
base blaze-builder bytestring case-insensitive http-types tasty
tasty-hunit tasty-quickcheck wai
];
+ doCheck = false;
homepage = "https://gitlab.com/twittner/wai-predicates/";
description = "WAI request predicates";
license = stdenv.lib.licenses.mpl20;
@@ -230848,7 +232309,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "wai-websockets" = callPackage
+ "wai-websockets_3_0_0_8" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, case-insensitive
, file-embed, http-types, network, text, transformers, wai
, wai-app-static, warp, websockets
@@ -230871,6 +232332,32 @@ self: {
homepage = "http://github.com/yesodweb/wai";
description = "Provide a bridge between WAI and the websockets package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "wai-websockets" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive
+ , file-embed, http-types, network, text, transformers, wai
+ , wai-app-static, warp, websockets
+ }:
+ mkDerivation {
+ pname = "wai-websockets";
+ version = "3.0.0.9";
+ sha256 = "a2476dcd0474a4d3322b4d0bbf0418eebb834ad03cecd43d1648d0c73c9f2883";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base blaze-builder bytestring case-insensitive http-types network
+ transformers wai websockets
+ ];
+ executableHaskellDepends = [
+ base blaze-builder bytestring case-insensitive file-embed
+ http-types network text transformers wai wai-app-static warp
+ websockets
+ ];
+ homepage = "http://github.com/yesodweb/wai";
+ description = "Provide a bridge between WAI and the websockets package";
+ license = stdenv.lib.licenses.mit;
}) {};
"wait-handle" = callPackage
@@ -230928,6 +232415,8 @@ self: {
pname = "waitra";
version = "0.0.4.0";
sha256 = "5610c69eb377e2714c3e502cf47fff7e116e356890aefb1f4144d3e6c1b16c12";
+ revision = "1";
+ editedCabalFile = "baf3d8d646916af447598800696001326206f154efe3a020a5d1c1de46a6114b";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -232367,6 +233856,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "web-inv-route" = callPackage
+ ({ mkDerivation, base, bytestring, case-insensitive, containers
+ , happstack-server, hashable, http-types, HUnit, invertible
+ , network-uri, snap-core, text, transformers, unordered-containers
+ , wai
+ }:
+ mkDerivation {
+ pname = "web-inv-route";
+ version = "0.1";
+ sha256 = "8973080f0a59429cf97ed1ac0d1060b864f6a25f577c3e150ff0f0a3635ac8fa";
+ libraryHaskellDepends = [
+ base bytestring case-insensitive containers happstack-server
+ hashable http-types invertible network-uri snap-core text
+ transformers unordered-containers wai
+ ];
+ testHaskellDepends = [ base bytestring HUnit network-uri text ];
+ description = "Composable, reversible, efficient web routing based on invertible invariants and bijections";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"web-mongrel2" = callPackage
({ mkDerivation, base, bytestring, data-default, file-embed
, haskell98, HStringTemplate, json, mtl, old-time, parsec
@@ -232613,15 +234122,14 @@ self: {
}:
mkDerivation {
pname = "webapp";
- version = "0.2.0";
- sha256 = "47c0e2d790cc43318241764b73be95f53d651afcbfb9c9e7e7e1fe3348ff7572";
+ version = "0.3.6";
+ sha256 = "cc15c419454db7a1e61bbeb8827d971234b43a120a8d372d3d015991fa04c8ec";
libraryHaskellDepends = [
aeson base base16-bytestring blaze-builder bytestring
case-insensitive http-types mtl network optparse-applicative
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;
@@ -233127,8 +234635,8 @@ self: {
}:
mkDerivation {
pname = "webkit";
- version = "0.14.1.1";
- sha256 = "c80dd015ecbf02b7d018afd1679df78a8c1ce17e3ae6b943f23d4da2ef867e44";
+ version = "0.14.2.0";
+ sha256 = "3fdfe31a039f6168b0a694963fcdf2014e8928955b6fb88f0ef8f2c403473f51";
libraryHaskellDepends = [
base bytestring cairo glib gtk mtl pango text transformers
];
@@ -233141,17 +234649,18 @@ self: {
}) {inherit (pkgs) webkit;};
"webkit-javascriptcore" = callPackage
- ({ mkDerivation, base, glib, gtk, gtk2hs-buildtools, webkit }:
+ ({ mkDerivation, base, gtk2hs-buildtools, webkit }:
mkDerivation {
pname = "webkit-javascriptcore";
- version = "0.13.1.2";
- sha256 = "9645b68c8c4af17002870367f9c3d902154dd56eca8d303b4bcaf3c0504df861";
- libraryHaskellDepends = [ base glib gtk webkit ];
+ version = "0.14.1.0";
+ sha256 = "d3049d1ea5f9a8a7bc9b0d5e85507acfe8af9fa6344bab82443299c17f18ee72";
+ libraryHaskellDepends = [ base ];
+ libraryPkgconfigDepends = [ webkit ];
libraryToolDepends = [ gtk2hs-buildtools ];
description = "JavaScriptCore FFI from webkitgtk";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
+ }) {inherit (pkgs) webkit;};
"webkitgtk3" = callPackage
({ mkDerivation, base, bytestring, cairo, glib, gtk2hs-buildtools
@@ -233172,6 +234681,25 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs) webkit;};
+ "webkitgtk3_0_14_2_0" = callPackage
+ ({ mkDerivation, base, bytestring, cairo, glib, gtk2hs-buildtools
+ , gtk3, mtl, pango, text, transformers, webkit
+ }:
+ mkDerivation {
+ pname = "webkitgtk3";
+ version = "0.14.2.0";
+ sha256 = "dd3e3bc62b31616681ffcee07df11b30155433a2cc7eea0560af53c7560f1a86";
+ libraryHaskellDepends = [
+ base bytestring cairo glib gtk3 mtl pango text transformers
+ ];
+ libraryPkgconfigDepends = [ webkit ];
+ libraryToolDepends = [ gtk2hs-buildtools ];
+ 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
({ mkDerivation, base, glib, gtk2hs-buildtools, gtk3, webkit
, webkitgtk3
@@ -233188,12 +234716,12 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs) webkit;};
- "webkitgtk3-javascriptcore_0_14_0_0" = callPackage
+ "webkitgtk3-javascriptcore_0_14_1_0" = callPackage
({ mkDerivation, base, gtk2hs-buildtools, webkit }:
mkDerivation {
pname = "webkitgtk3-javascriptcore";
- version = "0.14.0.0";
- sha256 = "1e77bcdb17dad3c1db88c5c1a498c9b804a1c486a7397d22fd1f16d874b27477";
+ version = "0.14.1.0";
+ sha256 = "8d75032979d34ac811a06a5d3c7596b0cc176e24304a3834067896b4df0e5d6d";
libraryHaskellDepends = [ base ];
libraryPkgconfigDepends = [ webkit ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -233663,19 +235191,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "werewolf_1_1_0_0" = callPackage
+ "werewolf_1_2_0_2" = callPackage
({ mkDerivation, aeson, base, containers, directory, extra
- , filepath, lens, MonadRandom, mtl, optparse-applicative
- , random-shuffle, text, transformers
+ , filepath, interpolate, lens, MonadRandom, mtl
+ , optparse-applicative, random-shuffle, template-haskell, text
+ , transformers
}:
mkDerivation {
pname = "werewolf";
- version = "1.1.0.0";
- sha256 = "866edf6fccb7ddc54e851f1d6da17ed661302fe9520de3a5cd493bd65b5e35b1";
+ version = "1.2.0.2";
+ sha256 = "606c1561b96511bedbcfc363447bd524c767b1f67cb45c8f904d121c13fcb852";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson base containers extra lens mtl text transformers
+ aeson base containers extra interpolate lens mtl template-haskell
+ text transformers
];
executableHaskellDepends = [
aeson base containers directory extra filepath lens MonadRandom mtl
@@ -233694,8 +235224,8 @@ self: {
}:
mkDerivation {
pname = "werewolf-slack";
- version = "1.0.1.0";
- sha256 = "fb3e1fdb51117c23b4edb0c0022b36e26cddbc04da280b85481af18a097ab6e1";
+ version = "1.0.1.2";
+ sha256 = "536d64b910922f081423300fbf6fcf4a333db2886200e5a418a669dbd3a945ce";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -233707,27 +235237,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "werewolf-slack_1_0_1_1" = callPackage
- ({ mkDerivation, aeson, base, bytestring, extra, http-client
- , http-client-tls, http-types, mtl, optparse-applicative, process
- , text, wai, warp, werewolf
- }:
- mkDerivation {
- pname = "werewolf-slack";
- version = "1.0.1.1";
- sha256 = "1f54514a3482e7afecfb14d60dfb3f98e46f562973727e382eb76db61fdbc73a";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- aeson base bytestring extra http-client http-client-tls http-types
- mtl optparse-applicative process text wai warp werewolf
- ];
- homepage = "https://github.com/hjwylde/werewolf-slack";
- description = "A chat interface for playing werewolf in Slack";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"wheb-mongo" = callPackage
({ mkDerivation, base, bson, mongoDB, mtl, text, Wheb }:
mkDerivation {
@@ -233875,6 +235384,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "wikicfp-scraper" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, filepath, hspec
+ , scalpel, text, time
+ }:
+ mkDerivation {
+ pname = "wikicfp-scraper";
+ version = "0.1.0.0";
+ sha256 = "a930753e1af83b5f2f033da302d57ba2be24a2bd8e5a4ae304f7af89cfd8fe89";
+ libraryHaskellDepends = [
+ attoparsec base bytestring scalpel text time
+ ];
+ testHaskellDepends = [ base bytestring filepath hspec time ];
+ homepage = "https://github.com/debug-ito/wikicfp-scraper";
+ description = "Scrape WikiCFP web site";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"wikipedia4epub" = callPackage
({ mkDerivation, base, bytestring, directory, epub, filepath
, haskell98, HTTP, network, regex-base, regex-posix, tagsoup, url
@@ -234017,6 +235543,20 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "withdependencies_0_2_3" = callPackage
+ ({ mkDerivation, base, conduit, containers, hspec, HUnit, mtl }:
+ mkDerivation {
+ pname = "withdependencies";
+ version = "0.2.3";
+ sha256 = "eae91b83a4e93c9e31ba5aca90607234708cb65f247e8bc6813b6f25d3ddb8b7";
+ libraryHaskellDepends = [ base conduit containers mtl ];
+ testHaskellDepends = [ base conduit hspec HUnit mtl ];
+ 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
({ mkDerivation, base, base-orphans, containers, hashable
, transformers, unordered-containers, vector
@@ -234463,6 +236003,18 @@ self: {
license = stdenv.lib.licenses.gpl2;
}) {};
+ "word-vector" = callPackage
+ ({ mkDerivation, base, bytestring, ghc-prim, vector }:
+ mkDerivation {
+ pname = "word-vector";
+ version = "0.1.0.0";
+ sha256 = "b5c9d2f8d6b2f48bed56e87ef0ab676fa236d6961d467e7892cd407c72ee6bba";
+ libraryHaskellDepends = [ base bytestring ghc-prim vector ];
+ homepage = "https://github.com/andrewthad/bytestring-coerce";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"word24" = callPackage
({ mkDerivation, base, QuickCheck, test-framework
, test-framework-quickcheck2
@@ -235852,6 +237404,7 @@ 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" ];
@@ -236801,7 +238354,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "xml-conduit" = callPackage
+ "xml-conduit_1_3_4_2" = callPackage
({ mkDerivation, attoparsec, base, blaze-builder, blaze-html
, blaze-markup, bytestring, conduit, conduit-extra, containers
, data-default, deepseq, hspec, HUnit, monad-control, resourcet
@@ -236823,6 +238376,31 @@ self: {
homepage = "http://github.com/snoyberg/xml";
description = "Pure-Haskell utilities for dealing with XML with the conduit package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "xml-conduit" = callPackage
+ ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html
+ , blaze-markup, bytestring, conduit, conduit-extra, containers
+ , data-default, deepseq, hspec, HUnit, monad-control, resourcet
+ , text, transformers, xml-types
+ }:
+ mkDerivation {
+ pname = "xml-conduit";
+ version = "1.3.5";
+ sha256 = "25635a066b6a17a0d6c038ddf974a48b6d455d8fa14989f99341703da344dc83";
+ libraryHaskellDepends = [
+ attoparsec base blaze-builder blaze-html blaze-markup bytestring
+ conduit conduit-extra containers data-default deepseq monad-control
+ resourcet text transformers xml-types
+ ];
+ testHaskellDepends = [
+ base blaze-markup bytestring conduit containers hspec HUnit
+ resourcet text transformers xml-types
+ ];
+ homepage = "http://github.com/snoyberg/xml";
+ description = "Pure-Haskell utilities for dealing with XML with the conduit package";
+ license = stdenv.lib.licenses.mit;
}) {};
"xml-conduit-parse" = callPackage
@@ -237667,10 +239245,9 @@ self: {
({ mkDerivation, base, magic, mtl, random, unix, xmonad }:
mkDerivation {
pname = "xmonad-wallpaper";
- version = "0.0.1.2";
- sha256 = "b02e1c7a524dd9cf28d5cff6933194fe245fa4e9247f701ec87195a20a8cf265";
+ version = "0.0.1.3";
+ sha256 = "de2f46159baa7203eae9a5e1539b45039b2c87afe7169db0c58a757d1dbb816f";
libraryHaskellDepends = [ base magic mtl random unix xmonad ];
- jailbreak = true;
description = "xmonad wallpaper extension";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -237830,6 +239407,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "xpathdsv" = callPackage
+ ({ mkDerivation, base, hxt, hxt-xpath, optparse-applicative, text
+ }:
+ mkDerivation {
+ pname = "xpathdsv";
+ version = "0.1.1.0";
+ sha256 = "99967d6d64cee8188578c51e513b4e2f0ae42df8b8118f837f2182d1b83b5862";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base hxt hxt-xpath optparse-applicative text
+ ];
+ homepage = "https://github.com/danchoi/xpathdsv#readme";
+ description = "Command line tool to extract DSV data from HTML and XML with XPATH expressions";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"xsact" = callPackage
({ mkDerivation, array, base, containers, directory, process
, random, unix
@@ -238634,8 +240228,8 @@ self: {
}:
mkDerivation {
pname = "yaml-light-lens";
- version = "0.3.3.1";
- sha256 = "a8d82e1e6a32739dce6fa754c3ef18818b8c709a1ce077c3f554cfc745f3a735";
+ version = "0.3.3.2";
+ sha256 = "27380c456128dc72f117febaf3ade7e8c7a916abc3052e5de9d8ffd5ca01df0d";
libraryHaskellDepends = [
base bytestring bytestring-lexing containers lens yaml-light
];
@@ -238765,6 +240359,8 @@ self: {
pname = "yampa-canvas";
version = "0.2.2";
sha256 = "167c8dc3992d98d879eb281b27a0dbf6fde21ca69992e384df4b5babcdda3e3c";
+ revision = "1";
+ editedCabalFile = "98e99a555170a8b7281116b4e9c829c011b2401f21589f55ae80333ff2d6f34a";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base blank-canvas stm time Yampa ];
@@ -241685,6 +243281,40 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "yesod-bin_1_4_18_2" = callPackage
+ ({ mkDerivation, async, attoparsec, base, base64-bytestring
+ , blaze-builder, bytestring, Cabal, conduit, conduit-extra
+ , containers, data-default-class, deepseq, directory, file-embed
+ , filepath, fsnotify, ghc, ghc-paths, http-client, http-conduit
+ , http-reverse-proxy, http-types, lifted-base, network
+ , optparse-applicative, parsec, process, project-template
+ , resourcet, shakespeare, split, streaming-commons, tar
+ , template-haskell, text, time, transformers, transformers-compat
+ , unix-compat, unordered-containers, wai, wai-extra, warp, warp-tls
+ , yaml, zlib
+ }:
+ mkDerivation {
+ pname = "yesod-bin";
+ version = "1.4.18.2";
+ sha256 = "4cfd0c6bb3a77e7d126a17e9d11fc50325afdb89c8ed04b9692f1e7948724151";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ async attoparsec base base64-bytestring blaze-builder bytestring
+ Cabal conduit conduit-extra containers data-default-class deepseq
+ directory file-embed filepath fsnotify ghc ghc-paths http-client
+ http-conduit http-reverse-proxy http-types lifted-base network
+ optparse-applicative parsec process project-template resourcet
+ shakespeare split streaming-commons tar template-haskell text time
+ transformers transformers-compat unix-compat unordered-containers
+ wai wai-extra warp warp-tls yaml zlib
+ ];
+ homepage = "http://www.yesodweb.com/";
+ description = "The yesod helper executable";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"yesod-bootstrap" = callPackage
({ mkDerivation, base, blaze-html, blaze-markup, conduit
, conduit-extra, containers, either, email-validate
@@ -241694,8 +243324,8 @@ self: {
}:
mkDerivation {
pname = "yesod-bootstrap";
- version = "0.2.1";
- sha256 = "c1eb6ae089f72b389f11c29f7572177c9767e7995d4e50b7a3ed23cdea681492";
+ version = "0.3";
+ sha256 = "e40a9276089146ebfdf2a95b2bc3372b1dca7fb29d9d269b39dd3f4528d3ed01";
libraryHaskellDepends = [
base blaze-html blaze-markup conduit conduit-extra containers
either email-validate lens-family-core lens-family-th MonadRandom
@@ -243305,34 +244935,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "yesod-job-queue" = callPackage
- ({ mkDerivation, aeson, api-field-json-th, base, bytestring
- , classy-prelude-yesod, cron, file-embed, hedis, lens, monad-logger
- , persistent-sqlite, resourcet, stm, text, time, uuid, yesod
- , yesod-core
+ "yesod-ip" = callPackage
+ ({ mkDerivation, base, ip, path-pieces, persistent, text
+ , yesod-core, yesod-form
}:
mkDerivation {
- pname = "yesod-job-queue";
- version = "0.2.0.1";
- sha256 = "872f8f53fbe4f350a08493beaa59a4ad9103e3d3419abbdfbf92ac3122962ebf";
- isLibrary = true;
- isExecutable = true;
+ pname = "yesod-ip";
+ version = "0.4";
+ sha256 = "cad176587618d1184ec6b789090596fa45607fa732629b0a2c7e40e10393f7a4";
libraryHaskellDepends = [
- aeson api-field-json-th base bytestring classy-prelude-yesod cron
- file-embed hedis lens monad-logger stm text time uuid yesod
+ base ip path-pieces persistent text yesod-core yesod-form
];
- executableHaskellDepends = [
- base classy-prelude-yesod hedis monad-logger persistent-sqlite
- resourcet yesod yesod-core
- ];
- testHaskellDepends = [ base ];
- doHaddock = false;
- homepage = "https://github.com/nakaji-dayo/yesod-job-queue#readme";
- description = "Background jobs library for Yesod";
+ homepage = "https://github.com/andrewthad/yesod-ip#readme";
+ description = "Code for using the ip package with yesod";
license = stdenv.lib.licenses.bsd3;
}) {};
- "yesod-job-queue_0_3_0_0" = callPackage
+ "yesod-job-queue" = callPackage
({ mkDerivation, aeson, api-field-json-th, base, bytestring
, classy-prelude-yesod, cron, file-embed, hedis, lens, monad-logger
, persistent-sqlite, resourcet, stm, text, time, uuid, yesod
@@ -243353,10 +244972,10 @@ self: {
resourcet yesod yesod-core
];
testHaskellDepends = [ base ];
+ doHaddock = false;
homepage = "https://github.com/nakaji-dayo/yesod-job-queue#readme";
description = "Background jobs library for Yesod";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yesod-json" = callPackage
@@ -245107,7 +246726,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "yi" = callPackage
+ "yi_0_12_4" = 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
@@ -245141,10 +246760,10 @@ self: {
homepage = "https://yi-editor.github.io";
description = "The Haskell-Scriptable Editor";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "yi_0_12_5" = callPackage
+ "yi" = 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
@@ -245178,7 +246797,7 @@ self: {
homepage = "https://yi-editor.github.io";
description = "The Haskell-Scriptable Editor";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
+ hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
"yi-contrib" = callPackage
@@ -245965,7 +247584,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) zeromq;};
- "zeromq4-haskell" = callPackage
+ "zeromq4-haskell_0_6_4" = callPackage
({ mkDerivation, async, base, bytestring, containers, exceptions
, QuickCheck, semigroups, tasty, tasty-hunit, tasty-quickcheck
, transformers, zeromq
@@ -245984,9 +247603,10 @@ self: {
homepage = "http://github.com/twittner/zeromq-haskell/";
description = "Bindings to ZeroMQ 4.x";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) zeromq;};
- "zeromq4-haskell_0_6_5" = callPackage
+ "zeromq4-haskell" = callPackage
({ mkDerivation, async, base, bytestring, containers, exceptions
, monad-control, QuickCheck, semigroups, tasty, tasty-hunit
, tasty-quickcheck, transformers, transformers-base, zeromq
@@ -246006,7 +247626,6 @@ self: {
homepage = "https://gitlab.com/twittner/zeromq-haskell/";
description = "Bindings to ZeroMQ 4.x";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) zeromq;};
"zeroth" = callPackage
@@ -246102,8 +247721,8 @@ self: {
}:
mkDerivation {
pname = "zip";
- version = "0.1.2";
- sha256 = "a89517ad4b2d2addc7d4c75f3bf51c37770d9ffafc291573d51774b0c36d11fc";
+ version = "0.1.3";
+ sha256 = "9e7a79126ab12c198efcae67dd07f860213ce5a6afb2217053f0342ffdb9e6d1";
libraryHaskellDepends = [
base bytestring bzlib-conduit case-insensitive cereal conduit
conduit-extra containers digest exceptions filepath mtl path
@@ -246268,10 +247887,8 @@ self: {
}:
mkDerivation {
pname = "zippers";
- version = "0.2";
- sha256 = "9a864aa9acb62f018caea6f92520d9e9f9f09b8efada84ba4e9e35c35a008ee6";
- revision = "1";
- editedCabalFile = "3e27022f7ed27e35e73ed36f3aa6b396c7e7b52e864965b8d3cd4dab8394e960";
+ version = "0.2.2";
+ sha256 = "d9c499cec6f60e0556b9874d2bf3b801b0a022b226a396200d11b91d3a1aede7";
libraryHaskellDepends = [ base lens profunctors semigroupoids ];
testHaskellDepends = [ base directory doctest filepath ];
homepage = "http://github.com/ekmett/zippers/";
@@ -246619,8 +248236,8 @@ self: {
({ mkDerivation, base, lens, stm }:
mkDerivation {
pname = "zoom-refs";
- version = "0.0.0.0";
- sha256 = "3780dd561d0902772ff3ddca00fc5431c14e469c568381f5ab2f13eaf4e3765d";
+ version = "0.0.0.1";
+ sha256 = "743c0ed5e93bedf4207838274df02f2d3406c871ce51c00572b43d709978b32b";
libraryHaskellDepends = [ base lens stm ];
description = "Zoom (~ Functor) and pairing (~ Applicative) for mutable references";
license = stdenv.lib.licenses.bsd3;
diff --git a/pkgs/development/interpreters/erlang/R16.nix b/pkgs/development/interpreters/erlang/R16.nix
index 7ae7af30717..6eb89bbf89b 100644
--- a/pkgs/development/interpreters/erlang/R16.nix
+++ b/pkgs/development/interpreters/erlang/R16.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
sed -e s@/bin/pwd@pwd@g -i otp_build
'';
- configureFlags= "--with-ssl=${openssl} ${optionalString odbcSupport "--with-odbc=${unixODBC}"} ${optionalString stdenv.isDarwin "--enable-darwin-64bit"}";
+ configureFlags= "--with-ssl=${openssl.dev} ${optionalString odbcSupport "--with-odbc=${unixODBC}"} ${optionalString stdenv.isDarwin "--enable-darwin-64bit"}";
postInstall = let
manpages = fetchurl {
diff --git a/pkgs/development/interpreters/erlang/R17.nix b/pkgs/development/interpreters/erlang/R17.nix
index b32e3af9865..c597a44a890 100644
--- a/pkgs/development/interpreters/erlang/R17.nix
+++ b/pkgs/development/interpreters/erlang/R17.nix
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
'';
configureFlags= [
- "--with-ssl=${openssl}"
+ "--with-ssl=${openssl.dev}"
] ++ optional enableHipe "--enable-hipe"
++ optional wxSupport "--enable-wx"
++ optional odbcSupport "--with-odbc=${unixODBC}"
diff --git a/pkgs/development/interpreters/erlang/R18.nix b/pkgs/development/interpreters/erlang/R18.nix
index 2fc91d6a2db..42289d2467b 100644
--- a/pkgs/development/interpreters/erlang/R18.nix
+++ b/pkgs/development/interpreters/erlang/R18.nix
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
'';
configureFlags= [
- "--with-ssl=${openssl}"
+ "--with-ssl=${openssl.dev}"
] ++ optional enableHipe "--enable-hipe"
++ optional wxSupport "--enable-wx"
++ optional odbcSupport "--with-odbc=${unixODBC}"
diff --git a/pkgs/development/interpreters/guile/default.nix b/pkgs/development/interpreters/guile/default.nix
index 847ae2997b8..25fa3d0bc74 100644
--- a/pkgs/development/interpreters/guile/default.nix
+++ b/pkgs/development/interpreters/guile/default.nix
@@ -97,10 +97,10 @@
# /usr/include/mp.h from OpenSolaris. See
#
# for details.
- "--with-libgmp-prefix=${gmp}"
+ "--with-libgmp-prefix=${gmp.dev}"
# Same for these (?).
- "--with-libreadline-prefix=${readline}"
+ "--with-libreadline-prefix=${readline.dev}"
"--with-libunistring-prefix=${libunistring}"
# See below.
diff --git a/pkgs/development/interpreters/love/0.7.nix b/pkgs/development/interpreters/love/0.7.nix
index 65f38ae1613..76b08cd35c6 100644
--- a/pkgs/development/interpreters/love/0.7.nix
+++ b/pkgs/development/interpreters/love/0.7.nix
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = ''
-I${SDL}/include/SDL
- -I${freetype}include/freetype2
+ -I${freetype.dev}include/freetype2
'';
meta = {
diff --git a/pkgs/development/interpreters/love/0.8.nix b/pkgs/development/interpreters/love/0.8.nix
index b12c2c40578..e73f831156a 100644
--- a/pkgs/development/interpreters/love/0.8.nix
+++ b/pkgs/development/interpreters/love/0.8.nix
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = ''
-I${SDL.dev}/include/SDL
- -I${freetype}include/freetype2
+ -I${freetype.dev}include/freetype2
'';
meta = {
diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix
index e0dd5a65644..e302f9e55cb 100644
--- a/pkgs/development/interpreters/octave/default.nix
+++ b/pkgs/development/interpreters/octave/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull
-, libX11, graphicsmagick, pcre, pkgconfig, mesa, fltk
+, libsndfile, libX11, graphicsmagick, pcre, pkgconfig, mesa, fltk
, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas
, qt ? null, qscintilla ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null
, suitesparse ? null, gnuplot ? null, jdk ? null, python ? null
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11
- graphicsmagick pcre pkgconfig mesa fltk zlib curl openblas
+ graphicsmagick pcre pkgconfig mesa fltk zlib curl openblas libsndfile
fftw fftwSinglePrec qrupdate ]
++ (stdenv.lib.optional (qt != null) qt)
++ (stdenv.lib.optional (qscintilla != null) qscintilla)
diff --git a/pkgs/development/interpreters/perl/default.nix b/pkgs/development/interpreters/perl/default.nix
index 440acad1b47..3802a43348b 100644
--- a/pkgs/development/interpreters/perl/default.nix
+++ b/pkgs/development/interpreters/perl/default.nix
@@ -105,7 +105,9 @@ let
# TODO: removing those paths would be cleaner than overwriting with nonsense.
substituteInPlace "$out"/lib/perl5/*/*/Config_heavy.pl \
--replace "${libcInc}" /no-such-path \
- --replace "${stdenv.cc.cc or "/no-such-path"}" /no-such-path \
+ --replace "${
+ if stdenv.cc.cc or null != null then stdenv.cc.cc else "/no-such-path"
+ }" /no-such-path \
--replace "$man" /no-such-path
''; # */
diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix
index 2070e61ee98..32e2e7729ee 100644
--- a/pkgs/development/interpreters/php/default.nix
+++ b/pkgs/development/interpreters/php/default.nix
@@ -60,7 +60,7 @@ let
};
curl = {
- configureFlags = ["--with-curl=${curl}"];
+ configureFlags = ["--with-curl=${curl.dev}"];
buildInputs = [curl openssl];
};
@@ -69,7 +69,7 @@ let
};
zlib = {
- configureFlags = ["--with-zlib=${zlib}"];
+ configureFlags = ["--with-zlib=${zlib.dev}"];
buildInputs = [zlib];
};
@@ -85,12 +85,12 @@ let
};
readline = {
- configureFlags = ["--with-readline=${readline}"];
+ configureFlags = ["--with-readline=${readline.dev}"];
buildInputs = [ readline ];
};
sqlite = {
- configureFlags = ["--with-pdo-sqlite=${sqlite}"];
+ configureFlags = ["--with-pdo-sqlite=${sqlite.dev}"];
buildInputs = [ sqlite ];
};
@@ -133,15 +133,15 @@ let
# FIXME: Our own gd package doesn't work, see https://bugs.php.net/bug.php?id=60108.
configureFlags = [
"--with-gd"
- "--with-freetype-dir=${freetype}"
- "--with-png-dir=${libpng}"
- "--with-jpeg-dir=${libjpeg}"
+ "--with-freetype-dir=${freetype.dev}"
+ "--with-png-dir=${libpng.dev}"
+ "--with-jpeg-dir=${libjpeg.dev}"
];
buildInputs = [ libpng libjpeg freetype ];
};
gmp = {
- configureFlags = ["--with-gmp=${gmp}"];
+ configureFlags = ["--with-gmp=${gmp.dev}"];
buildInputs = [ gmp ];
};
@@ -177,7 +177,7 @@ let
};
xsl = {
- configureFlags = ["--with-xsl=${libxslt}"];
+ configureFlags = ["--with-xsl=${libxslt.dev}"];
buildInputs = [libxslt];
};
@@ -187,7 +187,7 @@ let
};
bz2 = {
- configureFlags = ["--with-bz2=${bzip2}"];
+ configureFlags = ["--with-bz2=${bzip2.dev}"];
buildInputs = [bzip2];
};
@@ -294,8 +294,8 @@ let
in {
php55 = generic {
- version = "5.5.35";
- sha256 = "1msqh8ii0qwzzcwlwn8f493x2r3hy2djzrrwd5jgs87893b8sr1d";
+ version = "5.5.36";
+ sha256 = "1fvipg3p8m61kym2ir589vi1l6zm0r95rd97z5s6sq6ylgxfv114";
};
php56 = generic {
@@ -304,8 +304,8 @@ in {
};
php70 = generic {
- version = "7.0.6";
- sha256 = "1dr9cglqvw3n1ln1fmkmp16lmwz2dd2n2akl3s68ap4nm69g3p8l";
+ version = "7.0.7";
+ sha256 = "06ixiaqqndvancqy5xmnzpscd77z2ixv3yrsdq0r8avqqhjjjks7";
};
}
diff --git a/pkgs/development/interpreters/pixie/default.nix b/pkgs/development/interpreters/pixie/default.nix
index 4adaea04ec1..e7d8bf1bc05 100644
--- a/pkgs/development/interpreters/pixie/default.nix
+++ b/pkgs/development/interpreters/pixie/default.nix
@@ -47,7 +47,7 @@ let
patchPhase = ''
(cd pixie-src
patch -p1 < ${./load_paths.patch}
- libraryPaths='["${libuv}" "${libedit}" "${libffi}" "${boost.dev}" "${boost.out}" "${zlib}"]'
+ libraryPaths='["${libuv}" "${libedit}" "${libffi.dev}" "${boost.dev}" "${boost.out}" "${zlib.dev}"]'
export libraryPaths
substituteAllInPlace ./pixie/ffi-infer.pxi)
'';
diff --git a/pkgs/development/interpreters/pixie/dust.nix b/pkgs/development/interpreters/pixie/dust.nix
index 2478ecf53cb..87743023910 100644
--- a/pkgs/development/interpreters/pixie/dust.nix
+++ b/pkgs/development/interpreters/pixie/dust.nix
@@ -1,11 +1,12 @@
-{ stdenv, pixie, fetchgit }:
+{ stdenv, pixie, fetchFromGitHub }:
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
name = "dust-0-91";
- src = fetchgit {
- url = "https://github.com/pixie-lang/dust.git";
+ src = fetchFromGitHub {
+ owner = "pixie-lang";
+ repo = "dust";
rev = "efe469661e749a71e86858fd006f61464810575a";
- sha256 = "0krh7ynald3gqv9f17a4kfx7sx8i31l6j1fhd5k8b6m8cid7f9c1";
+ sha256 = "09n57b6haxwask9m8vimv42ikczf7lgfc7m9izjrcqgs0padvfzc";
};
buildInputs = [ pixie ];
patches = [ ./make-paths-configurable.patch ];
@@ -24,4 +25,10 @@ stdenv.mkDerivation {
cp -a src/ run.pxi $out/share/dust
mv dust $out/bin/dust
'';
+
+ meta = {
+ description = "Provides tooling around pixie, e.g. a nicer repl, running tests and fetching dependencies";
+ homepage = src.meta.homepage;
+ license = stdenv.lib.licenses.lgpl3;
+ };
}
diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix
index 548b7bcecbc..726e2aa6aca 100644
--- a/pkgs/development/interpreters/python/2.6/default.nix
+++ b/pkgs/development/interpreters/python/2.6/default.nix
@@ -1,5 +1,6 @@
{ stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2, includeModules ? false
-, sqlite, tcl, tk, xlibsWrapper, openssl, readline, db, ncurses, gdbm, self, callPackage }:
+, sqlite, tcl, tk, xlibsWrapper, openssl, readline, db, ncurses, gdbm, self, callPackage
+, python26Packages }:
assert zlibSupport -> zlib != null;
@@ -97,6 +98,7 @@ let
isPy2 = true;
isPy26 = true;
buildEnv = callPackage ../wrapper.nix { python = self; };
+ withPackages = import ../with-packages.nix { inherit buildEnv; pythonPackages = python26Packages; };
libPrefix = "python${majorVersion}";
executable = libPrefix;
sitePackages = "lib/${libPrefix}/site-packages";
diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix
index 2e94cb6874e..a72377a4770 100644
--- a/pkgs/development/interpreters/python/2.7/default.nix
+++ b/pkgs/development/interpreters/python/2.7/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, self, callPackage
+{ stdenv, fetchurl, self, callPackage, python27Packages
, bzip2, openssl, gettext
, includeModules ? false
@@ -151,6 +151,7 @@ let
isPy2 = true;
isPy27 = true;
buildEnv = callPackage ../wrapper.nix { python = self; };
+ withPackages = import ../with-packages.nix { inherit buildEnv; pythonPackages = python27Packages; };
libPrefix = "python${majorVersion}";
executable = libPrefix;
sitePackages = "lib/${libPrefix}/site-packages";
diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix
index 3c4580a061f..8c16995d5cc 100644
--- a/pkgs/development/interpreters/python/3.3/default.nix
+++ b/pkgs/development/interpreters/python/3.3/default.nix
@@ -12,6 +12,7 @@
, zlib
, callPackage
, self
+, python33Packages
}:
assert readline != null -> ncurses != null;
@@ -81,6 +82,7 @@ stdenv.mkDerivation {
libPrefix = "python${majorVersion}";
executable = "python3.3m";
buildEnv = callPackage ../wrapper.nix { python = self; };
+ withPackages = import ../with-packages.nix { inherit buildEnv; pythonPackages = python33Packages; };
isPy3 = true;
isPy33 = true;
is_py3k = true; # deprecated
diff --git a/pkgs/development/interpreters/python/3.4/default.nix b/pkgs/development/interpreters/python/3.4/default.nix
index b36eda67867..197ad6fc95b 100644
--- a/pkgs/development/interpreters/python/3.4/default.nix
+++ b/pkgs/development/interpreters/python/3.4/default.nix
@@ -12,6 +12,7 @@
, zlib
, callPackage
, self
+, python34Packages
, CF, configd
}:
@@ -104,6 +105,7 @@ stdenv.mkDerivation {
libPrefix = "python${majorVersion}";
executable = "python3.4m";
buildEnv = callPackage ../wrapper.nix { python = self; };
+ withPackages = import ../with-packages.nix { inherit buildEnv; pythonPackages = python34Packages; };
isPy3 = true;
isPy34 = true;
is_py3k = true; # deprecated
diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix
index 087b5988e26..762ef1ab8be 100644
--- a/pkgs/development/interpreters/python/3.5/default.nix
+++ b/pkgs/development/interpreters/python/3.5/default.nix
@@ -12,6 +12,7 @@
, zlib
, callPackage
, self
+, python35Packages
, CF, configd
}:
@@ -104,6 +105,7 @@ stdenv.mkDerivation {
libPrefix = "python${majorVersion}";
executable = "python${majorVersion}m";
buildEnv = callPackage ../wrapper.nix { python = self; };
+ withPackages = import ../with-packages.nix { inherit buildEnv; pythonPackages = python35Packages; };
isPy3 = true;
isPy35 = true;
is_py3k = true; # deprecated
diff --git a/pkgs/development/interpreters/python/with-packages.nix b/pkgs/development/interpreters/python/with-packages.nix
new file mode 100644
index 00000000000..e1de0b2ee4c
--- /dev/null
+++ b/pkgs/development/interpreters/python/with-packages.nix
@@ -0,0 +1,3 @@
+{ buildEnv, pythonPackages }:
+
+f: let packages = f pythonPackages; in buildEnv.override { extraLibs = packages; }
diff --git a/pkgs/development/interpreters/qnial/default.nix b/pkgs/development/interpreters/qnial/default.nix
new file mode 100644
index 00000000000..70f18740f68
--- /dev/null
+++ b/pkgs/development/interpreters/qnial/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchFromGitHub, unzip, pkgconfig, makeWrapper, ncurses }:
+
+stdenv.mkDerivation rec {
+ name = "qnial-${version}";
+ version = "6.3";
+
+ src = fetchFromGitHub {
+ sha256 = "0426hb8w0wpkisvmf3danj656j6g7rc6v91gqbgzkcj485qjaliw";
+ rev = "cfe8720a4577d6413034faa2878295431bfe39f8";
+ repo = "qnial";
+ owner = "vrthra";
+ };
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ preConfigure = ''
+ cd build;
+ '';
+
+ installPhase = ''
+ cd ..
+ mkdir -p $out/bin $out/lib
+ cp build/nial $out/bin/
+ cp -r niallib $out/lib/
+ '';
+
+ buildInputs = [
+ unzip
+ pkgconfig
+ ncurses
+ ];
+
+ meta = {
+ description = "An array language from Nial Systems";
+ homepage = http://www.nial.com;
+ license = stdenv.lib.licenses.artistic1;
+ maintainers = [ stdenv.lib.maintainers.vrthra ];
+ };
+}
diff --git a/pkgs/development/libraries/aalib/default.nix b/pkgs/development/libraries/aalib/default.nix
index 7ddb78d052e..a6cdf9eb860 100644
--- a/pkgs/development/libraries/aalib/default.nix
+++ b/pkgs/development/libraries/aalib/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
buildInputs = [ ncurses ];
- configureFlags = "--without-x --with-ncurses=${ncurses}";
+ configureFlags = "--without-x --with-ncurses=${ncurses.dev}";
postInstall = ''
mkdir -p $dev/bin
diff --git a/pkgs/development/libraries/apr-util/default.nix b/pkgs/development/libraries/apr-util/default.nix
index 6f0956f1d1d..8df7be4a7d1 100644
--- a/pkgs/development/libraries/apr-util/default.nix
+++ b/pkgs/development/libraries/apr-util/default.nix
@@ -27,9 +27,9 @@ stdenv.mkDerivation rec {
buildInputs = optional stdenv.isFreeBSD autoreconfHook;
- configureFlags = [ "--with-apr=${apr}" "--with-expat=${expat}" ]
+ configureFlags = [ "--with-apr=${apr.dev}" "--with-expat=${expat.dev}" ]
++ optional (!stdenv.isCygwin) "--with-crypto"
- ++ optional sslSupport "--with-openssl=${openssl}"
+ ++ optional sslSupport "--with-openssl=${openssl.dev}"
++ optional bdbSupport "--with-berkeley-db=${db}"
++ optional ldapSupport "--with-ldap=ldap"
++ optionals stdenv.isCygwin
diff --git a/pkgs/development/libraries/at-spi2-atk/default.nix b/pkgs/development/libraries/at-spi2-atk/default.nix
index f3538a12221..b8f86f1fa22 100644
--- a/pkgs/development/libraries/at-spi2-atk/default.nix
+++ b/pkgs/development/libraries/at-spi2-atk/default.nix
@@ -2,14 +2,14 @@
, intltool, dbus_glib, at_spi2_core, libSM }:
stdenv.mkDerivation rec {
- versionMajor = "2.18";
+ versionMajor = "2.20";
versionMinor = "1";
moduleName = "at-spi2-atk";
name = "${moduleName}-${versionMajor}.${versionMinor}";
src = fetchurl {
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
- sha256 = "0bf1g5cj84rmx7p1q547vwbc0hlpcs2wrxnmv96lckfkhs9mzcf4";
+ sha256 = "2358a794e918e8f47ce0c7370eee8fc8a6207ff1afe976ec9ff547a03277bf8e";
};
buildInputs = [ python pkgconfig popt atk libX11 libICE xorg.libXtst libXi
diff --git a/pkgs/development/libraries/at-spi2-core/default.nix b/pkgs/development/libraries/at-spi2-core/default.nix
index e49569bc226..e3c558057c8 100644
--- a/pkgs/development/libraries/at-spi2-core/default.nix
+++ b/pkgs/development/libraries/at-spi2-core/default.nix
@@ -2,14 +2,14 @@
, libX11, xextproto, libSM, libICE, libXtst, libXi, gobjectIntrospection }:
stdenv.mkDerivation rec {
- versionMajor = "2.18";
- versionMinor = "3";
+ versionMajor = "2.20";
+ versionMinor = "1";
moduleName = "at-spi2-core";
name = "${moduleName}-${versionMajor}.${versionMinor}";
src = fetchurl {
url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz";
- sha256 = "0afn4x04j5l352vj0dccb2hkpzg3l2vhr8h1yv89fpqmjkfnm8md";
+ sha256 = "6ed858e781f5aa9a9662b3beb5ef82f733dac040afc8255d85dffd2097f16900";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/libraries/atk/default.nix b/pkgs/development/libraries/atk/default.nix
index 14e2e71c0bd..d75fd235301 100644
--- a/pkgs/development/libraries/atk/default.nix
+++ b/pkgs/development/libraries/atk/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, pkgconfig, perl, glib, libintlOrEmpty, gobjectIntrospection }:
let
- ver_maj = "2.18";
+ ver_maj = "2.20";
ver_min = "0";
in
stdenv.mkDerivation rec {
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://gnome/sources/atk/${ver_maj}/${name}.tar.xz";
- sha256 = "ce6c48d77bf951083029d5a396dd552d836fff3c1715d3a7022e917e46d0c92b";
+ sha256 = "493a50f6c4a025f588d380a551ec277e070b28a82e63ef8e3c06b3ee7c1238f0";
};
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix
index 8ba8dc19009..f2da2624755 100644
--- a/pkgs/development/libraries/boost/generic.nix
+++ b/pkgs/development/libraries/boost/generic.nix
@@ -100,7 +100,7 @@ let
commonConfigureFlags = [
"--includedir=$(dev)/include"
- "--libdir=$(lib)/lib"
+ "--libdir=$(out)/lib"
];
fixup = ''
@@ -111,7 +111,7 @@ let
-exec sed '1i#line 1 "{}"' -i '{}' \;
)
'' + optionalString (stdenv.cross.libc or null == "msvcrt") ''
- ${stdenv.cross.config}-ranlib "$lib/lib/"*.a
+ ${stdenv.cross.config}-ranlib "$out/lib/"*.a
'';
in
diff --git a/pkgs/development/libraries/box2d/2.0.1.nix b/pkgs/development/libraries/box2d/2.0.1.nix
deleted file mode 100644
index 0d1f3bb14ee..00000000000
--- a/pkgs/development/libraries/box2d/2.0.1.nix
+++ /dev/null
@@ -1,83 +0,0 @@
-x@{builderDefsPackage
- , unzip, cmake, mesa, freeglut, libX11, xproto
- , inputproto, libXi
- , ...}:
-builderDefsPackage
-(a :
-let
- helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
- [];
-
- buildInputs = map (n: builtins.getAttr n x)
- (builtins.attrNames (builtins.removeAttrs x helperArgNames));
- sourceInfo = rec {
- baseName="box2d";
- version="2.0.1";
- name="${baseName}-${version}";
- url="http://box2d.googlecode.com/files/Box2D_v${version}.zip";
- hash="62857048aa089b558561074154430883cee491eedd71247f75f488cba859e21f";
- };
-in
-rec {
- src = a.fetchurl {
- url = sourceInfo.url;
- sha256 = sourceInfo.hash;
- };
-
- inherit (sourceInfo) name version;
- inherit buildInputs;
-
- phaseNames = ["fixIncludes" "setVars" "changeSettings" "doMake" "doDeploy"];
-
- goSrcDir = ''cd Box2D'';
-
- fixIncludes = a.fullDepEntry ''
- sed -i Source/Dynamics/Contacts/b2PolyContact.cpp \
- -i Source/Dynamics/Contacts/b2CircleContact.cpp \
- -i Source/Dynamics/Contacts/b2PolyAndCircleContact.cpp \
- -i Source/Common/b2BlockAllocator.cpp \
- -i Source/Collision/b2BroadPhase.cpp \
- -i Examples/TestBed/Framework/Render.cpp \
- -i Examples/TestBed/Tests/BroadPhaseTest.cpp \
- -i Examples/TestBed/Tests/TestEntries.cpp \
- -e '1i#include '
- '' ["minInit" "addInputs" "doUnpack"];
-
- setVars = a.noDepEntry ''
- export NIX_LDFLAGS="$NIX_LDFLAGS -lX11 -lXi"
- '';
-
- doDeploy = a.fullDepEntry ''
- mkdir -p "$out"/lib
- mkdir -p "$out"/include/Box2D
- cp Library/* Source/Gen/float/lib*.{a,so} "$out"/lib
- cp -r Source "$out"/include/Box2D/Source
- find "$out"/include/Box2D/Source ! -name '*.h' -exec rm '{}' ';'
- sed -e s@../Source@Box2D/Source@ -i Include/Box2D.h
- cp Include/Box2D.h "$out"/include/Box2D
- mkdir -p "$out/share"
- cp -r Examples "$out/share"
- '' ["minInit" "addInputs" "doMake" "defEnsureDir"];
-
- changeSettings = a.fullDepEntry ''
- sed -i Source/Common/b2Settings.h -e 's@b2_maxPolygonVertices .*@b2_maxPolygonVertices = 15;@'
- '' ["minInit" "addInputs" "doUnpack"];
-
- meta = {
- description = "2D physics engine";
- maintainers = with a.lib.maintainers;
- [
- raskin
- ];
- platforms = with a.lib.platforms;
- linux;
- license = "bsd";
- branch = "2.0.1";
- };
- passthru = {
- updateInfo = {
- downloadPage = "http://code.google.com/p/box2d/downloads/list";
- };
- };
-}) x
-
diff --git a/pkgs/development/libraries/coprthr/default.nix b/pkgs/development/libraries/coprthr/default.nix
index 40be21131d2..5630daa0d93 100644
--- a/pkgs/development/libraries/coprthr/default.nix
+++ b/pkgs/development/libraries/coprthr/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
configureFlags =
[ "--with-libelf=${libelf}"
- "--with-libevent=${libevent}"
+ "--with-libevent=${libevent.dev}"
"--with-libconfig=${libconfig}"
"--with-opencl-icd-path=$out/etc/OpenCL/vendors"
"--enable-user-install"
diff --git a/pkgs/development/libraries/cyrus-sasl/default.nix b/pkgs/development/libraries/cyrus-sasl/default.nix
index f1cd9d526e4..366e5f613a9 100644
--- a/pkgs/development/libraries/cyrus-sasl/default.nix
+++ b/pkgs/development/libraries/cyrus-sasl/default.nix
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
);
configureFlags = [
- "--with-openssl=${openssl}"
+ "--with-openssl=${openssl.dev}"
];
# Set this variable at build-time to make sure $out can be evaluated.
diff --git a/pkgs/development/libraries/dbus-glib/default.nix b/pkgs/development/libraries/dbus-glib/default.nix
index d06a919cada..376c4de3b5f 100644
--- a/pkgs/development/libraries/dbus-glib/default.nix
+++ b/pkgs/development/libraries/dbus-glib/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, pkgconfig, expat, gettext, libiconv, dbus, glib }:
stdenv.mkDerivation rec {
- name = "dbus-glib-0.104";
+ name = "dbus-glib-0.106";
src = fetchurl {
url = "${meta.homepage}/releases/dbus-glib/${name}.tar.gz";
- sha256 = "1xi1v1msz75qs0s4lkyf1psrksdppa3hwkg0mznc6gpw5flg3hdz";
+ sha256 = "0in0i6v68ixcy0ip28i84hdczf10ykq9x682qgcvls6gdmq552dk";
};
outputs = [ "dev" "out" "docdev" ];
diff --git a/pkgs/development/libraries/expat/CVE-2015-1283-refix.patch b/pkgs/development/libraries/expat/CVE-2015-1283-refix.patch
new file mode 100644
index 00000000000..db9747ea0b3
--- /dev/null
+++ b/pkgs/development/libraries/expat/CVE-2015-1283-refix.patch
@@ -0,0 +1,37 @@
+From 29a11774d8ebbafe8418b4a5ffb4cc1160b194a1 Mon Sep 17 00:00:00 2001
+From: Pascal Cuoq
+Date: Sun, 15 May 2016 09:05:46 +0200
+Subject: [PATCH] Avoid relying on undefined behavior in CVE-2015-1283 fix. It
+ does not really work: https://godbolt.org/g/Zl8gdF
+
+---
+ expat/lib/xmlparse.c | 6 ++++--
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/lib/xmlparse.c b/lib/xmlparse.c
+index 13e080d..cdb12ef 100644
+--- a/lib/xmlparse.c
++++ b/lib/xmlparse.c
+@@ -1693,7 +1693,8 @@ XML_GetBuffer(XML_Parser parser, int len)
+ }
+
+ if (len > bufferLim - bufferEnd) {
+- int neededSize = len + (int)(bufferEnd - bufferPtr);
++ /* Do not invoke signed arithmetic overflow: */
++ int neededSize = (int) ((unsigned)len + (unsigned)(bufferEnd - bufferPtr));
+ if (neededSize < 0) {
+ errorCode = XML_ERROR_NO_MEMORY;
+ return NULL;
+@@ -1725,7 +1726,8 @@ XML_GetBuffer(XML_Parser parser, int len)
+ if (bufferSize == 0)
+ bufferSize = INIT_BUFFER_SIZE;
+ do {
+- bufferSize *= 2;
++ /* Do not invoke signed arithmetic overflow: */
++ bufferSize = (int) (2U * (unsigned) bufferSize);
+ } while (bufferSize < neededSize && bufferSize > 0);
+ if (bufferSize <= 0) {
+ errorCode = XML_ERROR_NO_MEMORY;
+--
+2.8.2
+
diff --git a/pkgs/development/libraries/expat/CVE-2015-1283.patch b/pkgs/development/libraries/expat/CVE-2015-1283.patch
deleted file mode 100644
index 33b975912d4..00000000000
--- a/pkgs/development/libraries/expat/CVE-2015-1283.patch
+++ /dev/null
@@ -1,77 +0,0 @@
-Found at https://hg.mozilla.org/releases/mozilla-esr31/rev/2f3e78643f5c on 2015-07-27. Modified: replaced path parser/expat/lib/xmlparse.c with lib/xmlparse.c.
-diff --git a/lib/xmlparse.c b/lib/xmlparse.c
---- a/lib/xmlparse.c
-+++ b/lib/xmlparse.c
-@@ -1646,29 +1646,40 @@ XML_ParseBuffer(XML_Parser parser, int l
- XmlUpdatePosition(encoding, positionPtr, bufferPtr, &position);
- positionPtr = bufferPtr;
- return result;
- }
-
- void * XMLCALL
- XML_GetBuffer(XML_Parser parser, int len)
- {
-+/* BEGIN MOZILLA CHANGE (sanity check len) */
-+ if (len < 0) {
-+ errorCode = XML_ERROR_NO_MEMORY;
-+ return NULL;
-+ }
-+/* END MOZILLA CHANGE */
- switch (ps_parsing) {
- case XML_SUSPENDED:
- errorCode = XML_ERROR_SUSPENDED;
- return NULL;
- case XML_FINISHED:
- errorCode = XML_ERROR_FINISHED;
- return NULL;
- default: ;
- }
-
- if (len > bufferLim - bufferEnd) {
-- /* FIXME avoid integer overflow */
- int neededSize = len + (int)(bufferEnd - bufferPtr);
-+/* BEGIN MOZILLA CHANGE (sanity check neededSize) */
-+ if (neededSize < 0) {
-+ errorCode = XML_ERROR_NO_MEMORY;
-+ return NULL;
-+ }
-+/* END MOZILLA CHANGE */
- #ifdef XML_CONTEXT_BYTES
- int keep = (int)(bufferPtr - buffer);
-
- if (keep > XML_CONTEXT_BYTES)
- keep = XML_CONTEXT_BYTES;
- neededSize += keep;
- #endif /* defined XML_CONTEXT_BYTES */
- if (neededSize <= bufferLim - buffer) {
-@@ -1687,17 +1698,25 @@ XML_GetBuffer(XML_Parser parser, int len
- }
- else {
- char *newBuf;
- int bufferSize = (int)(bufferLim - bufferPtr);
- if (bufferSize == 0)
- bufferSize = INIT_BUFFER_SIZE;
- do {
- bufferSize *= 2;
-- } while (bufferSize < neededSize);
-+/* BEGIN MOZILLA CHANGE (prevent infinite loop on overflow) */
-+ } while (bufferSize < neededSize && bufferSize > 0);
-+/* END MOZILLA CHANGE */
-+/* BEGIN MOZILLA CHANGE (sanity check bufferSize) */
-+ if (bufferSize <= 0) {
-+ errorCode = XML_ERROR_NO_MEMORY;
-+ return NULL;
-+ }
-+/* END MOZILLA CHANGE */
- newBuf = (char *)MALLOC(bufferSize);
- if (newBuf == 0) {
- errorCode = XML_ERROR_NO_MEMORY;
- return NULL;
- }
- bufferLim = newBuf + bufferSize;
- #ifdef XML_CONTEXT_BYTES
- if (bufferPtr) {
-
-
-
-
diff --git a/pkgs/development/libraries/expat/CVE-2016-0718-v2-2-1.patch b/pkgs/development/libraries/expat/CVE-2016-0718-v2-2-1.patch
new file mode 100644
index 00000000000..92ff2682684
--- /dev/null
+++ b/pkgs/development/libraries/expat/CVE-2016-0718-v2-2-1.patch
@@ -0,0 +1,755 @@
+From cdfcb1b5c95e93b00ae9e9d25708b4a3bee72c15 Mon Sep 17 00:00:00 2001
+From: Sebastian Pipping
+Date: Mon, 2 May 2016 00:02:44 +0200
+Subject: [PATCH] Address CVE-2016-0718 (/patch/ version 2.2.1)
+
+* Out of bounds memory access when doing text conversion on malformed input
+* Integer overflow related to memory allocation
+
+Reported by Gustavo Grieco
+
+Patch credits go to
+* Christian Heimes
+* Karl Waclawek
+* Gustavo Grieco
+* Sebastian Pipping
+* Pascal Cuoq
+---
+ expat/lib/xmlparse.c | 34 +++++++++-----
+ expat/lib/xmltok.c | 115 +++++++++++++++++++++++++++++++++++-------------
+ expat/lib/xmltok.h | 10 ++++-
+ expat/lib/xmltok_impl.c | 62 +++++++++++++-------------
+ 4 files changed, 146 insertions(+), 75 deletions(-)
+
+diff --git a/lib/xmlparse.c b/lib/xmlparse.c
+index e308c79..13e080d 100644
+--- a/lib/xmlparse.c
++++ b/lib/xmlparse.c
+@@ -2426,11 +2426,11 @@ doContent(XML_Parser parser,
+ for (;;) {
+ int bufSize;
+ int convLen;
+- XmlConvert(enc,
++ const enum XML_Convert_Result convert_res = XmlConvert(enc,
+ &fromPtr, rawNameEnd,
+ (ICHAR **)&toPtr, (ICHAR *)tag->bufEnd - 1);
+ convLen = (int)(toPtr - (XML_Char *)tag->buf);
+- if (fromPtr == rawNameEnd) {
++ if ((convert_res == XML_CONVERT_COMPLETED) || (convert_res == XML_CONVERT_INPUT_INCOMPLETE)) {
+ tag->name.strLen = convLen;
+ break;
+ }
+@@ -2651,11 +2651,11 @@ doContent(XML_Parser parser,
+ if (MUST_CONVERT(enc, s)) {
+ for (;;) {
+ ICHAR *dataPtr = (ICHAR *)dataBuf;
+- XmlConvert(enc, &s, next, &dataPtr, (ICHAR *)dataBufEnd);
++ const enum XML_Convert_Result convert_res = XmlConvert(enc, &s, next, &dataPtr, (ICHAR *)dataBufEnd);
+ *eventEndPP = s;
+ charDataHandler(handlerArg, dataBuf,
+ (int)(dataPtr - (ICHAR *)dataBuf));
+- if (s == next)
++ if ((convert_res == XML_CONVERT_COMPLETED) || (convert_res == XML_CONVERT_INPUT_INCOMPLETE))
+ break;
+ *eventPP = s;
+ }
+@@ -3261,11 +3261,11 @@ doCdataSection(XML_Parser parser,
+ if (MUST_CONVERT(enc, s)) {
+ for (;;) {
+ ICHAR *dataPtr = (ICHAR *)dataBuf;
+- XmlConvert(enc, &s, next, &dataPtr, (ICHAR *)dataBufEnd);
++ const enum XML_Convert_Result convert_res = XmlConvert(enc, &s, next, &dataPtr, (ICHAR *)dataBufEnd);
+ *eventEndPP = next;
+ charDataHandler(handlerArg, dataBuf,
+ (int)(dataPtr - (ICHAR *)dataBuf));
+- if (s == next)
++ if ((convert_res == XML_CONVERT_COMPLETED) || (convert_res == XML_CONVERT_INPUT_INCOMPLETE))
+ break;
+ *eventPP = s;
+ }
+@@ -5342,6 +5342,7 @@ reportDefault(XML_Parser parser, const ENCODING *enc,
+ const char *s, const char *end)
+ {
+ if (MUST_CONVERT(enc, s)) {
++ enum XML_Convert_Result convert_res;
+ const char **eventPP;
+ const char **eventEndPP;
+ if (enc == encoding) {
+@@ -5354,11 +5355,11 @@ reportDefault(XML_Parser parser, const ENCODING *enc,
+ }
+ do {
+ ICHAR *dataPtr = (ICHAR *)dataBuf;
+- XmlConvert(enc, &s, end, &dataPtr, (ICHAR *)dataBufEnd);
++ convert_res = XmlConvert(enc, &s, end, &dataPtr, (ICHAR *)dataBufEnd);
+ *eventEndPP = s;
+ defaultHandler(handlerArg, dataBuf, (int)(dataPtr - (ICHAR *)dataBuf));
+ *eventPP = s;
+- } while (s != end);
++ } while ((convert_res != XML_CONVERT_COMPLETED) && (convert_res != XML_CONVERT_INPUT_INCOMPLETE));
+ }
+ else
+ defaultHandler(handlerArg, (XML_Char *)s, (int)((XML_Char *)end - (XML_Char *)s));
+@@ -6163,8 +6164,8 @@ poolAppend(STRING_POOL *pool, const ENCODING *enc,
+ if (!pool->ptr && !poolGrow(pool))
+ return NULL;
+ for (;;) {
+- XmlConvert(enc, &ptr, end, (ICHAR **)&(pool->ptr), (ICHAR *)pool->end);
+- if (ptr == end)
++ const enum XML_Convert_Result convert_res = XmlConvert(enc, &ptr, end, (ICHAR **)&(pool->ptr), (ICHAR *)pool->end);
++ if ((convert_res == XML_CONVERT_COMPLETED) || (convert_res == XML_CONVERT_INPUT_INCOMPLETE))
+ break;
+ if (!poolGrow(pool))
+ return NULL;
+@@ -6248,8 +6249,13 @@ poolGrow(STRING_POOL *pool)
+ }
+ }
+ if (pool->blocks && pool->start == pool->blocks->s) {
+- int blockSize = (int)(pool->end - pool->start)*2;
+- BLOCK *temp = (BLOCK *)
++ BLOCK *temp;
++ int blockSize = (int)((unsigned)(pool->end - pool->start)*2U);
++
++ if (blockSize < 0)
++ return XML_FALSE;
++
++ temp = (BLOCK *)
+ pool->mem->realloc_fcn(pool->blocks,
+ (offsetof(BLOCK, s)
+ + blockSize * sizeof(XML_Char)));
+@@ -6264,6 +6270,10 @@ poolGrow(STRING_POOL *pool)
+ else {
+ BLOCK *tem;
+ int blockSize = (int)(pool->end - pool->start);
++
++ if (blockSize < 0)
++ return XML_FALSE;
++
+ if (blockSize < INIT_BLOCK_SIZE)
+ blockSize = INIT_BLOCK_SIZE;
+ else
+diff --git a/lib/xmltok.c b/lib/xmltok.c
+index bf09dfc..cb98ce1 100644
+--- a/lib/xmltok.c
++++ b/lib/xmltok.c
+@@ -318,39 +318,55 @@ enum { /* UTF8_cvalN is value of masked first byte of N byte sequence */
+ UTF8_cval4 = 0xf0
+ };
+
+-static void PTRCALL
++static enum XML_Convert_Result PTRCALL
+ utf8_toUtf8(const ENCODING *enc,
+ const char **fromP, const char *fromLim,
+ char **toP, const char *toLim)
+ {
++ enum XML_Convert_Result res = XML_CONVERT_COMPLETED;
+ char *to;
+ const char *from;
+ if (fromLim - *fromP > toLim - *toP) {
+ /* Avoid copying partial characters. */
++ res = XML_CONVERT_OUTPUT_EXHAUSTED;
+ for (fromLim = *fromP + (toLim - *toP); fromLim > *fromP; fromLim--)
+ if (((unsigned char)fromLim[-1] & 0xc0) != 0x80)
+ break;
+ }
+- for (to = *toP, from = *fromP; from != fromLim; from++, to++)
++ for (to = *toP, from = *fromP; (from < fromLim) && (to < toLim); from++, to++)
+ *to = *from;
+ *fromP = from;
+ *toP = to;
++
++ if ((to == toLim) && (from < fromLim))
++ return XML_CONVERT_OUTPUT_EXHAUSTED;
++ else
++ return res;
+ }
+
+-static void PTRCALL
++static enum XML_Convert_Result PTRCALL
+ utf8_toUtf16(const ENCODING *enc,
+ const char **fromP, const char *fromLim,
+ unsigned short **toP, const unsigned short *toLim)
+ {
++ enum XML_Convert_Result res = XML_CONVERT_COMPLETED;
+ unsigned short *to = *toP;
+ const char *from = *fromP;
+- while (from != fromLim && to != toLim) {
++ while (from < fromLim && to < toLim) {
+ switch (((struct normal_encoding *)enc)->type[(unsigned char)*from]) {
+ case BT_LEAD2:
++ if (fromLim - from < 2) {
++ res = XML_CONVERT_INPUT_INCOMPLETE;
++ break;
++ }
+ *to++ = (unsigned short)(((from[0] & 0x1f) << 6) | (from[1] & 0x3f));
+ from += 2;
+ break;
+ case BT_LEAD3:
++ if (fromLim - from < 3) {
++ res = XML_CONVERT_INPUT_INCOMPLETE;
++ break;
++ }
+ *to++ = (unsigned short)(((from[0] & 0xf) << 12)
+ | ((from[1] & 0x3f) << 6) | (from[2] & 0x3f));
+ from += 3;
+@@ -358,8 +374,14 @@ utf8_toUtf16(const ENCODING *enc,
+ case BT_LEAD4:
+ {
+ unsigned long n;
+- if (to + 1 == toLim)
++ if (toLim - to < 2) {
++ res = XML_CONVERT_OUTPUT_EXHAUSTED;
+ goto after;
++ }
++ if (fromLim - from < 4) {
++ res = XML_CONVERT_INPUT_INCOMPLETE;
++ goto after;
++ }
+ n = ((from[0] & 0x7) << 18) | ((from[1] & 0x3f) << 12)
+ | ((from[2] & 0x3f) << 6) | (from[3] & 0x3f);
+ n -= 0x10000;
+@@ -377,6 +399,7 @@ utf8_toUtf16(const ENCODING *enc,
+ after:
+ *fromP = from;
+ *toP = to;
++ return res;
+ }
+
+ #ifdef XML_NS
+@@ -425,7 +448,7 @@ static const struct normal_encoding internal_utf8_encoding = {
+ STANDARD_VTABLE(sb_) NORMAL_VTABLE(utf8_)
+ };
+
+-static void PTRCALL
++static enum XML_Convert_Result PTRCALL
+ latin1_toUtf8(const ENCODING *enc,
+ const char **fromP, const char *fromLim,
+ char **toP, const char *toLim)
+@@ -433,30 +456,35 @@ latin1_toUtf8(const ENCODING *enc,
+ for (;;) {
+ unsigned char c;
+ if (*fromP == fromLim)
+- break;
++ return XML_CONVERT_COMPLETED;
+ c = (unsigned char)**fromP;
+ if (c & 0x80) {
+ if (toLim - *toP < 2)
+- break;
++ return XML_CONVERT_OUTPUT_EXHAUSTED;
+ *(*toP)++ = (char)((c >> 6) | UTF8_cval2);
+ *(*toP)++ = (char)((c & 0x3f) | 0x80);
+ (*fromP)++;
+ }
+ else {
+ if (*toP == toLim)
+- break;
++ return XML_CONVERT_OUTPUT_EXHAUSTED;
+ *(*toP)++ = *(*fromP)++;
+ }
+ }
+ }
+
+-static void PTRCALL
++static enum XML_Convert_Result PTRCALL
+ latin1_toUtf16(const ENCODING *enc,
+ const char **fromP, const char *fromLim,
+ unsigned short **toP, const unsigned short *toLim)
+ {
+- while (*fromP != fromLim && *toP != toLim)
++ while (*fromP < fromLim && *toP < toLim)
+ *(*toP)++ = (unsigned char)*(*fromP)++;
++
++ if ((*toP == toLim) && (*fromP < fromLim))
++ return XML_CONVERT_OUTPUT_EXHAUSTED;
++ else
++ return XML_CONVERT_COMPLETED;
+ }
+
+ #ifdef XML_NS
+@@ -483,13 +511,18 @@ static const struct normal_encoding latin1_encoding = {
+ STANDARD_VTABLE(sb_)
+ };
+
+-static void PTRCALL
++static enum XML_Convert_Result PTRCALL
+ ascii_toUtf8(const ENCODING *enc,
+ const char **fromP, const char *fromLim,
+ char **toP, const char *toLim)
+ {
+- while (*fromP != fromLim && *toP != toLim)
++ while (*fromP < fromLim && *toP < toLim)
+ *(*toP)++ = *(*fromP)++;
++
++ if ((*toP == toLim) && (*fromP < fromLim))
++ return XML_CONVERT_OUTPUT_EXHAUSTED;
++ else
++ return XML_CONVERT_COMPLETED;
+ }
+
+ #ifdef XML_NS
+@@ -536,13 +569,14 @@ unicode_byte_type(char hi, char lo)
+ }
+
+ #define DEFINE_UTF16_TO_UTF8(E) \
+-static void PTRCALL \
++static enum XML_Convert_Result PTRCALL \
+ E ## toUtf8(const ENCODING *enc, \
+ const char **fromP, const char *fromLim, \
+ char **toP, const char *toLim) \
+ { \
+- const char *from; \
+- for (from = *fromP; from != fromLim; from += 2) { \
++ const char *from = *fromP; \
++ fromLim = from + (((fromLim - from) >> 1) << 1); /* shrink to even */ \
++ for (; from < fromLim; from += 2) { \
+ int plane; \
+ unsigned char lo2; \
+ unsigned char lo = GET_LO(from); \
+@@ -552,7 +586,7 @@ E ## toUtf8(const ENCODING *enc, \
+ if (lo < 0x80) { \
+ if (*toP == toLim) { \
+ *fromP = from; \
+- return; \
++ return XML_CONVERT_OUTPUT_EXHAUSTED; \
+ } \
+ *(*toP)++ = lo; \
+ break; \
+@@ -562,7 +596,7 @@ E ## toUtf8(const ENCODING *enc, \
+ case 0x4: case 0x5: case 0x6: case 0x7: \
+ if (toLim - *toP < 2) { \
+ *fromP = from; \
+- return; \
++ return XML_CONVERT_OUTPUT_EXHAUSTED; \
+ } \
+ *(*toP)++ = ((lo >> 6) | (hi << 2) | UTF8_cval2); \
+ *(*toP)++ = ((lo & 0x3f) | 0x80); \
+@@ -570,7 +604,7 @@ E ## toUtf8(const ENCODING *enc, \
+ default: \
+ if (toLim - *toP < 3) { \
+ *fromP = from; \
+- return; \
++ return XML_CONVERT_OUTPUT_EXHAUSTED; \
+ } \
+ /* 16 bits divided 4, 6, 6 amongst 3 bytes */ \
+ *(*toP)++ = ((hi >> 4) | UTF8_cval3); \
+@@ -580,7 +614,11 @@ E ## toUtf8(const ENCODING *enc, \
+ case 0xD8: case 0xD9: case 0xDA: case 0xDB: \
+ if (toLim - *toP < 4) { \
+ *fromP = from; \
+- return; \
++ return XML_CONVERT_OUTPUT_EXHAUSTED; \
++ } \
++ if (fromLim - from < 4) { \
++ *fromP = from; \
++ return XML_CONVERT_INPUT_INCOMPLETE; \
+ } \
+ plane = (((hi & 0x3) << 2) | ((lo >> 6) & 0x3)) + 1; \
+ *(*toP)++ = ((plane >> 2) | UTF8_cval4); \
+@@ -596,20 +634,32 @@ E ## toUtf8(const ENCODING *enc, \
+ } \
+ } \
+ *fromP = from; \
++ if (from < fromLim) \
++ return XML_CONVERT_INPUT_INCOMPLETE; \
++ else \
++ return XML_CONVERT_COMPLETED; \
+ }
+
+ #define DEFINE_UTF16_TO_UTF16(E) \
+-static void PTRCALL \
++static enum XML_Convert_Result PTRCALL \
+ E ## toUtf16(const ENCODING *enc, \
+ const char **fromP, const char *fromLim, \
+ unsigned short **toP, const unsigned short *toLim) \
+ { \
++ enum XML_Convert_Result res = XML_CONVERT_COMPLETED; \
++ fromLim = *fromP + (((fromLim - *fromP) >> 1) << 1); /* shrink to even */ \
+ /* Avoid copying first half only of surrogate */ \
+ if (fromLim - *fromP > ((toLim - *toP) << 1) \
+- && (GET_HI(fromLim - 2) & 0xF8) == 0xD8) \
++ && (GET_HI(fromLim - 2) & 0xF8) == 0xD8) { \
+ fromLim -= 2; \
+- for (; *fromP != fromLim && *toP != toLim; *fromP += 2) \
++ res = XML_CONVERT_INPUT_INCOMPLETE; \
++ } \
++ for (; *fromP < fromLim && *toP < toLim; *fromP += 2) \
+ *(*toP)++ = (GET_HI(*fromP) << 8) | GET_LO(*fromP); \
++ if ((*toP == toLim) && (*fromP < fromLim)) \
++ return XML_CONVERT_OUTPUT_EXHAUSTED; \
++ else \
++ return res; \
+ }
+
+ #define SET2(ptr, ch) \
+@@ -1288,7 +1338,7 @@ unknown_isInvalid(const ENCODING *enc, const char *p)
+ return (c & ~0xFFFF) || checkCharRefNumber(c) < 0;
+ }
+
+-static void PTRCALL
++static enum XML_Convert_Result PTRCALL
+ unknown_toUtf8(const ENCODING *enc,
+ const char **fromP, const char *fromLim,
+ char **toP, const char *toLim)
+@@ -1299,21 +1349,21 @@ unknown_toUtf8(const ENCODING *enc,
+ const char *utf8;
+ int n;
+ if (*fromP == fromLim)
+- break;
++ return XML_CONVERT_COMPLETED;
+ utf8 = uenc->utf8[(unsigned char)**fromP];
+ n = *utf8++;
+ if (n == 0) {
+ int c = uenc->convert(uenc->userData, *fromP);
+ n = XmlUtf8Encode(c, buf);
+ if (n > toLim - *toP)
+- break;
++ return XML_CONVERT_OUTPUT_EXHAUSTED;
+ utf8 = buf;
+ *fromP += (AS_NORMAL_ENCODING(enc)->type[(unsigned char)**fromP]
+ - (BT_LEAD2 - 2));
+ }
+ else {
+ if (n > toLim - *toP)
+- break;
++ return XML_CONVERT_OUTPUT_EXHAUSTED;
+ (*fromP)++;
+ }
+ do {
+@@ -1322,13 +1372,13 @@ unknown_toUtf8(const ENCODING *enc,
+ }
+ }
+
+-static void PTRCALL
++static enum XML_Convert_Result PTRCALL
+ unknown_toUtf16(const ENCODING *enc,
+ const char **fromP, const char *fromLim,
+ unsigned short **toP, const unsigned short *toLim)
+ {
+ const struct unknown_encoding *uenc = AS_UNKNOWN_ENCODING(enc);
+- while (*fromP != fromLim && *toP != toLim) {
++ while (*fromP < fromLim && *toP < toLim) {
+ unsigned short c = uenc->utf16[(unsigned char)**fromP];
+ if (c == 0) {
+ c = (unsigned short)
+@@ -1340,6 +1390,11 @@ unknown_toUtf16(const ENCODING *enc,
+ (*fromP)++;
+ *(*toP)++ = c;
+ }
++
++ if ((*toP == toLim) && (*fromP < fromLim))
++ return XML_CONVERT_OUTPUT_EXHAUSTED;
++ else
++ return XML_CONVERT_COMPLETED;
+ }
+
+ ENCODING *
+@@ -1503,7 +1558,7 @@ initScan(const ENCODING * const *encodingTable,
+ {
+ const ENCODING **encPtr;
+
+- if (ptr == end)
++ if (ptr >= end)
+ return XML_TOK_NONE;
+ encPtr = enc->encPtr;
+ if (ptr + 1 == end) {
+diff --git a/lib/xmltok.h b/lib/xmltok.h
+index ca867aa..752007e 100644
+--- a/lib/xmltok.h
++++ b/lib/xmltok.h
+@@ -130,6 +130,12 @@ typedef int (PTRCALL *SCANNER)(const ENCODING *,
+ const char *,
+ const char **);
+
++enum XML_Convert_Result {
++ XML_CONVERT_COMPLETED = 0,
++ XML_CONVERT_INPUT_INCOMPLETE = 1,
++ XML_CONVERT_OUTPUT_EXHAUSTED = 2 /* and therefore potentially input remaining as well */
++};
++
+ struct encoding {
+ SCANNER scanners[XML_N_STATES];
+ SCANNER literalScanners[XML_N_LITERAL_TYPES];
+@@ -158,12 +164,12 @@ struct encoding {
+ const char *ptr,
+ const char *end,
+ const char **badPtr);
+- void (PTRCALL *utf8Convert)(const ENCODING *enc,
++ enum XML_Convert_Result (PTRCALL *utf8Convert)(const ENCODING *enc,
+ const char **fromP,
+ const char *fromLim,
+ char **toP,
+ const char *toLim);
+- void (PTRCALL *utf16Convert)(const ENCODING *enc,
++ enum XML_Convert_Result (PTRCALL *utf16Convert)(const ENCODING *enc,
+ const char **fromP,
+ const char *fromLim,
+ unsigned short **toP,
+diff --git a/lib/xmltok_impl.c b/lib/xmltok_impl.c
+index 9c2895b..6c5a3ba 100644
+--- a/lib/xmltok_impl.c
++++ b/lib/xmltok_impl.c
+@@ -93,13 +93,13 @@ static int PTRCALL
+ PREFIX(scanComment)(const ENCODING *enc, const char *ptr,
+ const char *end, const char **nextTokPtr)
+ {
+- if (ptr != end) {
++ if (ptr < end) {
+ if (!CHAR_MATCHES(enc, ptr, ASCII_MINUS)) {
+ *nextTokPtr = ptr;
+ return XML_TOK_INVALID;
+ }
+ ptr += MINBPC(enc);
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ INVALID_CASES(ptr, nextTokPtr)
+ case BT_MINUS:
+@@ -147,7 +147,7 @@ PREFIX(scanDecl)(const ENCODING *enc, const char *ptr,
+ *nextTokPtr = ptr;
+ return XML_TOK_INVALID;
+ }
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ case BT_PERCNT:
+ if (ptr + MINBPC(enc) == end)
+@@ -233,7 +233,7 @@ PREFIX(scanPi)(const ENCODING *enc, const char *ptr,
+ *nextTokPtr = ptr;
+ return XML_TOK_INVALID;
+ }
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
+ case BT_S: case BT_CR: case BT_LF:
+@@ -242,7 +242,7 @@ PREFIX(scanPi)(const ENCODING *enc, const char *ptr,
+ return XML_TOK_INVALID;
+ }
+ ptr += MINBPC(enc);
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ INVALID_CASES(ptr, nextTokPtr)
+ case BT_QUEST:
+@@ -305,7 +305,7 @@ static int PTRCALL
+ PREFIX(cdataSectionTok)(const ENCODING *enc, const char *ptr,
+ const char *end, const char **nextTokPtr)
+ {
+- if (ptr == end)
++ if (ptr >= end)
+ return XML_TOK_NONE;
+ if (MINBPC(enc) > 1) {
+ size_t n = end - ptr;
+@@ -348,7 +348,7 @@ PREFIX(cdataSectionTok)(const ENCODING *enc, const char *ptr,
+ ptr += MINBPC(enc);
+ break;
+ }
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ #define LEAD_CASE(n) \
+ case BT_LEAD ## n: \
+@@ -391,11 +391,11 @@ PREFIX(scanEndTag)(const ENCODING *enc, const char *ptr,
+ *nextTokPtr = ptr;
+ return XML_TOK_INVALID;
+ }
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
+ case BT_S: case BT_CR: case BT_LF:
+- for (ptr += MINBPC(enc); ptr != end; ptr += MINBPC(enc)) {
++ for (ptr += MINBPC(enc); ptr < end; ptr += MINBPC(enc)) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ case BT_S: case BT_CR: case BT_LF:
+ break;
+@@ -432,7 +432,7 @@ static int PTRCALL
+ PREFIX(scanHexCharRef)(const ENCODING *enc, const char *ptr,
+ const char *end, const char **nextTokPtr)
+ {
+- if (ptr != end) {
++ if (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ case BT_DIGIT:
+ case BT_HEX:
+@@ -441,7 +441,7 @@ PREFIX(scanHexCharRef)(const ENCODING *enc, const char *ptr,
+ *nextTokPtr = ptr;
+ return XML_TOK_INVALID;
+ }
+- for (ptr += MINBPC(enc); ptr != end; ptr += MINBPC(enc)) {
++ for (ptr += MINBPC(enc); ptr < end; ptr += MINBPC(enc)) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ case BT_DIGIT:
+ case BT_HEX:
+@@ -464,7 +464,7 @@ static int PTRCALL
+ PREFIX(scanCharRef)(const ENCODING *enc, const char *ptr,
+ const char *end, const char **nextTokPtr)
+ {
+- if (ptr != end) {
++ if (ptr < end) {
+ if (CHAR_MATCHES(enc, ptr, ASCII_x))
+ return PREFIX(scanHexCharRef)(enc, ptr + MINBPC(enc), end, nextTokPtr);
+ switch (BYTE_TYPE(enc, ptr)) {
+@@ -474,7 +474,7 @@ PREFIX(scanCharRef)(const ENCODING *enc, const char *ptr,
+ *nextTokPtr = ptr;
+ return XML_TOK_INVALID;
+ }
+- for (ptr += MINBPC(enc); ptr != end; ptr += MINBPC(enc)) {
++ for (ptr += MINBPC(enc); ptr < end; ptr += MINBPC(enc)) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ case BT_DIGIT:
+ break;
+@@ -506,7 +506,7 @@ PREFIX(scanRef)(const ENCODING *enc, const char *ptr, const char *end,
+ *nextTokPtr = ptr;
+ return XML_TOK_INVALID;
+ }
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
+ case BT_SEMI:
+@@ -529,7 +529,7 @@ PREFIX(scanAtts)(const ENCODING *enc, const char *ptr, const char *end,
+ #ifdef XML_NS
+ int hadColon = 0;
+ #endif
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
+ #ifdef XML_NS
+@@ -716,7 +716,7 @@ PREFIX(scanLt)(const ENCODING *enc, const char *ptr, const char *end,
+ hadColon = 0;
+ #endif
+ /* we have a start-tag */
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
+ #ifdef XML_NS
+@@ -740,7 +740,7 @@ PREFIX(scanLt)(const ENCODING *enc, const char *ptr, const char *end,
+ case BT_S: case BT_CR: case BT_LF:
+ {
+ ptr += MINBPC(enc);
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr)
+ case BT_GT:
+@@ -785,7 +785,7 @@ static int PTRCALL
+ PREFIX(contentTok)(const ENCODING *enc, const char *ptr, const char *end,
+ const char **nextTokPtr)
+ {
+- if (ptr == end)
++ if (ptr >= end)
+ return XML_TOK_NONE;
+ if (MINBPC(enc) > 1) {
+ size_t n = end - ptr;
+@@ -832,7 +832,7 @@ PREFIX(contentTok)(const ENCODING *enc, const char *ptr, const char *end,
+ ptr += MINBPC(enc);
+ break;
+ }
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ #define LEAD_CASE(n) \
+ case BT_LEAD ## n: \
+@@ -895,7 +895,7 @@ PREFIX(scanPercent)(const ENCODING *enc, const char *ptr, const char *end,
+ *nextTokPtr = ptr;
+ return XML_TOK_INVALID;
+ }
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
+ case BT_SEMI:
+@@ -921,7 +921,7 @@ PREFIX(scanPoundName)(const ENCODING *enc, const char *ptr, const char *end,
+ *nextTokPtr = ptr;
+ return XML_TOK_INVALID;
+ }
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
+ case BT_CR: case BT_LF: case BT_S:
+@@ -941,7 +941,7 @@ PREFIX(scanLit)(int open, const ENCODING *enc,
+ const char *ptr, const char *end,
+ const char **nextTokPtr)
+ {
+- while (ptr != end) {
++ while (ptr < end) {
+ int t = BYTE_TYPE(enc, ptr);
+ switch (t) {
+ INVALID_CASES(ptr, nextTokPtr)
+@@ -973,7 +973,7 @@ PREFIX(prologTok)(const ENCODING *enc, const char *ptr, const char *end,
+ const char **nextTokPtr)
+ {
+ int tok;
+- if (ptr == end)
++ if (ptr >= end)
+ return XML_TOK_NONE;
+ if (MINBPC(enc) > 1) {
+ size_t n = end - ptr;
+@@ -1141,7 +1141,7 @@ PREFIX(prologTok)(const ENCODING *enc, const char *ptr, const char *end,
+ *nextTokPtr = ptr;
+ return XML_TOK_INVALID;
+ }
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ CHECK_NAME_CASES(enc, ptr, end, nextTokPtr)
+ case BT_GT: case BT_RPAR: case BT_COMMA:
+@@ -1204,10 +1204,10 @@ PREFIX(attributeValueTok)(const ENCODING *enc, const char *ptr,
+ const char *end, const char **nextTokPtr)
+ {
+ const char *start;
+- if (ptr == end)
++ if (ptr >= end)
+ return XML_TOK_NONE;
+ start = ptr;
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ #define LEAD_CASE(n) \
+ case BT_LEAD ## n: ptr += n; break;
+@@ -1262,10 +1262,10 @@ PREFIX(entityValueTok)(const ENCODING *enc, const char *ptr,
+ const char *end, const char **nextTokPtr)
+ {
+ const char *start;
+- if (ptr == end)
++ if (ptr >= end)
+ return XML_TOK_NONE;
+ start = ptr;
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ #define LEAD_CASE(n) \
+ case BT_LEAD ## n: ptr += n; break;
+@@ -1326,7 +1326,7 @@ PREFIX(ignoreSectionTok)(const ENCODING *enc, const char *ptr,
+ end = ptr + n;
+ }
+ }
+- while (ptr != end) {
++ while (ptr < end) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ INVALID_CASES(ptr, nextTokPtr)
+ case BT_LT:
+@@ -1373,7 +1373,7 @@ PREFIX(isPublicId)(const ENCODING *enc, const char *ptr, const char *end,
+ {
+ ptr += MINBPC(enc);
+ end -= MINBPC(enc);
+- for (; ptr != end; ptr += MINBPC(enc)) {
++ for (; ptr < end; ptr += MINBPC(enc)) {
+ switch (BYTE_TYPE(enc, ptr)) {
+ case BT_DIGIT:
+ case BT_HEX:
+@@ -1760,7 +1760,7 @@ PREFIX(updatePosition)(const ENCODING *enc,
+ case BT_CR:
+ pos->lineNumber++;
+ ptr += MINBPC(enc);
+- if (ptr != end && BYTE_TYPE(enc, ptr) == BT_LF)
++ if (ptr < end && BYTE_TYPE(enc, ptr) == BT_LF)
+ ptr += MINBPC(enc);
+ pos->columnNumber = (XML_Size)-1;
+ break;
+--
+2.8.2
+
diff --git a/pkgs/development/libraries/expat/default.nix b/pkgs/development/libraries/expat/default.nix
index 774190278cb..1b663fc21a9 100644
--- a/pkgs/development/libraries/expat/default.nix
+++ b/pkgs/development/libraries/expat/default.nix
@@ -1,15 +1,13 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "expat-2.1.0";
+ name = "expat-2.1.1";
src = fetchurl {
- url = "mirror://sourceforge/expat/${name}.tar.gz";
- sha256 = "11pblz61zyxh68s5pdcbhc30ha1b2vfjd83aiwfg4vc15x3hadw2";
+ url = "mirror://sourceforge/expat/${name}.tar.bz2";
+ sha256 = "0ryyjgvy7jq0qb7a9mhc1giy3bzn56aiwrs8dpydqngplbjq9xdg";
};
- patches = [ ./CVE-2015-1283.patch ];
-
outputs = [ "dev" "out" ]; # TODO: fix referrers
outputBin = "dev";
@@ -17,6 +15,10 @@ stdenv.mkDerivation rec {
outputMan = "dev"; # tiny page for a dev tool
+ patches = [ ./CVE-2015-1283-refix.patch ./CVE-2016-0718-v2-2-1.patch ];
+
+ doCheck = true;
+
meta = with stdenv.lib; {
homepage = http://www.libexpat.org/;
description = "A stream-oriented XML parser library written in C";
diff --git a/pkgs/development/libraries/fltk/default.nix b/pkgs/development/libraries/fltk/default.nix
index 6398e5542ac..772ea2030c2 100644
--- a/pkgs/development/libraries/fltk/default.nix
+++ b/pkgs/development/libraries/fltk/default.nix
@@ -1,19 +1,29 @@
-{ composableDerivation, fetchurl, pkgconfig, xlibsWrapper, inputproto, libXi
-, freeglut, mesa, libjpeg, zlib, libXinerama, libXft, libpng }:
+{ stdenv, composableDerivation, fetchurl, pkgconfig, xlibsWrapper, inputproto, libXi
+, freeglut, mesa, libjpeg, zlib, libXinerama, libXft, libpng
+, cfg ? {}
+}:
let inherit (composableDerivation) edf; in
-composableDerivation.composableDerivation {} rec {
- name = "fltk-2.0.x-alpha-r9296";
+let version = "1.3.3"; in
+composableDerivation.composableDerivation {} {
+ name = "fltk-${version}";
src = fetchurl {
- url = "ftp://ftp.easysw.com/pub/fltk/snapshots/${name}.tar.bz2";
- sha256 = "0353ngb7gpyklc9mdz8629big2na3c73akfwhis8fhqp7jkbs9ih";
+ url = "http://fltk.org/pub/fltk/${version}/fltk-${version}-source.tar.gz";
+ sha256 = "15qd7lkz5d5ynz70xhxhigpz3wns39v9xcf7ggkl0792syc8sfgq";
};
+ # http://www.fltk.org/str.php?L3156
+ postPatch = ''
+ substituteInPlace FL/x.H \
+ --replace 'class Fl_XFont_On_Demand' 'class FL_EXPORT Fl_XFont_On_Demand'
+ '';
+
+ nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ xlibsWrapper inputproto libXi freeglut ];
- buildInputs = [ pkgconfig ];
+ enableParallelBuilding = true;
flags =
# this could be tidied up (?).. eg why does it require freeglut without glSupport?
@@ -39,10 +49,15 @@ composableDerivation.composableDerivation {} rec {
localpngSupport = false;
sharedSupport = true;
threadsSupport = true;
- };
+ xftSupport = true;
+ } // cfg;
meta = {
- description = "a C++ cross platform lightweight gui library binding";
+ description = "A C++ cross-platform lightweight GUI library";
homepage = http://www.fltk.org;
+ platforms = stdenv.lib.platforms.linux;
+ license = stdenv.lib.licenses.gpl2;
};
+
}
+
diff --git a/pkgs/development/libraries/fltk/fltk13.nix b/pkgs/development/libraries/fltk/fltk13.nix
deleted file mode 100644
index cb71724a360..00000000000
--- a/pkgs/development/libraries/fltk/fltk13.nix
+++ /dev/null
@@ -1,66 +0,0 @@
-{ composableDerivation, fetchurl, pkgconfig, xlibsWrapper, inputproto, libXi
-, freeglut, mesa, libjpeg, zlib, libXinerama, libXft, libpng
-, cfg ? {}
-, automake, autoconf, libtool
-}:
-
-let inherit (composableDerivation) edf; in
-
-let version = "1.3.3"; in
-composableDerivation.composableDerivation {} {
- name = "fltk-${version}";
-
- src = fetchurl {
- url = "http://fltk.org/pub/fltk/${version}/fltk-${version}-source.tar.gz";
- sha256 = "15qd7lkz5d5ynz70xhxhigpz3wns39v9xcf7ggkl0792syc8sfgq";
- };
-
- # http://www.fltk.org/str.php?L3156
- postPatch = ''
- substituteInPlace FL/x.H \
- --replace 'class Fl_XFont_On_Demand' 'class FL_EXPORT Fl_XFont_On_Demand'
- '';
-
- propagatedBuildInputs = [ xlibsWrapper inputproto libXi freeglut ];
-
- enableParallelBilding = true;
-
- nativeBuildInputs = [
- pkgconfig
- automake autoconf libtool # only required because of patch
- ];
-
- flags =
- # this could be tidied up (?).. eg why does it require freeglut without glSupport?
- edf { name = "cygwin"; } # use the CygWin libraries default=no
- // edf { name = "debug"; } # turn on debugging default=no
- // edf { name = "gl"; enable = { buildInputs = [ mesa ]; }; } # turn on OpenGL support default=yes
- // edf { name = "shared"; } # turn on shared libraries default=no
- // edf { name = "threads"; } # enable multi-threading support
- // edf { name = "quartz"; enable = { buildInputs = "quartz"; }; } # don't konw yet what quartz is # use Quartz instead of Quickdraw (default=no)
- // edf { name = "largefile"; } # omit support for large files
- // edf { name = "localjpeg"; disable = { buildInputs = [libjpeg]; }; } # use local JPEG library, default=auto
- // edf { name = "localzlib"; disable = { buildInputs = [zlib]; }; } # use local ZLIB library, default=auto
- // edf { name = "localpng"; disable = { buildInputs = [libpng]; }; } # use local PNG library, default=auto
- // edf { name = "xinerama"; enable = { buildInputs = [libXinerama]; }; } # turn on Xinerama support default=no
- // edf { name = "xft"; enable = { buildInputs=[libXft]; }; } # turn on Xft support default=no
- // edf { name = "xdbe"; }; # turn on Xdbe support default=no
-
- cfg = {
- largefileSupport = true; # is default
- glSupport = true; # doesn't build without it. Why?
- localjpegSupport = false;
- localzlibSupport = false;
- localpngSupport = false;
- sharedSupport = true;
- threadsSupport = true;
- } // cfg;
-
- meta = {
- description = "A C++ cross-platform light-weight GUI library binding";
- homepage = http://www.fltk.org;
- };
-
- patches = [
- ];
-}
diff --git a/pkgs/development/libraries/gd/CVE-2016-3074.patch b/pkgs/development/libraries/gd/CVE-2016-3074.patch
deleted file mode 100644
index 76994697729..00000000000
--- a/pkgs/development/libraries/gd/CVE-2016-3074.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/src/gd_gd2.c b/src/gd_gd2.c
-index 6f28461..a50b33d 100644
---- a/src/gd_gd2.c
-+++ b/src/gd_gd2.c
-@@ -165,6 +165,8 @@ _gd2GetHeader (gdIOCtxPtr in, int *sx, int *sy,
- if (gdGetInt (&cidx[i].size, in) != 1) {
- goto fail2;
- };
-+ if (cidx[i].offset < 0 || cidx[i].size < 0)
-+ goto fail2;
- };
- *chunkIdx = cidx;
- };
diff --git a/pkgs/development/libraries/gd/default.nix b/pkgs/development/libraries/gd/default.nix
index 47218a803c0..94dae10db3d 100644
--- a/pkgs/development/libraries/gd/default.nix
+++ b/pkgs/development/libraries/gd/default.nix
@@ -3,6 +3,7 @@
, zlib
, libjpeg
, libpng
+, libwebp
, libtiff ? null
, libXpm ? null
, fontconfig
@@ -11,21 +12,21 @@
stdenv.mkDerivation rec {
name = "gd-${version}";
- version = "2.1.1";
+ version = "2.2.1";
src = fetchurl {
url = "https://github.com/libgd/libgd/releases/download/${name}/libgd-${version}.tar.xz";
- sha256 = "11djy9flzxczphigqgp7fbbblbq35gqwwhn9xfcckawlapa1xnls";
+ sha256 = "0xmrqka1ggqgml84xbmkw1y0r0lg7qn657v5b1my8pry92p651vh";
};
- patches = [
- ./CVE-2016-3074.patch
- ];
-
hardeningDisable = [ "format" ];
nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ zlib fontconfig freetype libjpeg libpng libtiff libXpm ];
+ buildInputs = [ zlib fontconfig freetype libjpeg libpng libwebp libtiff libXpm ];
+
+ outputs = [ "dev" "out" "bin" ];
+
+ postFixup = ''moveToOutput "bin/gdlib-config" $dev'';
meta = with stdenv.lib; {
homepage = https://libgd.github.io/;
diff --git a/pkgs/development/libraries/gdal/default.nix b/pkgs/development/libraries/gdal/default.nix
index 8f00bee8911..a748bb9ac8f 100644
--- a/pkgs/development/libraries/gdal/default.nix
+++ b/pkgs/development/libraries/gdal/default.nix
@@ -31,10 +31,10 @@ composableDerivation.composableDerivation {} (fixed: rec {
preConfigure = "export CFLAGS=-O0 CXXFLAGS=-O0; unset CC CXX";
configureFlags = [
- "--with-jpeg=${libjpeg}"
- "--with-libtiff=${libtiff}" # optional (without largetiff support)
- "--with-libpng=${libpng}" # optional
- "--with-libz=${zlib}" # optional
+ "--with-jpeg=${libjpeg.dev}"
+ "--with-libtiff=${libtiff.dev}" # optional (without largetiff support)
+ "--with-libpng=${libpng.dev}" # optional
+ "--with-libz=${zlib.dev}" # optional
"--with-pg=${postgresql}/bin/pg_config"
"--with-mysql=${mysql.lib}/bin/mysql_config"
diff --git a/pkgs/development/libraries/gdal/gdal-1_11.nix b/pkgs/development/libraries/gdal/gdal-1_11.nix
index 2640159725a..b62f87c2a21 100644
--- a/pkgs/development/libraries/gdal/gdal-1_11.nix
+++ b/pkgs/development/libraries/gdal/gdal-1_11.nix
@@ -26,10 +26,10 @@ composableDerivation.composableDerivation {} (fixed: rec {
preConfigure = "export CFLAGS=-O0 CXXFLAGS=-O0; unset CC CXX";
configureFlags = [
- "--with-jpeg=${libjpeg}"
- "--with-libtiff=${libtiff}" # optional (without largetiff support)
- "--with-libpng=${libpng}" # optional
- "--with-libz=${zlib}" # optional
+ "--with-jpeg=${libjpeg.dev}"
+ "--with-libtiff=${libtiff.dev}" # optional (without largetiff support)
+ "--with-libpng=${libpng.dev}" # optional
+ "--with-libz=${zlib.dev}" # optional
"--with-pg=${postgresql}/bin/pg_config"
"--with-mysql=${mysql.lib}/bin/mysql_config"
diff --git a/pkgs/development/libraries/ggz_base_libs/default.nix b/pkgs/development/libraries/ggz_base_libs/default.nix
index 5e3adb0ace2..631160487d8 100644
--- a/pkgs/development/libraries/ggz_base_libs/default.nix
+++ b/pkgs/development/libraries/ggz_base_libs/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
buildInputs = [ intltool openssl expat libgcrypt ];
configureFlags = [
- "--with-ssl-dir=${openssl}/"
+ "--with-ssl-dir=${openssl.dev}/"
"--with-tls"
];
diff --git a/pkgs/development/libraries/glib/default.nix b/pkgs/development/libraries/glib/default.nix
index b3b9dfcef16..3c044bb6efa 100644
--- a/pkgs/development/libraries/glib/default.nix
+++ b/pkgs/development/libraries/glib/default.nix
@@ -40,7 +40,7 @@ let
'';
ver_maj = "2.48";
- ver_min = "0";
+ ver_min = "1";
in
stdenv.mkDerivation rec {
@@ -48,7 +48,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://gnome/sources/glib/${ver_maj}/${name}.tar.xz";
- sha256 = "0d3w2hblrw7vvpx60l1kbvb830ygn3v8zhwdz65cc5593j9ycjvl";
+ sha256 = "74411bff489cb2a3527bac743a51018841a56a4d896cc1e0d0d54f8166a14612";
};
patches = optional stdenv.isDarwin ./darwin-compilation.patch ++ optional doCheck ./skip-timer-test.patch;
diff --git a/pkgs/development/libraries/goocanvas/default.nix b/pkgs/development/libraries/goocanvas/default.nix
index 45442072d39..77af66f9724 100644
--- a/pkgs/development/libraries/goocanvas/default.nix
+++ b/pkgs/development/libraries/goocanvas/default.nix
@@ -1,11 +1,13 @@
{ stdenv, fetchurl, gtk, cairo, glib, pkgconfig }:
-stdenv.mkDerivation {
- name = "goocanvas-0.10";
+stdenv.mkDerivation rec {
+ majVersion = "1.0";
+ version = "${majVersion}.0";
+ name = "goocanvas-${version}";
src = fetchurl {
- url = mirror://sourceforge/goocanvas/goocanvas-0.10.tar.gz;
- sha256 = "0b49szbr3n7vpavly9w17ipa8q3ydicdcd177vxbdvbsnvg7aqp9";
+ url = "mirror://gnome/sources/goocanvas/${majVersion}/${name}.tar.bz2";
+ sha256 = "07kicpcacbqm3inp7zq32ldp95mxx4kfxpaazd0x5jk7hpw2w1qw";
};
buildInputs = [ gtk cairo glib pkgconfig ];
diff --git a/pkgs/development/libraries/gtk+/2.x.nix b/pkgs/development/libraries/gtk+/2.x.nix
index f3ebc189cd7..faaff415f5f 100644
--- a/pkgs/development/libraries/gtk+/2.x.nix
+++ b/pkgs/development/libraries/gtk+/2.x.nix
@@ -8,11 +8,11 @@ assert xineramaSupport -> xorg.libXinerama != null;
assert cupsSupport -> cups != null;
stdenv.mkDerivation rec {
- name = "gtk+-2.24.29";
+ name = "gtk+-2.24.30";
src = fetchurl {
url = "mirror://gnome/sources/gtk+/2.24/${name}.tar.xz";
- sha256 = "1f1ifv1ijrda4jx831l24d3ww65v5gf56r464fi11n6k02bcah87";
+ sha256 = "0d15cec3b6d55c60eac205b1f3ba81a1ed4eadd9d0f8e7c508bc7065d0c4ca50";
};
outputs = [ "dev" "out" "docdev" ];
diff --git a/pkgs/development/libraries/gtk+/3.x.nix b/pkgs/development/libraries/gtk+/3.x.nix
index b1991ada402..e6c95963865 100644
--- a/pkgs/development/libraries/gtk+/3.x.nix
+++ b/pkgs/development/libraries/gtk+/3.x.nix
@@ -12,7 +12,7 @@ with stdenv.lib;
let
ver_maj = "3.20";
- ver_min = "3";
+ ver_min = "5";
version = "${ver_maj}.${ver_min}";
in
stdenv.mkDerivation rec {
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://gnome/sources/gtk+/${ver_maj}/gtk+-${version}.tar.xz";
- sha256 = "3834f3bf23b260b3e5ebfea41102e2026a8af29e36c3620edf4a5cf05e82f694";
+ sha256 = "9790b0267384904ad8a08e7f16e5f9ff1c4037de57788d48d1eaf528355b1564";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/libraries/gupnp/default.nix b/pkgs/development/libraries/gupnp/default.nix
index 45f5217d3c9..755a4e8fcdc 100644
--- a/pkgs/development/libraries/gupnp/default.nix
+++ b/pkgs/development/libraries/gupnp/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ glib gssdp libsoup libxml2 libuuid ];
postInstall = ''
- ln -sv ${libsoup}/include/*/libsoup $out/include
+ ln -sv ${libsoup.dev}/include/*/libsoup $out/include
ln -sv ${libxml2.dev}/include/*/libxml $out/include
ln -sv ${gssdp}/include/*/libgssdp $out/include
'';
diff --git a/pkgs/development/libraries/harfbuzz/default.nix b/pkgs/development/libraries/harfbuzz/default.nix
index 2d84b1e73a8..4d8f005bf88 100644
--- a/pkgs/development/libraries/harfbuzz/default.nix
+++ b/pkgs/development/libraries/harfbuzz/default.nix
@@ -5,7 +5,7 @@
}:
let
- version = "1.1.2";
+ version = "1.2.7";
inherit (stdenv.lib) optional optionals optionalString;
in
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-${version}.tar.bz2";
- sha256 = "07s6z3hbrb4rdfgzmln169wxz4nm5y7qbr02ik5c7drxpn85fb2a";
+ sha256 = "09lh8x6qj0cd950whgaqqi3c4pqbl6z7aw9ddm73i14bw056185v";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/libraries/hiredis/default.nix b/pkgs/development/libraries/hiredis/default.nix
index 86b1a2c72a5..7ff8ed61cab 100644
--- a/pkgs/development/libraries/hiredis/default.nix
+++ b/pkgs/development/libraries/hiredis/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "hiredis-${version}";
- version = "0.13.1";
+ version = "0.13.3";
src = fetchFromGitHub {
owner = "redis";
repo = "hiredis";
rev = "v${version}";
- sha256 = "15rzq7n7z9h143smrnd34f9gh24swwal6r9z9xlxsl0jxabiv71l";
+ sha256 = "1qxiv61bsp6s847hhkxqj7vnbdlac089r2qdp3zgxhhckaflhb7r";
};
PREFIX = "\${out}";
diff --git a/pkgs/development/libraries/kerberos/heimdal.nix b/pkgs/development/libraries/kerberos/heimdal.nix
index 175d0c7bc3b..3740cf18b1e 100644
--- a/pkgs/development/libraries/kerberos/heimdal.nix
+++ b/pkgs/development/libraries/kerberos/heimdal.nix
@@ -32,13 +32,13 @@ stdenv.mkDerivation rec {
"--sysconfdir=/etc"
"--localstatedir=/var"
"--enable-hdb-openldap-module"
- "--with-sqlite3=${sqlite}"
+ "--with-sqlite3=${sqlite.dev}"
"--with-libedit=${libedit}"
- "--with-openssl=${openssl}"
+ "--with-openssl=${openssl.dev}"
"--without-x"
"--with-berkeley-db=${db}"
] ++ optionals (!libOnly) [
- "--with-openldap=${openldap}"
+ "--with-openldap=${openldap.dev}"
] ++ optionals (!stdenv.isFreeBSD) [
"--with-capng"
];
diff --git a/pkgs/development/libraries/ldns/default.nix b/pkgs/development/libraries/ldns/default.nix
index b1f81549ef0..c279d698e12 100644
--- a/pkgs/development/libraries/ldns/default.nix
+++ b/pkgs/development/libraries/ldns/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ perl ];
buildInputs = [ openssl ];
- configureFlags = [ "--with-ssl=${openssl}" "--with-drill" ];
+ configureFlags = [ "--with-ssl=${openssl.dev}" "--with-drill" ];
meta = with stdenv.lib; {
description = "Library with the aim of simplifying DNS programming in C";
diff --git a/pkgs/development/libraries/leatherman/default.nix b/pkgs/development/libraries/leatherman/default.nix
index 60205d7a856..bfb091f424a 100644
--- a/pkgs/development/libraries/leatherman/default.nix
+++ b/pkgs/development/libraries/leatherman/default.nix
@@ -2,10 +2,10 @@
stdenv.mkDerivation rec {
name = "leatherman-${version}";
- version = "0.4.2";
+ version = "0.7.0";
src = fetchFromGitHub {
- sha256 = "07bgv99lzzhxy4l7mdyassxqy33zv7arvfw63bymsqavppphqlrr";
+ sha256 = "1m37zcr11a2g08wbkpxgav97m2fr14in2zhdhhv5krci5i2grzd7";
rev = version;
repo = "leatherman";
owner = "puppetlabs";
diff --git a/pkgs/development/libraries/libclxclient/default.nix b/pkgs/development/libraries/libclxclient/default.nix
index 4dca6b57c75..9fb01df930a 100644
--- a/pkgs/development/libraries/libclxclient/default.nix
+++ b/pkgs/development/libraries/libclxclient/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
buildInputs = [ libclthreads libX11 libXft xorg.xproto ];
- NIX_CFLAGS_COMPILE = "-I${xorg.xproto}/include -I${libXft}/include";
+ NIX_CFLAGS_COMPILE = "-I${xorg.xproto}/include -I${libXft.dev}/include";
patchPhase = ''
sed -e "s@ldconfig@@" -i Makefile
diff --git a/pkgs/development/libraries/libdrm/default.nix b/pkgs/development/libraries/libdrm/default.nix
index ad524ffeb02..d2bb05a3bb6 100644
--- a/pkgs/development/libraries/libdrm/default.nix
+++ b/pkgs/development/libraries/libdrm/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, pkgconfig, libpthreadstubs, libpciaccess, udev, valgrind }:
stdenv.mkDerivation rec {
- name = "libdrm-2.4.66";
+ name = "libdrm-2.4.68";
src = fetchurl {
url = "http://dri.freedesktop.org/libdrm/${name}.tar.bz2";
- sha256 = "79cb8e988749794edfb2d777b298d5292eff353bbbb71ed813589e61d2bc2d76";
+ sha256 = "5b4bd9a5922929bc716411cb74061fbf31b06ba36feb89bc1358a91a8d0ca9df";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/libraries/libksi/default.nix b/pkgs/development/libraries/libksi/default.nix
index 1dd71024681..39de886a0b7 100644
--- a/pkgs/development/libraries/libksi/default.nix
+++ b/pkgs/development/libraries/libksi/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
buildInputs = [ openssl curl ];
configureFlags = [
- "--with-openssl=${openssl}"
+ "--with-openssl=${openssl.dev}"
"--with-cafile=/etc/ssl/certs/ca-certificates.crt"
];
diff --git a/pkgs/development/libraries/libmp3splt/default.nix b/pkgs/development/libraries/libmp3splt/default.nix
index 9074eb470b6..08882291d1f 100644
--- a/pkgs/development/libraries/libmp3splt/default.nix
+++ b/pkgs/development/libraries/libmp3splt/default.nix
@@ -1,20 +1,22 @@
{ stdenv, fetchurl, libtool, libmad, libid3tag }:
stdenv.mkDerivation rec {
- name = "libmp3splt-0.9.1";
+ name = "libmp3splt-0.9.2";
src = fetchurl {
- url = "http://prdownloads.sourceforge.net/mp3splt/${name}.tar.gz";
- sha256 = "17ar9d669cnirkz1kdrim687wzi36y8inapnj4svlsvr00vdzfxa";
+ url = "mirror://sourceforge/mp3splt/${name}.tar.gz";
+ sha256 = "1p1mn2hsmj5cp40fnc8g1yfvk72p8pjxi866gjdkgjsqrr7xdvih";
};
- buildInputs = [ libtool libmad libid3tag ];
+ outputs = [ "dev" "out" ];
+ nativeBuildInputs = [ libtool ];
+ buildInputs = [ libmad libid3tag ];
configureFlags = "--disable-pcre";
meta = with stdenv.lib; {
homepage = http://sourceforge.net/projects/mp3splt/;
- description = "utility to split mp3, ogg vorbis and FLAC files without decoding";
+ description = "Utility to split mp3, ogg vorbis and FLAC files without decoding";
maintainers = with maintainers; [ bosu ];
platforms = platforms.unix;
};
diff --git a/pkgs/development/libraries/libndp/default.nix b/pkgs/development/libraries/libndp/default.nix
index c32e6999ecf..888fe423b47 100644
--- a/pkgs/development/libraries/libndp/default.nix
+++ b/pkgs/development/libraries/libndp/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "libndp-1.5";
+ name = "libndp-1.6";
src = fetchurl {
url = "http://libndp.org/files/${name}.tar.gz";
- sha256 = "15f743hjc7yy2sv3hzvfc27s1gny4mh5aww59vn195fff2midwgs";
+ sha256 = "03mczwrxqbp54msafxzzyhaazkvjdwm2kipjkrb5xg8kw22glz8c";
};
meta = with stdenv.lib; {
@@ -16,4 +16,4 @@ stdenv.mkDerivation rec {
license = licenses.lgpl21;
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/development/libraries/libpipeline/default.nix b/pkgs/development/libraries/libpipeline/default.nix
index 3f91540dc80..038556261a4 100644
--- a/pkgs/development/libraries/libpipeline/default.nix
+++ b/pkgs/development/libraries/libpipeline/default.nix
@@ -8,6 +8,8 @@ stdenv.mkDerivation rec {
sha256 = "1vmrs4nvdsmb550bk10cankrd42ffczlibpsnafxpak306rdfins";
};
+ patches = stdenv.lib.optionals stdenv.isDarwin [ ./fix-on-osx.patch ];
+
meta = with stdenv.lib; {
homepage = "http://libpipeline.nongnu.org";
description = "C library for manipulating pipelines of subprocesses in a flexible and convenient way";
diff --git a/pkgs/development/libraries/libpipeline/fix-on-osx.patch b/pkgs/development/libraries/libpipeline/fix-on-osx.patch
new file mode 100644
index 00000000000..c539e2dde97
--- /dev/null
+++ b/pkgs/development/libraries/libpipeline/fix-on-osx.patch
@@ -0,0 +1,13 @@
+diff --git a/lib/pipeline.c b/lib/pipeline.c
+index 26478f9..1612307 100644
+--- a/lib/pipeline.c
++++ b/lib/pipeline.c
+@@ -75,6 +75,8 @@
+ # endif
+ #endif
+
++const char* program_name = "libpipeline";
++
+ #if defined(HAVE_SETENV) && !defined(HAVE_CLEARENV)
+ int clearenv (void)
+ {
diff --git a/pkgs/development/libraries/libpng/default.nix b/pkgs/development/libraries/libpng/default.nix
index a5a0e1d42a3..71b7b2e18ef 100644
--- a/pkgs/development/libraries/libpng/default.nix
+++ b/pkgs/development/libraries/libpng/default.nix
@@ -3,11 +3,11 @@
assert zlib != null;
let
- version = "1.6.20";
- sha256 = "12wis4rlisfnw79pj2778m42m94xpi9nq8m385hxk11lkyg9biam";
+ version = "1.6.21";
+ sha256 = "10r0xqasm8fi0dx95bpca63ab4myb8g600ypyndj2r4jxd4ii3vc";
patch_src = fetchurl {
url = "mirror://sourceforge/libpng-apng/libpng-${version}-apng.patch.gz";
- sha256 = "11xgal9qk6fmqdgcb37xg55f2y58wizszw54p1pyq855d2xpwfz6";
+ sha256 = "0wwcc52yzjaxvpfkicz20j7yzpy02hpnsm4jjlvw74gy4qjhx9vd";
};
whenPatched = stdenv.lib.optionalString apngSupport;
diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix
index 8540eccf2da..ea4db82c510 100644
--- a/pkgs/development/libraries/libpsl/default.nix
+++ b/pkgs/development/libraries/libpsl/default.nix
@@ -3,10 +3,10 @@
let
- listVersion = "2016-05-10";
+ listVersion = "2016-05-23";
listSources = fetchFromGitHub {
- sha256 = "1bpdli2q5ap677yg0w0v7q5qmaxnm2y17wakzmc0k6k7m7xfyzw0";
- rev = "2226f9cc92213d0d68a74ecb535b15b3af00388a";
+ sha256 = "1sld9s9d9g3fnppyvvn5w0xw50g1gq43d7yyk9yb710268kh31jc";
+ rev = "05f7a0a82e2fea5afb8ba3736db3c294db270849";
repo = "list";
owner = "publicsuffix";
};
diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix
index e039711e457..3c47a0453de 100644
--- a/pkgs/development/libraries/libuv/default.nix
+++ b/pkgs/development/libraries/libuv/default.nix
@@ -3,14 +3,14 @@
, ApplicationServices, CoreServices }:
stdenv.mkDerivation rec {
- version = "1.9.0";
+ version = "1.9.1";
name = "libuv-${version}";
src = fetchFromGitHub {
owner = "libuv";
repo = "libuv";
rev = "v${version}";
- sha256 = "0sq8c8n7xixn2xxp35crprvh35ry18i5mcxgwh12lydwv9ks0d4k";
+ sha256 = "1kc386gkkkymgz9diz1z4r8impcsmki5k88dsiasd6v9bfvq04cc";
};
buildInputs = [ automake autoconf libtool pkgconfig ]
diff --git a/pkgs/development/libraries/libva/default.nix b/pkgs/development/libraries/libva/default.nix
index 9e22aa1d37c..1d293f9ffcb 100644
--- a/pkgs/development/libraries/libva/default.nix
+++ b/pkgs/development/libraries/libva/default.nix
@@ -4,11 +4,11 @@
}:
stdenv.mkDerivation rec {
- name = "libva-1.6.2";
+ name = "libva-1.7.0";
src = fetchurl {
url = "http://www.freedesktop.org/software/vaapi/releases/libva/${name}.tar.bz2";
- sha256 = "1l4bij21shqbfllbxicmqgmay4v509v9hpxyyia9wm7gvsfg05y4";
+ sha256 = "0py9igf4kicj7ji22bjawkpd6my013qpg0s4ir2np9l1rk5vr2d6";
};
outputs = [ "dev" "out" "bin" ];
@@ -31,5 +31,6 @@ stdenv.mkDerivation rec {
license = licenses.mit;
description = "VAAPI library: Video Acceleration API";
platforms = platforms.unix;
+ maintainers = with maintainers; [ garbas ];
};
}
diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix
index 16a4498f54c..d409d20a769 100644
--- a/pkgs/development/libraries/libvirt/default.nix
+++ b/pkgs/development/libraries/libvirt/default.nix
@@ -4,7 +4,7 @@
, iproute, iptables, readline, lvm2, utillinux, systemd, libpciaccess, gettext
, libtasn1, ebtables, libgcrypt, yajl, pmutils, libcap_ng
, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages
-, curl, libiconv, gmp, xen
+, curl, libiconv, gmp, xen, zfs
}:
# if you update, also bump pythonPackages.libvirt or it will break
stdenv.mkDerivation rec {
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
libxslt xhtml1 perlPackages.XMLXPath curl libpcap
] ++ stdenv.lib.optionals stdenv.isLinux [
libpciaccess devicemapper lvm2 utillinux systemd.udev.lib libcap_ng
- libnl numad numactl xen
+ libnl numad numactl xen zfs
] ++ stdenv.lib.optionals stdenv.isDarwin [
libiconv gmp
];
@@ -52,6 +52,7 @@ stdenv.mkDerivation rec {
"--with-macvtap"
"--with-virtualport"
"--with-init-script=redhat"
+ "--with-storage-zfs"
] ++ stdenv.lib.optionals stdenv.isDarwin [
"--with-init-script=none"
];
diff --git a/pkgs/development/libraries/libwacom/default.nix b/pkgs/development/libraries/libwacom/default.nix
index 12bb7c785ac..2356e5bddbd 100644
--- a/pkgs/development/libraries/libwacom/default.nix
+++ b/pkgs/development/libraries/libwacom/default.nix
@@ -1,19 +1,20 @@
{ fetchurl, stdenv, glib, pkgconfig, udev, libgudev }:
stdenv.mkDerivation rec {
- name = "libwacom-0.15";
+ name = "libwacom-${version}";
+ version = "0.19";
src = fetchurl {
url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2";
- sha256 = "04vppdj99cc0ya44n8p7zjk9yyw03v6fksw0a9n1gpnnsn4wardb";
+ sha256 = "1zsmp2l53fbfy6jykh4c0i127baf503lq2fvd5y1066ihp6qh3b2";
};
- buildInputs = [ glib pkgconfig udev libgudev ];
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ glib udev libgudev ];
meta = with stdenv.lib; {
platforms = platforms.linux;
homepage = http://sourceforge.net/projects/linuxwacom/;
description = "libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
};
-
}
diff --git a/pkgs/development/libraries/libwps/default.nix b/pkgs/development/libraries/libwps/default.nix
index 798284c3b89..b165631e23e 100644
--- a/pkgs/development/libraries/libwps/default.nix
+++ b/pkgs/development/libraries/libwps/default.nix
@@ -1,20 +1,19 @@
{ stdenv, fetchurl, boost, pkgconfig, librevenge, zlib }:
-let version = "0.4.2"; in
stdenv.mkDerivation rec {
name = "libwps-${version}";
+ version = "0.4.3";
src = fetchurl {
- url = "mirror://sourceforge/libwps/${name}.tar.gz";
- sha256 = "0c90i3zafxxsj989bd9bs577blx3mrb90rj52iv6ijc4qivi4wkr";
+ url = "mirror://sourceforge/libwps/${name}.tar.bz2";
+ sha256 = "0v1a0hj96i4jhb5833336s4zcslzb6md5cnmnrvgywx8cmw40c0c";
};
buildInputs = [ boost pkgconfig librevenge zlib ];
meta = with stdenv.lib; {
- inherit version;
homepage = http://libwps.sourceforge.net/;
- description = "Microsoft Works file word processor format import filter library";
+ description = "Microsoft Works document format import filter library";
platforms = platforms.linux;
license = licenses.lgpl21;
};
diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix
index 7229b10e01c..45ce1b55592 100644
--- a/pkgs/development/libraries/libxml2/default.nix
+++ b/pkgs/development/libraries/libxml2/default.nix
@@ -1,13 +1,20 @@
-{ stdenv, lib, fetchurl, zlib, xz, python, findXMLCatalogs, libiconv
+{ stdenv, lib, fetchurl, zlib, xz, python, findXMLCatalogs, libiconv, fetchpatch
, supportPython ? (! stdenv ? cross) }:
stdenv.mkDerivation rec {
name = "libxml2-${version}";
- version = "2.9.3";
+ version = "2.9.4";
src = fetchurl {
url = "http://xmlsoft.org/sources/${name}.tar.gz";
- sha256 = "0bd17g6znn2r98gzpjppsqjg33iraky4px923j3k8kdl8qgy7sad";
+ sha256 = "0g336cr0bw6dax1q48bblphmchgihx9p1pjmxdnrd6sh3qci3fgz";
+ };
+
+ # https://bugzilla.gnome.org/show_bug.cgi?id=766834#c5
+ postPatch = "patch -R < " + fetchpatch {
+ name = "schemas-validity.patch";
+ url = "https://git.gnome.org/browse/libxml2/patch/?id=f6599c5164";
+ sha256 = "0i7a0nhxwkxx6dkm8917qn0bsfn1av6ghg2f4dxanxi4bn4b1jjn";
};
outputs = [ "dev" "out" "bin" "doc" ]
@@ -27,6 +34,8 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
+ doCheck = !stdenv.isDarwin;
+
crossAttrs = lib.optionalAttrs (stdenv.cross.libc == "msvcrt") {
# creating the DLL is broken ATM
dontDisableStatic = true;
diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix
index 6ac8acebfe8..5ddc7bf3ddb 100644
--- a/pkgs/development/libraries/mesa/default.nix
+++ b/pkgs/development/libraries/mesa/default.nix
@@ -23,7 +23,7 @@ else
with { inherit (stdenv.lib) optional optionalString; };
let
- version = "11.1.3";
+ version = "11.2.2";
# this is the default search path for DRI drivers
driverLink = "/run/opengl-driver" + optionalString stdenv.isi686 "-32";
in
@@ -38,13 +38,14 @@ stdenv.mkDerivation {
+ head (splitString "." version) + ''.x/${version}/mesa-${version}.tar.xz'')
"https://launchpad.net/mesa/trunk/${version}/+download/mesa-${version}.tar.xz"
];
- sha256 = "51f6658a214d75e4d9f05207586d7ed56ebba75c6b10841176fb6675efa310ac";
+ sha256 = "40e148812388ec7c6d7b6657d5a16e2e8dabba8b97ddfceea5197947647bdfb4";
};
prePatch = "patchShebangs .";
patches = [
./glx_ro_text_segm.patch # fix for grsecurity/PaX
+ ./symlink-drivers.patch
# TODO: revive ./dricore-gallium.patch when it gets ported (from Ubuntu),
# as it saved ~35 MB in $drivers; watch https://launchpad.net/ubuntu/+source/mesa/+changelog
] ++ optional stdenv.isLinux
diff --git a/pkgs/development/libraries/mesa/symlink-drivers.patch b/pkgs/development/libraries/mesa/symlink-drivers.patch
new file mode 100644
index 00000000000..6c800e5dfce
--- /dev/null
+++ b/pkgs/development/libraries/mesa/symlink-drivers.patch
@@ -0,0 +1,72 @@
+diff -ru -x '*~' mesa-11.1.4-orig/src/gallium/targets/dri/Makefile.am mesa-11.1.4/src/gallium/targets/dri/Makefile.am
+--- mesa-11.1.4-orig/src/gallium/targets/dri/Makefile.am 2016-05-09 14:20:52.000000000 +0200
++++ mesa-11.1.4/src/gallium/targets/dri/Makefile.am 2016-05-22 17:56:03.396185082 +0200
+@@ -126,14 +126,13 @@
+ done;
+ endif
+
+-# hardlink each megadriver instance, but don't actually have
+-# gallium_dri.so in the set of final installed files.
++# symlink each megadriver instance.
+ install-data-hook:
+ for i in $(TARGET_DRIVERS); do \
+- ln -f $(DESTDIR)$(dridir)/gallium_dri.so \
++ ln -sf $(DESTDIR)$(dridir)/gallium_dri.so \
+ $(DESTDIR)$(dridir)/$${i}_dri.so; \
+ done; \
+- $(RM) $(DESTDIR)$(dridir)/gallium_dri.*
++ $(RM) $(DESTDIR)$(dridir)/gallium_dri.la
+
+ uninstall-hook:
+ for i in $(TARGET_DRIVERS); do \
+diff -ru -x '*~' mesa-11.1.4-orig/src/gallium/targets/vdpau/Makefile.am mesa-11.1.4/src/gallium/targets/vdpau/Makefile.am
+--- mesa-11.1.4-orig/src/gallium/targets/vdpau/Makefile.am 2016-01-29 13:21:30.000000000 +0100
++++ mesa-11.1.4/src/gallium/targets/vdpau/Makefile.am 2016-05-22 20:54:12.722358242 +0200
+@@ -103,15 +103,14 @@
+ done;
+ endif
+
+-# hardlink each megadriver instance, but don't actually have
+-# libvdpau_gallium.so in the set of final installed files.
++# symlink each megadriver instance.
+ install-data-hook:
+ $(AM_V_GEN)dest_dir=$(DESTDIR)/$(vdpaudir); \
+ for i in $(TARGET_DRIVERS); do \
+ j=libvdpau_gallium.$(LIB_EXT); \
+ k=libvdpau_$${i}.$(LIB_EXT); \
+ l=$${k}.$(VDPAU_MAJOR).$(VDPAU_MINOR).0; \
+- ln -f $${dest_dir}/$${j}.$(VDPAU_MAJOR).$(VDPAU_MINOR).0 \
++ ln -sf $${dest_dir}/$${j}.$(VDPAU_MAJOR).$(VDPAU_MINOR).0 \
+ $${dest_dir}/$${l}; \
+ ln -sf $${l} \
+ $${dest_dir}/$${k}.$(VDPAU_MAJOR).$(VDPAU_MINOR); \
+@@ -120,7 +119,7 @@
+ ln -sf $${l} \
+ $${dest_dir}/$${k}; \
+ done; \
+- $(RM) $${dest_dir}/libvdpau_gallium.*
++ $(RM) $${dest_dir}/libvdpau_gallium.la
+
+ uninstall-hook:
+ for i in $(TARGET_DRIVERS); do \
+diff -ru -x '*~' mesa-11.1.4-orig/src/mesa/drivers/dri/Makefile.am mesa-11.1.4/src/mesa/drivers/dri/Makefile.am
+--- mesa-11.1.4-orig/src/mesa/drivers/dri/Makefile.am 2016-01-18 08:39:26.000000000 +0100
++++ mesa-11.1.4/src/mesa/drivers/dri/Makefile.am 2016-05-22 17:55:46.251244940 +0200
+@@ -86,14 +86,13 @@
+ done;
+ endif
+
+-# hardlink each megadriver instance, but don't actually have
+-# mesa_dri_drivers.so in the set of final installed files.
++# symink each megadriver instance.
+ install-data-hook:
+ for i in $(MEGADRIVERS); do \
+- ln -f $(DESTDIR)$(dridir)/mesa_dri_drivers.so \
++ ln -sf $(DESTDIR)$(dridir)/mesa_dri_drivers.so \
+ $(DESTDIR)$(dridir)/$$i; \
+ done;
+- $(RM) $(DESTDIR)$(dridir)/mesa_dri_drivers.*
++ $(RM) $(DESTDIR)$(dridir)/mesa_dri_drivers.la
+
+ uninstall-hook:
+ for i in $(MEGADRIVERS); do \
diff --git a/pkgs/development/libraries/opencascade/6.5.nix b/pkgs/development/libraries/opencascade/6.5.nix
index 86ab85cbb9a..252a6bb0ad1 100644
--- a/pkgs/development/libraries/opencascade/6.5.nix
+++ b/pkgs/development/libraries/opencascade/6.5.nix
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
- configureFlags = [ "--with-tcl=${tcl}/lib" "--with-tk=${tk}/lib" "--with-qt=${qt4}" "--with-ftgl=${ftgl}" "--with-freetype=${freetype}" ];
+ configureFlags = [ "--with-tcl=${tcl}/lib" "--with-tk=${tk}/lib" "--with-qt=${qt4}" "--with-ftgl=${ftgl}" "--with-freetype=${freetype.dev}" ];
postInstall = ''
mv $out/inc $out/include
diff --git a/pkgs/development/libraries/opencascade/default.nix b/pkgs/development/libraries/opencascade/default.nix
index 79c24be7514..8a7f9970e65 100644
--- a/pkgs/development/libraries/opencascade/default.nix
+++ b/pkgs/development/libraries/opencascade/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
preUnpack = ''
sourceRoot=`pwd`/ros/adm/cmake
- cmakeFlags="$cmakeFlags -DINSTALL_DIR=$out -D3RDPARTY_TCL_DIR=${tcl} -D3RDPARTY_FREETYPE_DIR=${freetype}"
+ cmakeFlags="$cmakeFlags -DINSTALL_DIR=$out -D3RDPARTY_TCL_DIR=${tcl} -D3RDPARTY_FREETYPE_DIR=${freetype.dev}"
'';
# https://bugs.freedesktop.org/show_bug.cgi?id=83631
diff --git a/pkgs/development/libraries/openldap/CVE-2015-6908.patch b/pkgs/development/libraries/openldap/CVE-2015-6908.patch
deleted file mode 100644
index 5db36629475..00000000000
--- a/pkgs/development/libraries/openldap/CVE-2015-6908.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 6fe51a9ab04fd28bbc171da3cf12f1c1040d6629 Mon Sep 17 00:00:00 2001
-From: Howard Chu
-Date: Thu, 10 Sep 2015 00:37:32 +0100
-Subject: [PATCH] ITS#8240 remove obsolete assert
-
----
- libraries/liblber/io.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/libraries/liblber/io.c b/libraries/liblber/io.c
-index 85c3e23..c05dcf8 100644
---- a/libraries/liblber/io.c
-+++ b/libraries/liblber/io.c
-@@ -679,7 +679,7 @@ done:
- return (ber->ber_tag);
- }
-
-- assert( 0 ); /* ber structure is messed up ?*/
-+ /* invalid input */
- return LBER_DEFAULT;
- }
-
---
-1.7.10.4
-
diff --git a/pkgs/development/libraries/openldap/default.nix b/pkgs/development/libraries/openldap/default.nix
index cc5a26a557d..00b4139dc7c 100644
--- a/pkgs/development/libraries/openldap/default.nix
+++ b/pkgs/development/libraries/openldap/default.nix
@@ -20,6 +20,8 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optional (cyrus_sasl == null) "--without-cyrus-sasl"
++ stdenv.lib.optional stdenv.isFreeBSD "--with-pic";
+ dontPatchELF = 1; # !!!
+
# Fixup broken libtool
preFixup = ''
sed -e 's,-lsasl2,-L${cyrus_sasl.out}/lib -lsasl2,' \
diff --git a/pkgs/development/libraries/pango/default.nix b/pkgs/development/libraries/pango/default.nix
index c4456035cca..105bfa1627b 100644
--- a/pkgs/development/libraries/pango/default.nix
+++ b/pkgs/development/libraries/pango/default.nix
@@ -5,7 +5,7 @@
with stdenv.lib;
let
- ver_maj = "1.38";
+ ver_maj = "1.40";
ver_min = "1";
in
stdenv.mkDerivation rec {
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://gnome/sources/pango/${ver_maj}/${name}.tar.xz";
- sha256 = "1dsf45m51i4rcyvh5wlxxrjfhvn5b67d5ckjc6vdcxbddjgmc80k";
+ sha256 = "e27af54172c72b3ac6be53c9a4c67053e16c905e02addcf3a603ceb2005c1a40";
};
outputs = [ "dev" "out" "bin" "docdev" ];
diff --git a/pkgs/development/libraries/pcl/default.nix b/pkgs/development/libraries/pcl/default.nix
index 908d1ea856f..b38f1e5711a 100644
--- a/pkgs/development/libraries/pcl/default.nix
+++ b/pkgs/development/libraries/pcl/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchzip, cmake, qhull, flann, boost, vtk, eigen, pkgconfig, qt4
-, libusb1, libpcap, libXt, libpng
+, libusb1, libpcap, libXt, libpng, Cocoa, AGL, cf-private
}:
stdenv.mkDerivation rec {
@@ -14,13 +14,22 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
buildInputs = [ cmake qhull flann boost eigen pkgconfig libusb1 libpcap
- libpng vtk qt4 libXt ];
+ libpng vtk qt4 libXt ]
+ ++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa AGL cf-private ];
+ cmakeFlags = stdenv.lib.optionals stdenv.isDarwin [
+ "-DCMAKE_OSX_SYSROOT=" "-DCMAKE_OSX_DEPLOYMENT_TARGET=" ];
+
+ preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
+ NIX_CFLAGS_COMPILE=$(echo "$NIX_CFLAGS_COMPILE" | sed "s,[[:space:]]*-F$NIX_STORE/[[:alnum:]]*-CF-osx-[[:digit:].]*/Library/Frameworks,,g")
+ sed -i 's,^\( target_link_libraries("''${LIB_NAME}" "-framework Cocoa")\),\1\n target_link_libraries("''${LIB_NAME}" "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"),' visualization/CMakeLists.txt
+ sed -i 's,^\(set(SUBSYS_DEPS common io kdtree geometry search)\),\1\nset(CMAKE_OSX_SYSROOT "")\nset(CMAKE_OSX_DEPLOYMENT_TARGET ""),' visualization/CMakeLists.txt
+ '';
meta = {
homepage = http://pointclouds.org/;
description = "Open project for 2D/3D image and point cloud processing";
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [viric];
- platforms = with stdenv.lib.platforms; linux;
+ platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}
diff --git a/pkgs/development/libraries/pcre2/default.nix b/pkgs/development/libraries/pcre2/default.nix
index 4f8d5cf1aaa..447b8fe15ec 100644
--- a/pkgs/development/libraries/pcre2/default.nix
+++ b/pkgs/development/libraries/pcre2/default.nix
@@ -1,10 +1,10 @@
{ stdenv, fetchurl }:
-stdenv.mkDerivation {
- name = "pcre2-10.20";
+stdenv.mkDerivation rec {
+ name = "pcre2-10.21";
src = fetchurl {
- url = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.20.tar.bz2";
- sha256 = "0yj8mm9ll9zj3v47rvmmqmr1ybxk72rr2lym3rymdsf905qjhbik";
+ url = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${name}.tar.bz2";
+ sha256 = "1q6lrj9b08l1q39vxipb0fi88x6ybvkr6439h8bjb9r8jd81fsn6";
};
configureFlags = [
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
];
meta = {
- description = "Perl Compatible Regular Expressions";
+ description = "Perl Compatible Regular Expressions";
homepage = "http://www.pcre.org/";
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.ttuegel ];
diff --git a/pkgs/development/libraries/postgis/default.nix b/pkgs/development/libraries/postgis/default.nix
index f3e2312f484..1886038dff3 100644
--- a/pkgs/development/libraries/postgis/default.nix
+++ b/pkgs/development/libraries/postgis/default.nix
@@ -96,7 +96,7 @@ in rec {
dontDisableStatic = true;
preConfigure = ''
sed -i 's@/usr/bin/file@${file}/bin/file@' configure
- configureFlags="$configureFlags --with-gdalconfig=${gdal}/bin/gdal-config --with-jsondir=${json_c}"
+ configureFlags="$configureFlags --with-gdalconfig=${gdal}/bin/gdal-config --with-jsondir=${json_c.dev}"
'';
postConfigure = ''
sed -i "s|@mkdir -p \$(DESTDIR)\$(PGSQL_BINDIR)||g ;
diff --git a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh
index 2669a396280..5401a71bc4c 100644
--- a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh
+++ b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh
@@ -68,6 +68,10 @@ _qtMultioutModuleDevs() {
fi
}
+_qtRmQtOut() {
+ rm -fr "$qtOut"
+}
+
qmakeConfigurePhase() {
runHook preConfigure
@@ -109,6 +113,8 @@ fi
if [ -n "$NIX_QT_SUBMODULE" ]; then
postInstallHooks+=(_qtRmQmake _qtRmModules)
preFixupHooks+=(_qtMultioutModuleDevs)
+else
+ postInstallHooks+=(_qtRmQtOut)
fi
fi
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 cf3803a1b9c..9fd4735209c 100644
--- a/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh
+++ b/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh
@@ -74,6 +74,10 @@ _qtModuleMultioutDevsPost() {
fi
}
+_qtRmQtOut() {
+ rm -fr "$qtOut"
+}
+
qmakeConfigurePhase() {
runHook preConfigure
@@ -116,6 +120,8 @@ if [ -n "$NIX_QT_SUBMODULE" ]; then
postInstallHooks+=(_qtRmQmake _qtRmModules)
preFixupHooks+=(_qtModuleMultioutDevsPre)
postFixupHooks+=(_qtModuleMultioutDevsPost)
+else
+ postInstallHooks+=(_qtRmQtOut)
fi
fi
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 6ab5a48951f..8cc876de3d1 100644
--- a/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix
+++ b/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix
@@ -87,7 +87,7 @@ stdenv.mkDerivation {
--replace "@mesa_lib@" "${mesa.out}"
substituteInPlace qtbase/mkspecs/common/linux.conf \
--replace "@mesa_lib@" "${mesa.out}" \
- --replace "@mesa_inc@" "${mesa.dev}"
+ --replace "@mesa_inc@" "${mesa.dev or mesa}"
'';
diff --git a/pkgs/development/libraries/science/math/cudnn/default.nix b/pkgs/development/libraries/science/math/cudnn/default.nix
new file mode 100644
index 00000000000..80975c8dc7b
--- /dev/null
+++ b/pkgs/development/libraries/science/math/cudnn/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, requireFile }:
+
+stdenv.mkDerivation rec {
+ version = "4.0";
+
+ name = "cudnn-${version}";
+
+ src = requireFile rec {
+ name = "cudnn-7.0-linux-x64-v${version}-prod.tgz";
+ message = ''
+ This nix expression requires that ${name} is
+ already part of the store. Register yourself to NVIDIA Accelerated Computing Developer Program
+ and download cuDNN library at https://developer.nvidia.com/cudnn, and store it to the nix store with nix-store --add-fixed sha256 .
+ '';
+ sha256 = "0zgr6qdbc29qw6sikhrh6diwwz7150rqc8a49f2qf37j2rvyyr2f";
+
+ };
+
+ phases = "unpackPhase installPhase fixupPhase";
+
+ 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";
+ license = stdenv.lib.licenses.unfree;
+ };
+}
diff --git a/pkgs/development/libraries/science/math/magma/default.nix b/pkgs/development/libraries/science/math/magma/default.nix
new file mode 100644
index 00000000000..21805092c76
--- /dev/null
+++ b/pkgs/development/libraries/science/math/magma/default.nix
@@ -0,0 +1,46 @@
+{ stdenv, fetchurl, cmake, gfortran, cudatoolkit, libpthreadstubs, liblapack }:
+
+with stdenv.lib;
+
+let version = "2.0.2";
+
+in stdenv.mkDerivation {
+ name = "magma-${version}";
+ src = fetchurl {
+ url = "http://icl.cs.utk.edu/projectsfiles/magma/downloads/magma-${version}.tar.gz";
+ sha256 = "0w3z6k1npfh0d3r8kpw873f1m7lny29sz2bvvfxzk596d4h083lk";
+ name = "magma-${version}.tar.gz";
+ };
+
+ buildInputs = [ gfortran cudatoolkit libpthreadstubs liblapack cmake ];
+
+ doCheck = false;
+ #checkTarget = "tests";
+
+ enableParallelBuilding=true;
+
+ # MAGMA's default CMake setup does not care about installation. So we copy files directly.
+ installPhase = ''
+ mkdir -p $out
+ mkdir -p $out/include
+ mkdir -p $out/lib
+ mkdir -p $out/lib/pkgconfig
+ cp -a ../include/*.h $out/include
+ #cp -a sparse-iter/include/*.h $out/include
+ cp -a lib/*.a $out/lib
+ cat ../lib/pkgconfig/magma.pc.in | \
+ sed -e s:@INSTALL_PREFIX@:"$out": | \
+ sed -e s:@CFLAGS@:"-I$out/include": | \
+ sed -e s:@LIBS@:"-L$out/lib -lmagma -lmagma_sparse": | \
+ sed -e s:@MAGMA_REQUIRED@:: \
+ > $out/lib/pkgconfig/magma.pc
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Matrix Algebra on GPU and Multicore Architectures";
+ license = licenses.bsd3;
+ homepage = "http://icl.cs.utk.edu/magma/index.html";
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ ianwookim ];
+ };
+}
diff --git a/pkgs/development/libraries/serf/default.nix b/pkgs/development/libraries/serf/default.nix
index 20ce1dabf9a..86212eaeb47 100644
--- a/pkgs/development/libraries/serf/default.nix
+++ b/pkgs/development/libraries/serf/default.nix
@@ -19,8 +19,8 @@ stdenv.mkDerivation rec {
'';
buildPhase = ''
- scons PREFIX="$out" OPENSSL="${openssl}" ZLIB="${zlib}" APR="$(echo "${apr}"/bin/*-config)" \
- APU="$(echo "${aprutil}"/bin/*-config)" CC="${
+ scons PREFIX="$out" OPENSSL="${openssl.dev}" ZLIB="${zlib.dev}" APR="$(echo "${apr.dev}"/bin/*-config)" \
+ APU="$(echo "${aprutil.dev}"/bin/*-config)" CC="${
if stdenv.cc.isClang then "clang" else "${stdenv.cc}/bin/gcc"
}" ${
if (stdenv.isDarwin || stdenv.isCygwin) then "" else "GSSAPI=\"${kerberos}\""
diff --git a/pkgs/development/libraries/silgraphite/default.nix b/pkgs/development/libraries/silgraphite/default.nix
index 8e8cdc0ce1c..f124b313d74 100644
--- a/pkgs/development/libraries/silgraphite/default.nix
+++ b/pkgs/development/libraries/silgraphite/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
buildInputs = [pkgconfig freetype libXft pango fontconfig];
- NIX_CFLAGS_COMPILE = "-I${freetype}/include/freetype2";
+ NIX_CFLAGS_COMPILE = "-I${freetype.dev}/include/freetype2";
meta = {
description = "An advanced font engine";
diff --git a/pkgs/development/libraries/slang/default.nix b/pkgs/development/libraries/slang/default.nix
index e83718673aa..df2b5db89a7 100644
--- a/pkgs/development/libraries/slang/default.nix
+++ b/pkgs/development/libraries/slang/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
sed -i -e "s|/bin/ln|ln|" src/Makefile.in
sed -i -e "s|-ltermcap|-lncurses|" ./configure
'';
- configureFlags = "--with-png=${libpng} --with-z=${zlib} --with-pcre=${pcre} --with-readline=${readline}";
+ configureFlags = "--with-png=${libpng.dev} --with-z=${zlib.dev} --with-pcre=${pcre.dev} --with-readline=${readline.dev}";
buildInputs = [ pcre libpng zlib readline ];
propagatedBuildInputs = [ ncurses ];
diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix
index b34e2f648ec..f38e48c87c2 100644
--- a/pkgs/development/libraries/sqlite/default.nix
+++ b/pkgs/development/libraries/sqlite/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
buildInputs = lib.optionals interactive [ readline ncurses ];
- configureFlags = [ "--enable-threadsafe" ];
+ configureFlags = [ "--enable-threadsafe" ] ++ lib.optional interactive "--enable-readline";
NIX_CFLAGS_COMPILE = [
"-DSQLITE_ENABLE_COLUMN_METADATA"
diff --git a/pkgs/development/libraries/swiften/default.nix b/pkgs/development/libraries/swiften/default.nix
index 46ecada9668..e6fb5a2b685 100644
--- a/pkgs/development/libraries/swiften/default.nix
+++ b/pkgs/development/libraries/swiften/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
buildPhase = ''
patchShebangs ./scons
- ./scons openssl=${openssl} \
+ ./scons openssl=${openssl.dev} \
boost_includedir=${boost.dev}/include \
boost_libdir=${boost.out}/lib \
boost_bundled_enable=false \
diff --git a/pkgs/development/libraries/tinyxml/2.6.2-cxx.patch b/pkgs/development/libraries/tinyxml/2.6.2-cxx.patch
new file mode 100644
index 00000000000..e55d0be43bc
--- /dev/null
+++ b/pkgs/development/libraries/tinyxml/2.6.2-cxx.patch
@@ -0,0 +1,17 @@
+diff -u a/Makefile b/Makefile
+--- a/Makefile 2011-05-14 22:24:57.000000000 -0400
++++ b/Makefile 2016-04-01 14:53:05.000000000 -0400
+@@ -19,9 +19,9 @@
+
+ #****************************************************************************
+
+-CC := gcc
+-CXX := g++
+-LD := g++
++CC ?= gcc
++CXX ?= g++
++LD ?= g++
+ AR := ar rc
+ RANLIB := ranlib
+
+Common subdirectories: a/docs and b/docs
diff --git a/pkgs/development/libraries/tinyxml/2.6.2.nix b/pkgs/development/libraries/tinyxml/2.6.2.nix
index 7f0a343eba2..231550cd557 100644
--- a/pkgs/development/libraries/tinyxml/2.6.2.nix
+++ b/pkgs/development/libraries/tinyxml/2.6.2.nix
@@ -2,6 +2,7 @@
let
version = "2.6.2";
+ SHLIB_EXT = if stdenv.isDarwin then "dylib" else "so";
in stdenv.mkDerivation {
name = "tinyxml-${version}";
@@ -16,7 +17,14 @@ in stdenv.mkDerivation {
# http://sourceforge.net/tracker/index.php?func=detail&aid=3031828&group_id=13559&atid=313559
./2.6.2-entity.patch
+
+ # Use CC, CXX, and LD from environment
+ ./2.6.2-cxx.patch
];
+ preConfigure = "export LD=${if stdenv.isDarwin then "clang++" else "g++"}";
+
+ NIX_CFLAGS_COMPILE =
+ stdenv.lib.optional stdenv.isDarwin "-mmacosx-version-min=10.9";
buildInputs = [ unzip ];
buildPhase = ''
@@ -28,9 +36,9 @@ in stdenv.mkDerivation {
make
# build the lib as a shared library
- g++ -Wall -O2 -shared -fpic tinyxml.cpp \
+ ''${CXX} -Wall -O2 -shared -fpic tinyxml.cpp \
tinyxmlerror.cpp tinyxmlparser.cpp \
- tinystr.cpp -o libtinyxml.so
+ tinystr.cpp -o libtinyxml.${SHLIB_EXT}
'';
doCheck = true;
@@ -47,7 +55,7 @@ in stdenv.mkDerivation {
mkdir -pv $out/lib/pkgconfig/
mkdir -pv $out/share/doc/tinyxml/
- cp -v libtinyxml.so $out/lib/
+ cp -v libtinyxml.${SHLIB_EXT} $out/lib/
cp -v *.h $out/include/
substituteInPlace tinyxml.pc --replace "@out@" "$out"
diff --git a/pkgs/development/libraries/vaapi-intel/default.nix b/pkgs/development/libraries/vaapi-intel/default.nix
index 6942107d146..0bc3c196c46 100644
--- a/pkgs/development/libraries/vaapi-intel/default.nix
+++ b/pkgs/development/libraries/vaapi-intel/default.nix
@@ -3,11 +3,11 @@
}:
stdenv.mkDerivation rec {
- name = "libva-intel-driver-1.6.2";
+ name = "libva-intel-driver-1.7.0";
src = fetchurl {
url = "http://www.freedesktop.org/software/vaapi/releases/libva-intel-driver/${name}.tar.bz2";
- sha256 = "1zl51mdxfmnn33r4b0y5qxwlkqfw919aqphsq60d50pwrvdmk1xz";
+ sha256 = "032w8d0whymi5ac8fk7c5d8nnxxsjgwymw644g7gp959i73xc6cx";
};
patchPhase = ''
@@ -33,5 +33,6 @@ stdenv.mkDerivation rec {
license = licenses.mit;
description = "Intel driver for the VAAPI library";
platforms = platforms.unix;
+ maintainers = with maintainers; [ garbas ];
};
}
diff --git a/pkgs/development/libraries/wayland/protocols.nix b/pkgs/development/libraries/wayland/protocols.nix
index 0ae9d9d59c8..57d3664447a 100644
--- a/pkgs/development/libraries/wayland/protocols.nix
+++ b/pkgs/development/libraries/wayland/protocols.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
name = "wayland-protocols-${version}";
- version = "1.3";
+ version = "1.4";
src = fetchurl {
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
- sha256 = "0byqvrsm6bkvylvzqy8wh5wpszwl5ra1z0yjqzqmw8przlrhdkbb";
+ sha256 = "0wpm7mz7ww6nn3vrgz7a9iyk7mk6za73wnq0n54lzl8yq8irljh1";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/libraries/wildmidi/default.nix b/pkgs/development/libraries/wildmidi/default.nix
index 4dec0555ae9..9d22833e1c0 100644
--- a/pkgs/development/libraries/wildmidi/default.nix
+++ b/pkgs/development/libraries/wildmidi/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, cmake, alsaLib, freepats }:
stdenv.mkDerivation rec {
- name = "wildmidi-0.3.8";
+ name = "wildmidi-0.3.9";
src = fetchurl {
url = "https://github.com/Mindwerks/wildmidi/archive/${name}.tar.gz";
- sha256 = "1z324wkmkf0lapfammviiyclhc7i8in2x2gvgc2r6sq69lcwbn7g";
+ sha256 = "1fbcsvzn8akvvy7vg6vmnikcc8gh405b4gp1r016bq7yginljwwp";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/development/libraries/xine-lib/default.nix b/pkgs/development/libraries/xine-lib/default.nix
index 89b2d77db82..3a37afc1cbe 100644
--- a/pkgs/development/libraries/xine-lib/default.nix
+++ b/pkgs/development/libraries/xine-lib/default.nix
@@ -5,11 +5,11 @@
}:
stdenv.mkDerivation rec {
- name = "xine-lib-1.2.4";
-
+ name = "xine-lib-1.2.6";
+
src = fetchurl {
url = "mirror://sourceforge/xine/${name}.tar.xz";
- sha256 = "1pdv7bs683ily548arv4wsxabslyf3x3laij5jb921dxyx71nnww";
+ sha256 = "01d0nv4zhr4k8id5n4rmw13llrjsv9dhwg1a773c1iqpi1ris15x";
};
nativeBuildInputs = [ pkgconfig perl ];
@@ -20,8 +20,8 @@ stdenv.mkDerivation rec {
libcaca libpulseaudio libmng libcdio libv4l vcdimager libmpcdec
];
- NIX_LDFLAGS = "-rpath ${libdvdcss}/lib -L${libdvdcss}/lib -ldvdcss";
-
+ NIX_LDFLAGS = "-lxcb-shm";
+
propagatedBuildInputs = [zlib];
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/zeitgeist/default.nix b/pkgs/development/libraries/zeitgeist/default.nix
index d0de624890b..ced0844f3e1 100644
--- a/pkgs/development/libraries/zeitgeist/default.nix
+++ b/pkgs/development/libraries/zeitgeist/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "07pnc7kmjpd0ncm32z6s3ny5p4zl52v9lld0n0f8sp6cw87k12p0";
};
- NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
configureScript = "./autogen.sh";
diff --git a/pkgs/development/ocaml-modules/camlzip/default.nix b/pkgs/development/ocaml-modules/camlzip/default.nix
index d392b5f789c..9025d94b8d5 100644
--- a/pkgs/development/ocaml-modules/camlzip/default.nix
+++ b/pkgs/development/ocaml-modules/camlzip/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
substitute ${./META} META --subst-var-by VERSION "${version}"
substituteInPlace Makefile \
--subst-var-by ZLIB_LIBDIR "${zlib.out}/lib" \
- --subst-var-by ZLIB_INCLUDE "${zlib}/include"
+ --subst-var-by ZLIB_INCLUDE "${zlib.dev}/include"
'';
buildFlags = "all allopt";
diff --git a/pkgs/development/ocaml-modules/lwt/default.nix b/pkgs/development/ocaml-modules/lwt/default.nix
index e8cdc180b72..6c0d772650c 100644
--- a/pkgs/development/ocaml-modules/lwt/default.nix
+++ b/pkgs/development/ocaml-modules/lwt/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchzip, which, cryptopp, ocaml, findlib, ocaml_react, ocaml_ssl, libev, pkgconfig, ncurses, ocaml_oasis, ocaml_text, glib, camlp4, ppx_tools }:
let
- version = "2.5.0";
+ version = "2.5.2";
inherit (stdenv.lib) optional getVersion versionAtLeast;
ocaml_version = getVersion ocaml;
in
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
src = fetchzip {
url = "https://github.com/ocsigen/lwt/archive/${version}.tar.gz";
- sha256 = "0jgg51aqbnia33l7bhgirnfpqybjwzpd85qzzd9znnc1a27gv8vr";
+ sha256 = "0gmhm282r8yi0gwcv0g2s7qchkfjmhqbqf4j9frlyv665ink9kxl";
};
buildInputs = [ ocaml_oasis pkgconfig which cryptopp ocaml findlib glib ncurses camlp4 ppx_tools ];
diff --git a/pkgs/development/ocaml-modules/ppx_tools/default.nix b/pkgs/development/ocaml-modules/ppx_tools/default.nix
index 1fea9bbd191..c64e84869d6 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-0.99.2";
+ name = "ocaml-ppx_tools-4.02.3";
src = fetchzip {
- url = https://github.com/alainfrisch/ppx_tools/archive/ppx_tools_0.99.2.tar.gz;
- sha256 = "1m09r2sjcb37i4dyhpbk9n2wxkcvpib6bvairsird91fm9w0vqw7";
+ url = https://github.com/alainfrisch/ppx_tools/archive/v4.02.3.tar.gz;
+ sha256 = "0varkd93hgrarwwkrjp2yy735q7jqzba75sskyanmvkb576wpcxv";
};
buildInputs = [ ocaml findlib ];
diff --git a/pkgs/development/perl-modules/Compress-Raw-Zlib/default.nix b/pkgs/development/perl-modules/Compress-Raw-Zlib/default.nix
index 9314481cbcf..7f2f8e9e4e5 100644
--- a/pkgs/development/perl-modules/Compress-Raw-Zlib/default.nix
+++ b/pkgs/development/perl-modules/Compress-Raw-Zlib/default.nix
@@ -11,7 +11,7 @@ buildPerlPackage rec {
preConfigure = ''
cat > config.in <$out/bin/wp <$out/bin/space-orbit <$out/bin/space-orbit < $out/share/applications/steam.desktop
- '';
+ extraBuildCommands = ''
+ mkdir -p steamrt
+ ln -s ../lib/steam-runtime steamrt/${steam-runtime.arch}
+ ${lib.optionalString (steam-runtime-i686 != null) ''
+ ln -s ../lib32/steam-runtime steamrt/${steam-runtime-i686.arch}
+ ''}
+ '';
- profile = ''
- export STEAM_RUNTIME=/steamrt
- '';
+ extraInstallCommands = ''
+ mkdir -p $out/share/applications
+ ln -s ${steam}/share/icons $out/share
+ ln -s ${steam}/share/pixmaps $out/share
+ sed "s,/usr/bin/steam,$out/bin/steam,g" ${steam}/share/applications/steam.desktop > $out/share/applications/steam.desktop
+ '';
- runScript = "steam";
+ profile = ''
+ export STEAM_RUNTIME=/steamrt
+ '';
- passthru.run = buildFHSUserEnv (self // {
- name = "steam-run";
+ runScript = "steam";
- runScript =
- let ldPath = map (x: "/steamrt/${steam-runtime.arch}/" + x) steam-runtime.libs
- ++ lib.optionals (steam-runtime-i686 != null) (map (x: "/steamrt/${steam-runtime-i686.arch}/" + x) steam-runtime-i686.libs);
- in writeScript "steam-run" ''
- #!${stdenv.shell}
- run="$1"
- if [ "$run" = "" ]; then
- echo "Usage: steam-run command-to-run args..." >&2
- exit 1
- fi
- shift
- export LD_LIBRARY_PATH=${lib.concatStringsSep ":" ldPath}:$LD_LIBRARY_PATH
- exec "$run" "$@"
- '';
+ passthru.run = buildFHSUserEnv {
+ name = "steam-run";
- passthru = {};
- });
+ targetPkgs = commonTargetPkgs;
+ inherit multiPkgs extraBuildCommands;
+
+ runScript =
+ let ldPath = map (x: "/steamrt/${steam-runtime.arch}/" + x) steam-runtime.libs
+ ++ lib.optionals (steam-runtime-i686 != null) (map (x: "/steamrt/${steam-runtime-i686.arch}/" + x) steam-runtime-i686.libs);
+ in writeScript "steam-run" ''
+ #!${stdenv.shell}
+ run="$1"
+ if [ "$run" = "" ]; then
+ echo "Usage: steam-run command-to-run args..." >&2
+ exit 1
+ fi
+ shift
+ export LD_LIBRARY_PATH=${lib.concatStringsSep ":" ldPath}:$LD_LIBRARY_PATH
+ exec "$run" "$@"
+ '';
};
-
-in buildFHSUserEnv self
+}
diff --git a/pkgs/games/warmux/default.nix b/pkgs/games/warmux/default.nix
index 7bf277a7f9e..a56afbbf44b 100644
--- a/pkgs/games/warmux/default.nix
+++ b/pkgs/games/warmux/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
gettext intltool libtool perl
];
- configureFlagsArray = ("CFLAGS=-include ${zlib}/include/zlib.h");
+ configureFlagsArray = ("CFLAGS=-include ${zlib.dev}/include/zlib.h");
patches = [ ./gcc-fix.patch ];
diff --git a/pkgs/misc/drivers/hplip/3.15.9.nix b/pkgs/misc/drivers/hplip/3.15.9.nix
index 1162cc4f00d..5c989594b3b 100644
--- a/pkgs/misc/drivers/hplip/3.15.9.nix
+++ b/pkgs/misc/drivers/hplip/3.15.9.nix
@@ -83,7 +83,7 @@ stdenv.mkDerivation {
find . -type f -exec sed -i \
-e s,/etc/hp,$out/etc/hp, \
-e s,/etc/sane.d,$out/etc/sane.d, \
- -e s,/usr/include/libusb-1.0,${libusb1}/include/libusb-1.0, \
+ -e s,/usr/include/libusb-1.0,${libusb1.dev}/include/libusb-1.0, \
-e s,/usr/share/hal/fdi/preprobe/10osvendor,$out/share/hal/fdi/preprobe/10osvendor, \
-e s,/usr/lib/systemd/system,$out/lib/systemd/system, \
-e s,/var/lib/hp,$out/var/lib/hp, \
diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix
index d90bb66410c..32997f98b21 100644
--- a/pkgs/misc/drivers/hplip/default.nix
+++ b/pkgs/misc/drivers/hplip/default.nix
@@ -84,7 +84,7 @@ stdenv.mkDerivation {
find . -type f -exec sed -i \
-e s,/etc/hp,$out/etc/hp, \
-e s,/etc/sane.d,$out/etc/sane.d, \
- -e s,/usr/include/libusb-1.0,${libusb1}/include/libusb-1.0, \
+ -e s,/usr/include/libusb-1.0,${libusb1.dev}/include/libusb-1.0, \
-e s,/usr/share/hal/fdi/preprobe/10osvendor,$out/share/hal/fdi/preprobe/10osvendor, \
-e s,/usr/lib/systemd/system,$out/lib/systemd/system, \
-e s,/var/lib/hp,$out/var/lib/hp, \
diff --git a/pkgs/misc/emulators/dolphin-emu/default.nix b/pkgs/misc/emulators/dolphin-emu/default.nix
index f264b311dad..749573f474a 100644
--- a/pkgs/misc/emulators/dolphin-emu/default.nix
+++ b/pkgs/misc/emulators/dolphin-emu/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
cmakeFlags = ''
-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include
-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include
- -DGTK2_INCLUDE_DIRS=${gtk2}/include/gtk-2.0
+ -DGTK2_INCLUDE_DIRS=${gtk2.dev}/include/gtk-2.0
-DCMAKE_BUILD_TYPE=Release
-DENABLE_LTO=True
'';
diff --git a/pkgs/misc/emulators/dolphin-emu/master.nix b/pkgs/misc/emulators/dolphin-emu/master.nix
index 2a9d923f3e8..0eaf08c2b8d 100644
--- a/pkgs/misc/emulators/dolphin-emu/master.nix
+++ b/pkgs/misc/emulators/dolphin-emu/master.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
cmakeFlags = ''
-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include
-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include
- -DGTK2_INCLUDE_DIRS=${gtk2}/include/gtk-2.0
+ -DGTK2_INCLUDE_DIRS=${gtk2.dev}/include/gtk-2.0
-DCMAKE_BUILD_TYPE=Release
-DENABLE_LTO=True
'';
diff --git a/pkgs/misc/emulators/mednaffe/default.nix b/pkgs/misc/emulators/mednaffe/default.nix
index 7777e73d337..21e75a72d61 100644
--- a/pkgs/misc/emulators/mednaffe/default.nix
+++ b/pkgs/misc/emulators/mednaffe/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
};
prePatch = ''
- substituteInPlace src/mednaffe.c --replace "binpath = NULL" "binpath = \"${mednafen}/bin/mednafen\""
+ substituteInPlace src/mednaffe.c --replace "binpath = NULL" "binpath = g_strdup( \"${mednafen}/bin/mednafen\" )"
'';
buildInputs = [ pkgconfig gtk2 mednafen ];
diff --git a/pkgs/misc/emulators/pcsx2/default.nix b/pkgs/misc/emulators/pcsx2/default.nix
index e6a7b9800d3..1b95bca643c 100644
--- a/pkgs/misc/emulators/pcsx2/default.nix
+++ b/pkgs/misc/emulators/pcsx2/default.nix
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
-DGLSL_SHADER_DIR="$out/share/pcsx2" \
-DGTK2_GLIBCONFIG_INCLUDE_DIR='${glib.out}/lib/glib-2.0/include' \
-DGTK2_GDKCONFIG_INCLUDE_DIR='${gtk2.out}/lib/gtk-2.0/include' \
- -DGTK2_INCLUDE_DIRS='${gtk2}/include/gtk-2.0' \
+ -DGTK2_INCLUDE_DIRS='${gtk2.dev}/include/gtk-2.0' \
-DPACKAGE_MODE=TRUE \
-DPLUGIN_DIR="$out/lib/pcsx2" \
-DREBUILD_SHADER=TRUE \
diff --git a/pkgs/misc/emulators/pcsxr/default.nix b/pkgs/misc/emulators/pcsxr/default.nix
new file mode 100644
index 00000000000..74b9932ed83
--- /dev/null
+++ b/pkgs/misc/emulators/pcsxr/default.nix
@@ -0,0 +1,87 @@
+{ stdenv, fetchurl, autoreconfHook, intltool, pkgconfig, gtk3, SDL2, xorg
+, gsettings_desktop_schemas, makeWrapper, libcdio, nasm, ffmpeg, file
+, fetchpatch }:
+
+stdenv.mkDerivation rec {
+ name = "pcsxr-${version}";
+ version = "1.9.94";
+
+ # codeplex does not support direct downloading
+ src = fetchurl {
+ url = "mirror://debian/pool/main/p/pcsxr/pcsxr_${version}.orig.tar.xz";
+ sha256 = "0q7nj0z687lmss7sgr93ij6my4dmhkm2nhjvlwx48dn2lxl6ndla";
+ };
+
+ patches = [
+ ( fetchpatch {
+ url = "https://anonscm.debian.org/cgit/pkg-games/pcsxr.git/plain/debian/patches/01_fix-i386-exec-stack.patch?h=debian/1.9.94-2";
+ sha256 = "17497wjxd6b92bj458s2769d9bpp68ydbvmfs9gp51yhnq4zl81x";
+ })
+ ( fetchpatch {
+ url = "https://anonscm.debian.org/cgit/pkg-games/pcsxr.git/plain/debian/patches/02_disable-ppc-auto-dynarec.patch?h=debian/1.9.94-2";
+ sha256 = "0v8n79z034w6cqdrzhgd9fkdpri42mzvkdjm19x4asz94gg2i2kf";
+ })
+ ( fetchpatch {
+ url = "https://anonscm.debian.org/cgit/pkg-games/pcsxr.git/plain/debian/patches/03_fix-plugin-dir.patch?h=debian/1.9.94-2";
+ sha256 = "0vkl0mv6whqaz79kvvvlmlmjpynyq4lh352j3bbxcr0vjqffxvsy";
+ })
+ ( fetchpatch {
+ url = "https://anonscm.debian.org/cgit/pkg-games/pcsxr.git/plain/debian/patches/04_update-homedir-symlinks.patch?h=debian/1.9.94-2";
+ sha256 = "18r6n025ybr8fljfsaqm4ap31wp8838j73lrsffi49fkis60dp4j";
+ })
+ ( fetchpatch {
+ url = "https://anonscm.debian.org/cgit/pkg-games/pcsxr.git/plain/debian/patches/05_format-security.patch?h=debian/1.9.94-2";
+ sha256 = "03m4kfc9bk5669hf7ji1anild08diliapx634f9cigyxh72jcvni";
+ })
+ ( fetchpatch {
+ url = "https://anonscm.debian.org/cgit/pkg-games/pcsxr.git/plain/debian/patches/06_warnings.patch?h=debian/1.9.94-2";
+ sha256 = "0iz3g9ihnhisfgrzma9l74y4lhh57na9h41bmiam1millb796g71";
+ })
+ ( fetchpatch {
+ url = "https://anonscm.debian.org/cgit/pkg-games/pcsxr.git/plain/debian/patches/07_non-linux-ip-addr.patch?h=debian/1.9.94-2";
+ sha256 = "14vb9l0l4nzxcymhjjs4q57nmsncmby9qpdr7c19rly5wavm4k77";
+ })
+ ( fetchpatch {
+ url = "https://anonscm.debian.org/cgit/pkg-games/pcsxr.git/plain/debian/patches/08_reproducible.patch?h=debian/1.9.94-2";
+ sha256 = "1cx9q59drsk9h6l31097lg4aanaj93ysdz5p88pg9c7wvxk1qz06";
+ })
+ ];
+
+ buildInputs = [
+ autoreconfHook intltool pkgconfig gtk3 SDL2 xorg.libXv xorg.libXtst
+ makeWrapper libcdio nasm ffmpeg file
+ ];
+
+ dynarecTarget =
+ if stdenv.isx86_64 then "x86_64"
+ else if stdenv.isi686 then "x86"
+ else "no"; #debian patch 2 says ppc doesn't work
+
+ configureFlags = [
+ "--enable-opengl"
+ "--enable-ccdda"
+ "--enable-libcdio"
+ "--enable-dynarec=${dynarecTarget}"
+ ];
+
+ postInstall = ''
+ wrapProgram "$out/bin/pcsxr" \
+ --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
+ mkdir -p "$out/share/doc/${name}"
+ cp README \
+ AUTHORS \
+ doc/keys.txt \
+ doc/tweaks.txt \
+ ChangeLog.df \
+ ChangeLog \
+ "$out/share/doc/${name}"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Playstation 1 emulator";
+ homepage = http://pcsxr.codeplex.com/;
+ maintainers = with maintainers; [ rardiol ];
+ license = licenses.gpl2Plus;
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/misc/emulators/wxmupen64plus/default.nix b/pkgs/misc/emulators/wxmupen64plus/default.nix
index 0366b9dd22c..aec498b899e 100644
--- a/pkgs/misc/emulators/wxmupen64plus/default.nix
+++ b/pkgs/misc/emulators/wxmupen64plus/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
configurePhase = ''
tar xf ${mupen64plus.src}
APIDIR=$(eval echo `pwd`/mupen64plus*/source/mupen64plus-core/src/api)
- export CXXFLAGS="-I${libX11}/include/X11 -DLIBDIR=\\\"${mupen64plus}/lib/\\\""
+ export CXXFLAGS="-I${libX11.dev}/include/X11 -DLIBDIR=\\\"${mupen64plus}/lib/\\\""
export LDFLAGS="-lwx_gtk2u_adv-2.9"
python waf configure --mupenapi=$APIDIR --wxconfig=`type -P wx-config` --prefix=$out
'';
diff --git a/pkgs/misc/ghostscript/default.nix b/pkgs/misc/ghostscript/default.nix
index 3d51a900c3b..1242d99398f 100644
--- a/pkgs/misc/ghostscript/default.nix
+++ b/pkgs/misc/ghostscript/default.nix
@@ -92,7 +92,7 @@ stdenv.mkDerivation rec {
rm -rf jpeg libpng zlib jasper expat tiff lcms{,2} jbig2dec freetype cups/libs ijs
sed "s@if ( test -f \$(INCLUDE)[^ ]* )@if ( true )@; s@INCLUDE=/usr/include@INCLUDE=/no-such-path@" -i base/unix-aux.mak
- sed "s@^ZLIBDIR=.*@ZLIBDIR=${zlib}/include@" -i configure.ac
+ sed "s@^ZLIBDIR=.*@ZLIBDIR=${zlib.dev}/include@" -i configure.ac
autoconf
'' + lib.optionalString cupsSupport ''
diff --git a/pkgs/misc/mnemonicode/default.nix b/pkgs/misc/mnemonicode/default.nix
new file mode 100644
index 00000000000..d977d822351
--- /dev/null
+++ b/pkgs/misc/mnemonicode/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, lib, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+ name = "mnemonicode-${version}";
+ version = "2015-11-30";
+ src = fetchFromGitHub {
+ owner = "singpolyma";
+ repo = "mnemonicode";
+ rev = "1687fabdf48acf68d4186f219bc20bffe02e8ee0";
+ sha256 = "0kp1jhhqfwfiqg9kx0mbyr4qh4yc4zg4szqk5fbf809nx2pvprm5";
+ };
+ installPhase = ''
+ mkdir -p $out/bin
+ cp mnencode $out/bin
+ cp mndecode $out/bin
+ '';
+ meta = with lib; {
+ description = ''
+ Routines which implement a method for encoding binary data into a sequence
+ of words which can be spoken over the phone, for example, and converted
+ back to data on the other side.
+ '';
+ license = licenses.mit;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.cstrahan ];
+ };
+}
diff --git a/pkgs/misc/screensavers/rss-glx/default.nix b/pkgs/misc/screensavers/rss-glx/default.nix
index 606a4200d0e..73b987baeb0 100644
--- a/pkgs/misc/screensavers/rss-glx/default.nix
+++ b/pkgs/misc/screensavers/rss-glx/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
buildInputs = [ pkgconfig mesa xlibsWrapper imagemagick libtiff bzip2 ];
- NIX_CFLAGS_COMPILE = "-I${imagemagick}/include/ImageMagick";
+ NIX_CFLAGS_COMPILE = "-I${imagemagick.dev}/include/ImageMagick";
NIX_LDFLAGS= "-rpath ${libXext}/lib";
meta = {
diff --git a/pkgs/misc/screensavers/xscreensaver/default.nix b/pkgs/misc/screensavers/xscreensaver/default.nix
index ed218abd420..6942d642fb1 100644
--- a/pkgs/misc/screensavers/xscreensaver/default.nix
+++ b/pkgs/misc/screensavers/xscreensaver/default.nix
@@ -4,12 +4,12 @@
}:
stdenv.mkDerivation rec {
- version = "5.34";
+ version = "5.35";
name = "xscreensaver-${version}";
src = fetchurl {
url = "http://www.jwz.org/xscreensaver/${name}.tar.gz";
- sha256 = "09sy5v8bn62hiq4ib3jyvp8lipqcvn3rdsj74q25qgklpv27xzvg";
+ sha256 = "08kbb0ry7ih436ab4i5g6lnhaaz13zkcdmbdibrn4j5gm5qq8v0y";
};
buildInputs =
diff --git a/pkgs/misc/themes/gtk3/numix-gtk-theme/default.nix b/pkgs/misc/themes/gtk3/numix-gtk-theme/default.nix
deleted file mode 100644
index 555e1ef508c..00000000000
--- a/pkgs/misc/themes/gtk3/numix-gtk-theme/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ stdenv, fetchurl }:
-
-stdenv.mkDerivation rec {
- version = "2.5.1";
- name = "numix-gtk-theme-${version}";
-
- src = fetchurl {
- url = "https://github.com/numixproject/Numix/archive/v${version}.tar.gz";
- sha256 = "0y6c4xr2n9sygxhgviwd97l02n17n53bkpfp62srkm05cq0jy87k";
- };
-
- dontBuild = true;
-
- installPhase = ''
- install -dm 755 $out/share/themes/Numix
- cp -dr --no-preserve='ownership' {LICENSE,CREDITS,index.theme,gtk-2.0,gtk-3.0,metacity-1,openbox-3,unity,xfce-notify-4.0,xfwm4} $out/share/themes/Numix/
- '';
-
- meta = {
- description = "Numix GTK theme";
- homepage = https://numixproject.org;
- license = stdenv.lib.licenses.gpl3;
- platforms = stdenv.lib.platforms.all;
- };
-}
diff --git a/pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix b/pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix
deleted file mode 100644
index c7cf3a871b5..00000000000
--- a/pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ stdenv, fetchFromGitHub, gtk }:
-
-stdenv.mkDerivation rec {
- version = "6a5f14cfe697b0a829456a1fd560acdcddc6043f";
- name = "paper-gtk-theme-${version}";
-
- src = fetchFromGitHub {
- owner = "snwh";
- repo = "paper-gtk-theme";
- sha256 = "0kyn3a6sq0z22vds6szl630jv20pjskjbdg0wc8abxzwg0vwxc5m";
- rev = version;
- };
-
- dontBuild = true;
- installPhase = ''
- mkdir -p $out/share/themes/Paper/
- cp -r ./Paper/ $out/share/themes/
- '';
-
- preferLocalBuild = true;
-
- meta = with stdenv.lib; {
- description = "A modern desktop theme suite featuring a mostly flat with a minimal use of shadows for depth";
- homepage = "http://snwh.org/paper/";
- license = licenses.gpl3;
- maintainers = [ maintainers.simonvandel ];
- platforms = platforms.linux;
- };
-}
diff --git a/pkgs/misc/themes/mate-themes/default.nix b/pkgs/misc/themes/mate-themes/default.nix
index 5c69bd78ed7..bc622ef3729 100644
--- a/pkgs/misc/themes/mate-themes/default.nix
+++ b/pkgs/misc/themes/mate-themes/default.nix
@@ -1,19 +1,26 @@
-{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, gtk2 }:
+{ stdenv, fetchurl, pkgconfig, intltool, gtk2, gtk_engines,
+gtk-engine-murrine, gdk_pixbuf, librsvg }:
-stdenv.mkDerivation {
- name = "mate-themes-1.6.3";
+stdenv.mkDerivation rec {
+ name = "mate-themes-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "3.18";
+ minor-ver = "1";
src = fetchurl {
- url = "http://pub.mate-desktop.org/releases/1.6/mate-themes-1.6.3.tar.xz";
- sha256 = "1wakr9z3byw1yvnbaxg8cpfhp1bp1fmnaz742738m0fx6bzznj9i";
+ url = "http://pub.mate-desktop.org/releases/themes/${major-ver}/${name}.tar.xz";
+ sha256 = "0lkp6jqvnxp6jly35iw89paqs279nvhqg01ig92n1xcfp8yrqq9c";
};
- buildInputs = [ pkgconfig intltool iconnamingutils gtk2 ];
+ nativeBuildInputs = [ pkgconfig intltool ];
+
+ buildInputs = [ gtk2 gtk_engines gtk-engine-murrine gdk_pixbuf librsvg ];
meta = {
description = "A set of themes from MATE";
homepage = "http://mate-desktop.org";
license = stdenv.lib.licenses.lgpl21;
- platforms = stdenv.lib.platforms.linux;
+ platforms = stdenv.lib.platforms.unix;
+ maintainers = [ stdenv.lib.maintainers.romildo ];
};
}
diff --git a/pkgs/misc/themes/numix-gtk-theme/default.nix b/pkgs/misc/themes/numix-gtk-theme/default.nix
new file mode 100644
index 00000000000..4a37a16d550
--- /dev/null
+++ b/pkgs/misc/themes/numix-gtk-theme/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub, sass, glib, libxml2, gdk_pixbuf
+, gtk-engine-murrine
+}:
+
+stdenv.mkDerivation rec {
+ version = "2016-05-25";
+ name = "numix-gtk-theme-${version}";
+
+ src = fetchFromGitHub {
+ repo = "numix-gtk-theme";
+ owner = "numixproject";
+ rev = "e99d167adf1310e110e17f8e7c2baf217c2402aa";
+ sha256 = "1418hf034b2bp32wqagbnn5y3i21h8v2ihjqakq2gaqd5fwg0f9g";
+ };
+
+ nativeBuildInputs = [ sass glib libxml2 gdk_pixbuf ];
+
+ buildInputs = [ gtk-engine-murrine ];
+
+ postPatch = ''
+ substituteInPlace Makefile --replace '$(DESTDIR)'/usr $out
+ '';
+
+ meta = {
+ description = "Modern flat theme with a combination of light and dark elements (GNOME, Unity, Xfce and Openbox)";
+ homepage = https://numixproject.org;
+ license = stdenv.lib.licenses.gpl3Plus;
+ platforms = stdenv.lib.platforms.all;
+ maintainers = [ stdenv.lib.maintainers.romildo ];
+ };
+}
diff --git a/pkgs/misc/themes/paper-gtk-theme/default.nix b/pkgs/misc/themes/paper-gtk-theme/default.nix
new file mode 100644
index 00000000000..ff778b86f9c
--- /dev/null
+++ b/pkgs/misc/themes/paper-gtk-theme/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, gtk_engines }:
+
+stdenv.mkDerivation rec {
+ version = "2016-05-25";
+ name = "paper-gtk-theme-${version}";
+
+ src = fetchFromGitHub {
+ owner = "snwh";
+ repo = "paper-gtk-theme";
+ rev = "dea5f97b12e4f41dddbd01a1529760761aa3784e";
+ sha256 = "0fln555827hrn554qcil3rwl9x4x3vdfbh2vplkc8r46a3bn8yng";
+ };
+
+ nativeBuildInputs = [ autoreconfHook ];
+
+ buildInputs = [ gtk_engines ];
+
+ postPatch = ''
+ substituteInPlace Makefile.am --replace '$(DESTDIR)'/usr $out
+ '';
+
+ preferLocalBuild = true;
+
+ meta = with stdenv.lib; {
+ description = "A modern desktop theme suite featuring a mostly flat with a minimal use of shadows for depth";
+ homepage = "http://snwh.org/paper";
+ license = licenses.gpl3;
+ maintainers = [ maintainers.simonvandel maintainers.romildo ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix
index 6ee520b8d15..f2fdbd292b4 100644
--- a/pkgs/misc/vim-plugins/default.nix
+++ b/pkgs/misc/vim-plugins/default.nix
@@ -111,7 +111,7 @@ rec {
src = fetchgit {
url = "git://github.com/godlygeek/csapprox";
rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd";
- sha256 = "17rqhf3gz2al597sy9smk10a7p1bh648659jkl867ay7g7mlgjwc";
+ sha256 = "08g4x6nnd6hkgm2daa5ihhz75pcdx3jzzv8rfjls80qajlhx5rf6";
};
dependencies = [];
@@ -122,7 +122,7 @@ rec {
src = fetchgit {
url = "git://github.com/chrisbra/CheckAttach";
rev = "a1d86be7e69b25b41ce1a7fe2d2844330f783b68";
- sha256 = "07rcp8phc0gazls0cassl64gvlxkp0hcc0c32adjw4jsdy11r4mq";
+ sha256 = "0scshz5vc5j2lhjj5is4y392xarwsdh4z3y7kyibq3d7fmszksgn";
};
dependencies = [];
@@ -133,7 +133,7 @@ rec {
src = fetchgit {
url = "git://github.com/mattn/gist-vim";
rev = "88c331e2e07765090112a396e5e119b39b5aa754";
- sha256 = "1igryyi85bk1pk0jmx4l01skgmjyg1kg1p3ylv0j22d5nibf79qd";
+ sha256 = "0z7qnkgv8ryyiwikz6v6vpqypr2gh2hih27cil02rs4ci4041w74";
};
dependencies = [];
@@ -166,18 +166,18 @@ rec {
src = fetchgit {
url = "git://github.com/ervandew/supertab";
rev = "66511772a430a5eaad7f7d03dbb02e8f33c4a641";
- sha256 = "065l7vin3gdk4lzcavwl7k850kz93lqhazxn80p2d8rwkx732jgx";
+ sha256 = "1kxxgplsc40wyl7yj3dpcjjgysd41cd32ppcpnj5knphpjw7abp4";
};
dependencies = [];
};
Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "Syntastic-2016-05-12";
+ name = "Syntastic-2016-05-23";
src = fetchgit {
url = "git://github.com/scrooloose/syntastic";
- rev = "c2c6a075113adbfcc4f1ad5b1c0200a0d35ceeb6";
- sha256 = "1b6wc3705n7pj93cf6cv2sazihqw11zq53a7slr646lcdx8r6d7f";
+ rev = "95879f19a9f8a72282717e07d0d4e006d8561580";
+ sha256 = "19wr3bll9n7y3rh26r4aklk682jqxrh5j8c9wkpg6m9v60yqj053";
};
dependencies = [];
@@ -188,7 +188,7 @@ rec {
src = fetchgit {
url = "git://github.com/godlygeek/tabular";
rev = "00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367";
- sha256 = "0d4n6vggrxvd0jab7yp8wz56dq79g4gjr9fgxfv0q31d3dx1j6js";
+ sha256 = "185jpisk9hamcwb6aiavdzjdbbigzdra8f4mgs98r9cm9j448xkz";
};
dependencies = [];
@@ -199,18 +199,18 @@ rec {
src = fetchgit {
url = "git://github.com/majutsushi/tagbar";
rev = "7b36c46d17d57db34fdb0adac9ba6382d0bb5e66";
- sha256 = "1iqk7y2ckkmzq22jmiyrrxhnzcy8r3kdizwf65l1qbbpfbkp6rrl";
+ sha256 = "10n1c55r2arj89man01hq9dlp2lwya9gma2jh8lhhy8p9zfl95w6";
};
dependencies = [];
};
The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "The_NERD_Commenter-2015-10-29";
+ name = "The_NERD_Commenter-2016-05-24";
src = fetchgit {
url = "git://github.com/scrooloose/nerdcommenter";
- rev = "1f4bfd59920c101a30a74a07b824608a6e65f3fe";
- sha256 = "0gdqmwsyk5ly96d0dp4j7pa0kp6qcl04nzxckh8kxjsbqnphmwaf";
+ rev = "2b3714bff67ca57cb9e416bd737a24f71181859b";
+ sha256 = "1va0d4vxk53lgy2cs1hgxcha6fsc6c2y6m7jwmzfpj2gdha2v52y";
};
dependencies = [];
@@ -221,18 +221,18 @@ rec {
src = fetchgit {
url = "git://github.com/scrooloose/nerdtree";
rev = "15445be5fb2559829ac7a1f05af5d713586e8ec9";
- sha256 = "0lpna2w0s85hagx6dpqanicrllmahjnmd0df4cndk0n5nih36x5k";
+ sha256 = "1x85k2h2qm1z67ywg0867w483w1rb7zmq9r2rkjj2kkk5wi6hfvq";
};
dependencies = [];
};
UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "UltiSnips-2016-05-08";
+ name = "UltiSnips-2016-05-16";
src = fetchgit {
url = "git://github.com/SirVer/ultisnips";
- rev = "b5edea2e998ae6c62517c7ed3e4c57b652537141";
- sha256 = "03ib1vq5rsj8xsakvdwdwgcwivyr8byx2z3s5rnq0rnwjlnpmqpn";
+ rev = "1c6b4f75a006c4411d01a1234cabda3eb4aded1a";
+ sha256 = "0m9sfq9d9qvrx5valg0xz9bi0y2zi3790rg1qlnin4h1gbj5axjb";
};
dependencies = [];
@@ -243,7 +243,7 @@ rec {
src = fetchgit {
url = "git://github.com/vimoutliner/vimoutliner";
rev = "cb41cfd6d636e1243e7e9c46b35fc5cb50588069";
- sha256 = "03w5y57329lnv2rxz0wvnfd1qv6d36zsqgwwvm2j8fvryhs7xbvg";
+ sha256 = "16szrm282l608i1v3z1vfnqrnk5x4gfljvvxqaszzm4qgdg90qg7";
};
dependencies = [];
@@ -254,7 +254,7 @@ rec {
src = fetchgit {
url = "git://github.com/mattn/webapi-vim";
rev = "ca89bd5867e76b154d4eca325b5a9ad6509fccc5";
- sha256 = "14gs351xm474ak4lxava38wrbwd5s26rca387slknncj5x404i65";
+ sha256 = "138rplbmvxicxjkkbvskck3b91rill53y22yrnnd9rj7zh9hj0zm";
};
dependencies = [];
@@ -273,7 +273,7 @@ rec {
url = "http://www.vim.org/scripts/script.php?script_id=1234";
};
-
+ sourceRoot = ".";
};
commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
@@ -281,7 +281,7 @@ rec {
src = fetchgit {
url = "git://github.com/tpope/vim-commentary";
rev = "73e0d9a9d1f51b6cc9dc965f62669194ae851cb1";
- sha256 = "1cyghdlhyyzl366l8r7a2m00pfnga98n6s6a1z00y4rmnnxbk1kk";
+ sha256 = "1z409hpdk22v2ccx2y3sgcjf4fmnq7pyjfnk72srpqydfivxsl13";
};
dependencies = [];
@@ -314,7 +314,7 @@ rec {
src = fetchgit {
url = "git://github.com/int3/vim-extradite";
rev = "52326f6d333cdbb9e9c6d6772af87f4f39c00526";
- sha256 = "1wfdw6g16nqwdalq7m7ncnxhzyjcl5c8nsbsnsnr5bgsfgp49xwi";
+ sha256 = "0c89i0spvdm9vi65q15qcmsfmwa9rds2wmaq1kf6s7q7ywvs6w8i";
};
dependencies = [];
@@ -325,7 +325,7 @@ rec {
src = fetchgit {
url = "git://github.com/tpope/vim-fugitive";
rev = "3439f999b138254e4bb56187fc91f91f545b4b12";
- sha256 = "0p6vzfyhy7yvzrfmzyj0f1ccad3fqb3nd86phbl4hwnj8q00qvgw";
+ sha256 = "0b617wljhcbz6w789j72lp4riplcb6m3b2h8x84awp2rls6k130b";
};
dependencies = [];
@@ -336,18 +336,18 @@ rec {
src = fetchgit {
url = "git://github.com/eagletmt/ghcmod-vim";
rev = "815616e8b7d64677d6092e95bc6a3e83d2e035d4";
- sha256 = "1s0wxccmxi0w7ywhwyxggv5n8lcjgh68rhbpp2zrv5n5sg0das73";
+ sha256 = "00pl4zimbhcfpjg326qkjxr4s4d21kzl4j617382rvqbingrm8is";
};
dependencies = [];
};
vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-autoformat-2016-05-13";
+ name = "vim-autoformat-2016-05-23";
src = fetchgit {
url = "git://github.com/Chiel92/vim-autoformat";
- rev = "aaf19a31a9fcc53c5158710b69f17fe5ce137698";
- sha256 = "0sps5wzva07g0bc3qgr4l6bh90gl3mrx5913g8q2igvzsfp7g9m3";
+ rev = "0dcc7b318939dab7c34c4aa31ce93678800034c6";
+ sha256 = "1ahrpjnkyqslmiii8c81mayl299imd1jmgjplh0g575bipy4f7sa";
};
dependencies = [];
@@ -358,29 +358,40 @@ rec {
src = fetchgit {
url = "git://github.com/LnL7/vim-nix";
rev = "f0b7bd4bce5ed0f12fb4d26115c84fb3edcd1e12";
- sha256 = "0r3nffv2yv6vhzhkqx97diqwbcfqvc4j20nrcbmqhaf1bd6xvnsj";
+ sha256 = "0x12a191xafn7918xa8r4sjiw79005lcr0yv5kjc4p1izwddfgdv";
};
dependencies = [];
};
deoplete-nvim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "deoplete-nvim-2016-05-15";
+ name = "deoplete-nvim-2016-05-24";
src = fetchgit {
url = "git://github.com/Shougo/deoplete.nvim";
- rev = "22b6244d72aa4d4e015191a88120eceda1064df0";
- sha256 = "1nc6wn3ha9r80p0bpjm05afqddaa5p94cm0a9xfpm6an43g7jxs1";
+ rev = "b254ca56f768b72b3ba136ccd81abd919523036a";
+ sha256 = "1dg5ids354f5c9ixfy9b6526yhr9w9968g0rghm0w8mlvgbx6bj8";
};
dependencies = [];
};
Spacegray-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "Spacegray-vim-2016-04-24";
+ name = "Spacegray-vim-2016-05-21";
src = fetchgit {
url = "git://github.com/ajh17/Spacegray.vim";
- rev = "ed44e2a6b0a7cb48ccd1a41c45ab8399e12910ba";
- sha256 = "0m3xm2p1d4ywp20cziz1iiihq4y0ca88hjs4gr48ps0n7h5qf477";
+ rev = "82551620059b055d7ed866cf7af3e8b6f1b891a4";
+ sha256 = "0xprszpva3via83zbs3x74jbc9zfrnxryilqvgpnrircgxm9cbx7";
+ };
+ dependencies = [];
+
+ };
+
+ vim-closetag = buildVimPluginFrom2Nix { # created by nix#NixDerivation
+ name = "vim-closetag-2016-04-21";
+ src = fetchgit {
+ url = "git://github.com/alvan/vim-closetag";
+ rev = "26e41a5b0c3752d5300506a49120d9dff19d8323";
+ sha256 = "0c8x25hb912jmhf5jpfll08937wr2yls28i9divldm9jkmxvcx2k";
};
dependencies = [];
@@ -391,18 +402,18 @@ rec {
src = fetchgit {
url = "git://github.com/ap/vim-css-color";
rev = "4421dbac36bedcdd4fc345fd95785cfed518847c";
- sha256 = "11f356rciyxxvdlcijiq5rz2w8vmbcczq32r1fgspaig4pfa933p";
+ sha256 = "0z4d9q7irid4wianh94wqc2nr8hx54pci0p87ibhkbi7ibpl1qmp";
};
dependencies = [];
};
neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "neomake-2016-05-15";
+ name = "neomake-2016-05-22";
src = fetchgit {
url = "git://github.com/benekastah/neomake";
- rev = "10689403d15879859715d7ef42d854c35615854b";
- sha256 = "1fbflq7851x3vqxp2jn0gp1x2cigb9llv3gzhj02mkqc6imhqkcp";
+ rev = "b33d77d4b0543e9444ca5e79daa5109bbab4a31c";
+ sha256 = "00r7fpsd4cc3f69jar7v39ffj0xndlvgbkmlmhlcfgk1h1bzic5h";
};
dependencies = [];
@@ -424,18 +435,18 @@ rec {
src = fetchgit {
url = "git://github.com/christoomey/vim-tmux-navigator";
rev = "e13914d89e9413cfa449f0c3daff18691356f2d1";
- sha256 = "17cdjj9r13hm5iwnghnfp1bwvz619dv4xg5014962pgkwh9kzdz2";
+ sha256 = "1hs61lgkf4bsy8891zqklh9jfzkwmm7r0lmr228k5wn97778bc83";
};
dependencies = [];
};
spacevim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "spacevim-2016-05-16";
+ name = "spacevim-2016-05-23";
src = fetchgit {
url = "git://github.com/ctjhoa/spacevim";
- rev = "c5d03538a8b2f81f2bdb7ca35e589a6a61806ae2";
- sha256 = "0r8jsygm30x8v31lm8al1qr6bh2wvnd9bxj6n8bxv4f87jl8dd2s";
+ rev = "c6d1cae4a72c957279707256f6c91a390f83aa9c";
+ sha256 = "1ipm8csk6a7wcpqi1c9nmhb3jfm7ikfrw207yp1b9vklsznnqm53";
};
dependencies = [];
@@ -446,7 +457,7 @@ rec {
src = fetchgit {
url = "git://github.com/ctrlpvim/ctrlp.vim";
rev = "28fce0fb860fe8df0915da1de1fb6e90d6ab2edc";
- sha256 = "1xyxr7m0y2bwiqrb9sj0cjfdc5x474ajqg3bzv4cjv289gvql2qh";
+ sha256 = "1amxly825vdp7s1znnzz7ysjks26j37lhpm8hvgfxpxks2clyhhs";
};
dependencies = [];
@@ -468,7 +479,7 @@ rec {
src = fetchgit {
url = "git://github.com/eagletmt/neco-ghc";
rev = "b91b30f145d4daaf7e50d083e377bd9fbfdc670b";
- sha256 = "0znz8ym32k2y0ymdr070a9kx35mlalqfv9qlfz252ny348lwkgb8";
+ sha256 = "1fnxqqp4p7kxzs7svia33wikrzyav41qlncjpmbz6ss8jb9bk18b";
};
dependencies = [];
@@ -497,11 +508,11 @@ rec {
};
vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-go-2016-05-15";
+ name = "vim-go-2016-05-23";
src = fetchgit {
url = "git://github.com/fatih/vim-go";
- rev = "48cc65dfbd3172b989f82c8b67ceb6d88db3c522";
- sha256 = "1zw6jsyzhpl46f37dwslvhg74djl9ngi3h2rzrpgzscpm5wa6h38";
+ rev = "e9f44d933e38bf3193ac5cce15f08fdc7e54814b";
+ sha256 = "18hxnb6rn6gxixcqqwpqi4q9adz23jgrz8as2rl90y77m8f5inr5";
};
dependencies = [];
@@ -512,7 +523,7 @@ rec {
src = fetchgit {
url = "git://github.com/flazz/vim-colorschemes";
rev = "189f5182bb70fd35d0f56fee451c3f22a2a80135";
- sha256 = "0wv12f6i07md9c53ygbmyh14zghsr7w9ylkbrfpdjm9z32b0fpwf";
+ sha256 = "1j3r99av9rzdrp8w0c86n0r4kgiv8xry5xdghc1871kvz77sq5d4";
};
dependencies = [];
@@ -523,18 +534,18 @@ rec {
src = fetchgit {
url = "git://github.com/google/vim-jsonnet";
rev = "9cde81ff3f1afb64f8e6b51e8ebba25b074e26f8";
- sha256 = "0g1xbx8hw03dxpdhdhy4h355lwhfay15294c1i1i7lq3xnb8y6n8";
+ sha256 = "156lbh1xgw3vrgbdfax3mhyfdm2r6r0ak42bs001ykpqmn6dxbrx";
};
dependencies = [];
};
vim-leader-guide = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-leader-guide-2016-05-09";
+ name = "vim-leader-guide-2016-05-17";
src = fetchgit {
url = "git://github.com/hecal3/vim-leader-guide";
- rev = "871f36a1001dd697d679a64a9d58da05ca3f90b8";
- sha256 = "0dflv8nmpxr33q0h0cl8z9ijnbsa895agjbmisz7kq54anwwz763";
+ rev = "333bd74c6f6ad18d653061f469342f9a37664256";
+ sha256 = "07y4rq9d45vak5gm0hm1aazsh8r0k631aa9d0q9v9iz9k3v7irgw";
};
dependencies = [];
@@ -552,22 +563,22 @@ rec {
};
calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "calendar-vim-2016-05-09";
+ name = "calendar-vim-2016-05-19";
src = fetchgit {
url = "git://github.com/itchyny/calendar.vim";
- rev = "4820ac93f9e8bb0c06c6b8abc1059048f17d1868";
- sha256 = "0zgj73z5c13zgrs3asy3h299ws7gkqqjhl2cqkf1kgssdmyfnbmm";
+ rev = "f49bd337a4643bb58df0fa4df230d60bdfeef022";
+ sha256 = "06hzvcpkgz51jl6zj67ycga5p9n1y6kk335d3cha24divp4ll1jb";
};
dependencies = [];
};
lightline-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "lightline-vim-2016-05-14";
+ name = "lightline-vim-2016-05-16";
src = fetchgit {
url = "git://github.com/itchyny/lightline.vim";
- rev = "6de7b19812e3051f739fe05dbd23f040b870c00b";
- sha256 = "1qc95dnmg3zqvizfy1bk2yvw0vkyz547m7a06ccln9pd4hy0kgfk";
+ rev = "ac5e6df5cac0f3ff3078c51f715978288a5c351d";
+ sha256 = "1q3zkfg8dq7760jlm207f6d85c46q8x2hfdqmdxkbagvhb9c0f4y";
};
dependencies = [];
@@ -578,7 +589,7 @@ rec {
src = fetchgit {
url = "git://github.com/itchyny/thumbnail.vim";
rev = "4afdc473b47d162610965fa5ed15fa855cca65d4";
- sha256 = "1fcyjw1dvkpijlcm2lbg81am6h188p1bmi3md6wvk48vdj2h56r5";
+ sha256 = "1z5a9dqb788ll5j8gg3hdjjggwpx0b073v5dr8zlrk1zjwah56gw";
};
dependencies = [];
@@ -589,7 +600,7 @@ rec {
src = fetchgit {
url = "git://github.com/ivanov/vim-ipython";
rev = "42499f094b805b90b683afa5009cee99abd0bb75";
- sha256 = "0b9g4ny32772x78k0nnarnm6arm3bj2nxj83sxaqaascvvnw6nbz";
+ sha256 = "10wpfvfs8yv1bvzra4d5zy5glp62gbalpayxx7mkalhr2ccppy3x";
};
dependencies = [];
@@ -611,7 +622,7 @@ rec {
src = fetchgit {
url = "git://github.com/jceb/vim-orgmode";
rev = "e0d56a6e93798b7a503bb4ab86fec016cd74d466";
- sha256 = "1nm04d5ngbk21c0ykjbflqn9xym1x67rijq7wsgmmm79q0irn25q";
+ sha256 = "0704wli8n1x4v40mdfj0icjarr52iqvw2byzsvyzb420wpf1nqpb";
};
dependencies = [];
@@ -622,7 +633,7 @@ rec {
src = fetchgit {
url = "git://github.com/jeetsukumaran/vim-buffergator";
rev = "611966d1ced784d5659c5dc07e984fabd95d917f";
- sha256 = "1fypzqwl89gk024742d59d0ax9wl2xv40bpfmby0cnh1f5hqias3";
+ sha256 = "1brb6qwlgxq4zcmrqp7wf2zvfvdq4zm8ynzg8wg9rq5cmyp8f61z";
};
dependencies = [];
@@ -644,7 +655,7 @@ rec {
src = fetchgit {
url = "git://github.com/jistr/vim-nerdtree-tabs";
rev = "0decec122e9bb3e9328b01fa20a9650e79cc6ca7";
- sha256 = "1hmxwwxfrk6c6g2mivazpl72s5vw1w5dvl10ivpn52lfw4xgqjxc";
+ sha256 = "0m51vpxq0d3mxy9i18hczsbqsqi7vlzwgjnpryb8gb5wmy999d6l";
};
dependencies = [];
@@ -684,22 +695,22 @@ rec {
};
fzf-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "fzf-vim-2016-05-17";
+ name = "fzf-vim-2016-05-24";
src = fetchgit {
url = "git://github.com/junegunn/fzf.vim";
- rev = "78c3d254ae29ac877e73e85545c3ae200203f168";
- sha256 = "0lsmn3a9qnjkmw5gzhk2lgr1qg0mi9g0l96vj5v4178432swgsrv";
+ rev = "c786d516375c5fe404febec39282fc1d63069a37";
+ sha256 = "0dk5bs4f2lfs96npgid5ayapsqf9xhf9ii0gaa0rq4dz93i76hzg";
};
dependencies = [];
};
limelight-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "limelight-vim-2016-04-12";
+ name = "limelight-vim-2016-05-17";
src = fetchgit {
url = "git://github.com/junegunn/limelight.vim";
- rev = "be8c754eb1cc947521831d0d2e2fb9da5420d57a";
- sha256 = "1nhk4rmpfbp1q9rbihz014v7mk4ai4zpk88k3dmj6ymvmmxj2ayh";
+ rev = "e93c8013bb66d4b6622e24e0e3a97e71a032d9ec";
+ sha256 = "1xq3fa44fz3dfl52y0ygm21pa8b121b5lsdflcvn0igvisdkzl6g";
};
dependencies = [];
@@ -721,7 +732,7 @@ rec {
src = fetchgit {
url = "git://github.com/justincampbell/vim-eighties";
rev = "62a9719df45fddd0456bf47420fc4768f9c8f5a5";
- sha256 = "108yv5kwcfx7wjn3pqak86vsmcng0ha5s452pl75q3k580f6sf5k";
+ sha256 = "1ada7f2lhdwjqmy5kxma69s215z4phi4khh8hsy5qd6k3a4bvyrs";
};
dependencies = [];
@@ -732,29 +743,29 @@ rec {
src = fetchgit {
url = "git://github.com/latex-box-team/latex-box";
rev = "3c2901e12cb78bfb2be58ba4c62a488612550fe1";
- sha256 = "10af319r8y94dnqv8js5fgdr2n482hgkl641hkd3i563159c9wla";
+ sha256 = "1z4mdy47cpwcdhvy8mr72vhlybxn1y59yd3ixf6ids1bzpkrd7zl";
};
dependencies = [];
};
vim-jinja = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-jinja-2014-06-11";
+ name = "vim-jinja-2016-05-20";
src = fetchgit {
url = "git://github.com/lepture/vim-jinja";
- rev = "4412484b410b15caecd71f2e52758b2a90ea124d";
- sha256 = "1z5ya953nn7233jjjs0ay61x5hfrfddx9xz31grq52cfd0ipy335";
+ rev = "0bcc2993ef13bacd4bf1a0d91eb17652f7aedb86";
+ sha256 = "1wypg9rf7q65g6l3ajp75gdb4cd7spckzd4b7ccg8c47vd937dcj";
};
dependencies = [];
};
vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vimtex-2016-05-15";
+ name = "vimtex-2016-05-23";
src = fetchgit {
url = "git://github.com/lervag/vimtex";
- rev = "57df1d1686ab339eec93ac51b02993c8c54343c5";
- sha256 = "1lfry5njp6w3gan54xmilczzqryj9n27xdgs72svaljla6c7lbdy";
+ rev = "257d2f91de35716d09f08fbbcb384cdc20ac7659";
+ sha256 = "1cq7dvv4hsrm8khhlj1411rp9q5f0xp7q1m61khdr1icgjfasaxp";
};
dependencies = [];
@@ -765,7 +776,7 @@ rec {
src = fetchgit {
url = "git://github.com/lokaltog/vim-easymotion";
rev = "5c6f3cd9a713491e6b32752a05c45198aa91540a";
- sha256 = "086zih2mjrv1s596sw09a0vkaijm0ml3v2668n45cpxb04aa11d7";
+ sha256 = "0nr50c6hsg43bc86gkiram5whkggjpszffl8xkqxdmlspz9h96v3";
};
dependencies = [];
@@ -791,7 +802,7 @@ rec {
src = fetchgit {
url = "git://github.com/mhinz/vim-startify";
rev = "e74cc71b1b7b33f6df6e8b48ff4b0f587f6bfed9";
- sha256 = "1dimkqzmcw8w10wf75b10bvmskyf9ahxxiyvac4kbr7bipmzz1b3";
+ sha256 = "1s7kys6kj7jrs1z3i8fgb9y1f45halwgpkgw34518ljmjx8n42sa";
};
dependencies = [];
@@ -802,7 +813,7 @@ rec {
src = fetchgit {
url = "git://github.com/mkasa/lushtags";
rev = "641e4163d078e7c3844f2ac82a8153a3ef06484b";
- sha256 = "0fydgz40bfnz6jpmv9bbr3b5bb5vd1514zk9qg3wh12ynpfhqc89";
+ sha256 = "1zqgvflkw0pnrv6bzvlsd98sc2m7nk5w3bzqdzj3xdi8ahqx239g";
};
dependencies = [];
@@ -831,11 +842,11 @@ rec {
};
haskell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "haskell-vim-2016-05-10";
+ name = "haskell-vim-2016-05-17";
src = fetchgit {
url = "git://github.com/neovimhaskell/haskell-vim";
- rev = "4e87782d1657ac1556c2128ff8dee967953554a1";
- sha256 = "0yyk7ja6ljhn9s55v3d0fsnk0a3y0skcb0wjjspk2nvdj90s4n8z";
+ rev = "f73cdcdf72e9200420fc74491b6cd215512c3330";
+ sha256 = "1fgcfcslb6p84xcv1ighd8i4p4960vac7f7zpvl0d7bpp75ci07b";
};
dependencies = [];
@@ -857,18 +868,18 @@ rec {
src = fetchgit {
url = "git://github.com/osyo-manga/vim-watchdogs";
rev = "ebcf3df39007aa5d65910f44eb20c9caea9007df";
- sha256 = "0b0sicq8vgil9nm6vnp3k1vlsc6na54cy95pb68w4bj7mscd0q9j";
+ sha256 = "09wajb6kxvxnqaysj5hhp1g79hzz3bazmbpnj7nn5fdaf83rd8jl";
};
dependencies = [];
};
vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-racer-2016-05-12";
+ name = "vim-racer-2016-05-24";
src = fetchgit {
url = "git://github.com/racer-rust/vim-racer";
- rev = "6677d268b3bb2770379874eaea275632bf59ff76";
- sha256 = "08g1wbc3cwgkhpyn954n3bb5qyp2zz9lifxzfgndxb0dhmxprf15";
+ rev = "031a4e4131450758ade9073025cf4f75e8c2d85c";
+ sha256 = "1hq67hi8069h4yp8l6nb0afnkgidrk4c3hagp6saiihlh3541m11";
};
dependencies = [];
@@ -879,7 +890,7 @@ rec {
src = fetchgit {
url = "git://github.com/rust-lang/rust.vim";
rev = "115d321d383eb96d438466c56cc871fcc1bd0faa";
- sha256 = "1xanv9933vh9rzki6vfzshiav6xrx7025a40v2q9c1l2zx3iz7pb";
+ sha256 = "0j9vp3kb9kiza3h6jr8csqmdcsdp4g2qix70lvyh6ybrbkz84ghw";
};
dependencies = [];
@@ -890,7 +901,7 @@ rec {
src = fetchgit {
url = "git://github.com/shougo/neocomplete.vim";
rev = "81d39635625730ca43f08762e2908b96e7b7f077";
- sha256 = "0kqyfpz2apj1pz6p4mqzy4256cxmdbd9ra9hiz2f92wymgmnwpcv";
+ sha256 = "0lqvklg2vm8vcgj0786wi103wzr71v2l9i3f215kg9did2nnmky9";
};
dependencies = [];
@@ -908,22 +919,22 @@ rec {
};
neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "neosnippet-vim-2016-03-30";
+ name = "neosnippet-vim-2016-05-17";
src = fetchgit {
url = "git://github.com/shougo/neosnippet.vim";
- rev = "ce3c3d209c38a6d87bbf1408d293e179f95e7bb8";
- sha256 = "0lp1p8vwnnwrnhiivzzzd0688vivyxqjgl75piq0xfw24v9ncgcf";
+ rev = "9eac227835317d2fad9ae9b816590ce33a3ab7c4";
+ sha256 = "0hbj03rhrlga9fszd3ryyrfl93fmxsc3892swdaa3zhl18zfn0m2";
};
dependencies = [];
};
unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "unite-vim-2016-05-15";
+ name = "unite-vim-2016-05-22";
src = fetchgit {
url = "git://github.com/shougo/unite.vim";
- rev = "5638a2469ecb29eb302aee668981d61da96d301f";
- sha256 = "0jblcwqdq8jgday3khnvari9gijsfvyc0s0c585x0i255rmq414y";
+ rev = "5fd81feec7ff3f94173ecb10e3dee98aaef26e5d";
+ sha256 = "0lnmys9g99m7fzcxgc9xl2n7am14wyvqmffaqhdlpqjj3lv2l4dz";
};
dependencies = [];
@@ -934,7 +945,7 @@ rec {
src = fetchgit {
url = "git://github.com/shougo/vimproc.vim";
rev = "0ff17bc0725cd0323df87664fa02b1436349f667";
- sha256 = "0r5kfj1zl9hld9rx5jdvgmdr30d573ncikily0qcjl90y4rjw3fp";
+ sha256 = "14j8ypn54cidh4bk3nqsc0ablwvgydlsbmb256rq512gpwkm2mil";
};
dependencies = [];
buildInputs = [ which ];
@@ -953,7 +964,7 @@ rec {
src = fetchgit {
url = "git://github.com/shougo/vimshell.vim";
rev = "bdcd197b701734a743903c7547e9f56842701614";
- sha256 = "04b4kzjg0b8blfqcc21vvn7myq9g7iyn2zy1ypiil64bbch1aw3p";
+ sha256 = "1cv2mdkhq3kvs91cd7d703b6567glb3snvg27vmj1p8amzxjf97d";
};
dependencies = [ "vimproc-vim" ];
};
@@ -963,7 +974,7 @@ rec {
src = fetchgit {
url = "git://github.com/sjl/gundo.vim";
rev = "e7fe41024ace9047eee610f23311d44fd9d917c0";
- sha256 = "1kdz2qr4z2k2dz6p0jr6y5zwi7n7k1g3m2k52iz03dicvmb5d59h";
+ sha256 = "14mx617mxh7q6rhjfcnv080hpr965vhqzfwhlizpmzc16lsf7ni1";
};
dependencies = [];
@@ -1003,11 +1014,11 @@ rec {
};
vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-quickrun-2016-05-10";
+ name = "vim-quickrun-2016-05-18";
src = fetchgit {
url = "git://github.com/thinca/vim-quickrun";
- rev = "76f576959cc7d971fcb5ffea25ad72887e3ea035";
- sha256 = "06nbx1ssg95nv3z3i75m134jbihk7iajkf7plfr46i2vmrj602c5";
+ rev = "3bdd13cc577b58a90d7964f2fe4446b2e65ea77a";
+ sha256 = "0lpnq1pkv8zjj99gfsa21bvz2g1bspxkqjbs3m4h49g1695bf5w9";
};
dependencies = [];
@@ -1029,7 +1040,7 @@ rec {
src = fetchgit {
url = "git://github.com/tpope/vim-eunuch";
rev = "5ee2b82b565e6c6d80f1cb7735c78f66a159b198";
- sha256 = "1ampwnbi0vpl4g6aj2rax0v902fxk1jyz6azvnnffqzr0b2rnk9b";
+ sha256 = "108v98qy49w2pgzndmqc9nydmsql2bnbcc849wshvkxgca349ixc";
};
dependencies = [];
@@ -1040,7 +1051,7 @@ rec {
src = fetchgit {
url = "git://github.com/travitch/hasksyn";
rev = "c434040bf13a17ca20a551223021b3ace7e453b9";
- sha256 = "0c8r72qw7r7sd2cww07x6n2sp5cwkgamjf8khcdh39zcia93b9xi";
+ sha256 = "09998lnfcshqis5m062wlag6y476imq9jday9gp4ayjjl1cp3cwx";
};
dependencies = [];
@@ -1058,11 +1069,11 @@ rec {
};
youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "youcompleteme-2016-05-11";
+ name = "youcompleteme-2016-05-17";
src = fetchgit {
url = "git://github.com/valloric/youcompleteme";
- rev = "6a81436bd83d174f63c5691e1a9eb24470108942";
- sha256 = "0ir28yk3sgy66y8xxrj9628881lmp6l7bg52zjgycdz57hv85zlg";
+ rev = "fa583935476776ef274adf1d516d1497d5bb573d";
+ sha256 = "0i6zr4x28j5lfqsbaq9mdpzxyppkrj2hlh4w1inx94f2sfijf1m5";
};
dependencies = [];
buildInputs = [
@@ -1098,22 +1109,22 @@ rec {
};
vim-airline-themes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-airline-themes-2016-05-14";
+ name = "vim-airline-themes-2016-05-16";
src = fetchgit {
url = "git://github.com/vim-airline/vim-airline-themes";
- rev = "8bf1961e3b50551956fe2703bdfca1eb84ba1daf";
- sha256 = "1ifvg5pmy8g8pcwvx6pnlym2v6szaziliqvl46da8g7g3mxmd4zb";
+ rev = "97a042a57af7f04e25fddb6e694d75be1d55be02";
+ sha256 = "1sgkwjrh8g01kykzbz6dm5giycrq3vqi0f3m5ppvijhj8yind69s";
};
dependencies = [];
};
vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-pandoc-2016-05-03";
+ name = "vim-pandoc-2016-05-24";
src = fetchgit {
url = "git://github.com/vim-pandoc/vim-pandoc";
- rev = "b32791d3cfc999344a9acf22738b41e8ab21aec7";
- sha256 = "1lvq9767ng8156l5946z44sw2s19mb70hn7afxkdsk9771agd365";
+ rev = "cca2326046fd9bf44276e6d44f106c90d80eca25";
+ sha256 = "106dxdll11sj5vi34a0nq5kmfbp13g80ix26m6k9snxjx2y79y3s";
};
dependencies = [];
@@ -1124,7 +1135,7 @@ rec {
src = fetchgit {
url = "git://github.com/vim-pandoc/vim-pandoc-after";
rev = "4377665e5c98f29ea838deb3b942200b8dd096ef";
- sha256 = "1di82bgi7sjn7lmma7g9zbdraamsy9c6g7ms6jgglfvynbbvmgg0";
+ sha256 = "1379g174pvsaw1wdv1n18gby84sv59rsamfcgq9bqd4kg54g6h3j";
};
dependencies = [];
@@ -1135,7 +1146,7 @@ rec {
src = fetchgit {
url = "git://github.com/vim-pandoc/vim-pandoc-syntax";
rev = "a35e9ce28bae85b1ce5d4f817882a8d78efcd6be";
- sha256 = "1d3yw2v9giw2nyk4yb8qdav42wki81g8nzn3dz3rzb6dqq1k3skv";
+ sha256 = "08l6sjzvl6bigh4d9rvqadvz8bpq25c1ima4la2i3pg8xgdc9xf3";
};
dependencies = [];
@@ -1219,22 +1230,22 @@ rec {
};
vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-wakatime-2016-04-29";
+ name = "vim-wakatime-2016-05-21";
src = fetchgit {
url = "git://github.com/wakatime/vim-wakatime";
- rev = "2d30996a1622a7f2cd9bf55cf9078d4301648f4c";
- sha256 = "0mkj6bxxjdyi7dd52nfk881ayjym5rqa5r4zjcra9lhbh0fcdhfk";
+ rev = "d46c3e96d5e489d45c2910898212f58c646518c9";
+ sha256 = "1qpsasiqin9wlavivfd9925pzsfh04hhdww92iah66a2vvaxjnhw";
};
dependencies = [];
buildInputs = [ python ];
};
command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "command-t-2016-03-12";
+ name = "command-t-2016-05-21";
src = fetchgit {
url = "git://github.com/wincent/command-t";
- rev = "2d80b2e65cd690dd17c66fb52e5f9fb09700b1e7";
- sha256 = "1ndzjsrf2nz7gaq6q58p4pna82a4zbirclyjkgzg6a58qinhm3pi";
+ rev = "39b75707640493795afb4fb90b2d74cade84cee8";
+ sha256 = "1n46dq4fsqq7nsl7nivl3xk23k54sarflrr6b30v1vvg22mw64yq";
};
dependencies = [];
buildInputs = [ perl ruby ];
@@ -1251,7 +1262,7 @@ rec {
src = fetchgit {
url = "git://github.com/junegunn/goyo.vim";
rev = "8e8f1d45b61e1fce7f84ee061c38f9e033e86ff9";
- sha256 = "0q3in448s99df4dls4vlfsnh15q9rargsb68axj4z5z0jdkncpwi";
+ sha256 = "120farhbfyzd7k1s1i68drwa5zzzm9yrcwzw45gwa2j7kqbv4hnx";
};
dependencies = [];
@@ -1328,7 +1339,7 @@ rec {
src = fetchgit {
url = "git://github.com/tpope/vim-sleuth";
rev = "a17462708aa40a7fc0afd4effa559087d8a2c908";
- sha256 = "09b01ywp0yd3lajs7gzv17qvjwbffdh6k014ws92b50cwv2vgx3j";
+ sha256 = "12s7nl3c15i9wyinhzw9biymsyw74akx96nzix9p9979nxhmi09m";
};
dependencies = [];
@@ -1339,7 +1350,7 @@ rec {
src = fetchgit {
url = "git://github.com/garbas/vim-snipmate";
rev = "66555c2a86ba2136459190c06aa2c0f25ad38bb3";
- sha256 = "01dnscgnkjy8q5ajnxsaxi1zn97v1fbhr4q5sjdqazdis9zxlqq2";
+ sha256 = "1156g0iwy4fdfvb9922jvbxyn5k6z094m0y11igamb5d4kv7v72y";
};
dependencies = ["vim-addon-mw-utils" "tlib"];
@@ -1361,7 +1372,7 @@ rec {
src = fetchgit {
url = "git://github.com/tpope/vim-surround";
rev = "2d05440ad23f97a7874ebd9b5de3a0e65d25d85c";
- sha256 = "0l5kvn2b1v2h90c02ymgsv88p89d0hzsbr6zwf0p2x2f72xjqdz5";
+ sha256 = "1b74l52a2yi9r5j6w3mcyhacdxajs3ndab1viw632nprqqsh8qb4";
};
dependencies = [];
@@ -1372,7 +1383,7 @@ rec {
src = fetchgit {
url = "git://github.com/dhruvasagar/vim-table-mode";
rev = "b613e39bd08ecebdb9b18100dae518050f496048";
- sha256 = "0vqiqph6y1dcfhy5xwh3ksafdzhrinpdppvjvw51xhy8i9ycznf6";
+ sha256 = "1bachhk21x507q8xp4a6a8lpsqs2miv97lnjjf6q9qh0crxhv3z8";
};
dependencies = [];
@@ -1404,18 +1415,18 @@ rec {
src = fetchgit {
url = "git://github.com/tomtom/tlib_vim";
rev = "34b13299b5da7ad66ea387027d458bd54127687c";
- sha256 = "18jhq6m25qv0cfm5iyxi268x1cww6xi5p4hx4c48fsq919bk6k8f";
+ sha256 = "0dwcwqxbfq7gy3iy5smx3zqp2v62p8166vj02bhrrr5zkv8rqnb3";
};
dependencies = [];
};
undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "undotree-2016-05-08";
+ name = "undotree-2016-05-16";
src = fetchgit {
url = "git://github.com/mbbill/undotree";
- rev = "0917446af029a055a34f12bf668ea0d561e97037";
- sha256 = "0v174icbhgvyddqg1psws3fyian5pwn4cki7skwlsxp6ahl49kal";
+ rev = "97ef890fea5452c1c4c68f0d864c7969d7aba578";
+ sha256 = "06mifmfqvzy8af54s0h9hjcmhxgjccikqilfz9l8hn3gdl7ixfix";
};
dependencies = [];
@@ -1426,7 +1437,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-actions";
rev = "a5d20500fb8812958540cf17862bd73e7af64936";
- sha256 = "10v3vxgrlfdd34s5kvh4si985gpygv804fygdwy27rr93xxfphyj";
+ sha256 = "1wfkwr89sn2w97i94d0dqylcg9mr6pirjadi0a4l492nfnsh99bc";
};
dependencies = ["vim-addon-mw-utils" "tlib"];
@@ -1437,7 +1448,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-async";
rev = "dadc96e188f1cdacbac62129eb29a1eacfed792c";
- sha256 = "01sxg88578drmwxpphpj7r7mb7l0wfly4509s85r99cc3bi43y97";
+ sha256 = "0b95l4ig8as82swhavsdica93bv5j55kvldfl7frkfp5zwcwi90f";
};
dependencies = ["vim-addon-signs"];
@@ -1448,7 +1459,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-background-cmd";
rev = "abf2abf339652d2bc79da81f9d131edfe2755f5a";
- sha256 = "080wfsid1iq5b9lqapg0wis5642c69sf9nh9rhs79qapl6x3w8h6";
+ sha256 = "0csy68x686l3x5ancidxb5b6prg9k7ikybqzq3klx0gs5rmksfy4";
};
dependencies = ["vim-addon-mw-utils"];
@@ -1459,7 +1470,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-commenting";
rev = "b7cf748ac1c9bf555cbd347589e3b7196030d20b";
- sha256 = "0glvpq7i8s9jdi6lvpl8hpyd7mrhq14kdkn94i51n2lzcvvdbmsa";
+ sha256 = "0alak8h33vada2ckb0v06y82qlib5mhyc2yswlv1rqh8ypzhq3mc";
};
dependencies = [];
@@ -1470,7 +1481,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-completion";
rev = "021c449a5ce1ce4ac0af5955e05b0279c1cc0e75";
- sha256 = "1sm00gs0h96kh7h64gjkyniw07495vqylh157m2f9xzd953lg6ln";
+ sha256 = "1ld059y2qwlc5bdfjm2p314s1qh31lxs54g944pw49r46s5nlslr";
};
dependencies = ["tlib"];
@@ -1492,7 +1503,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-goto-thing-at-cursor";
rev = "f052e094bdb351829bf72ae3435af9042e09a6e4";
- sha256 = "1skq43y7laq2ric7bqh9abx9mxix5k6xzcs4qnwhsqwskp4qlr9l";
+ sha256 = "1ksm2b0j80zn8sz2y227bpcx4jsv76lwgr2gpgy2drlyqhn2vlv0";
};
dependencies = ["tlib"];
@@ -1514,7 +1525,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-manager";
rev = "872f9302cf0eb8e9cb6259ea4f329d2265f9e32d";
- sha256 = "0rl6sy1gfjsfr1hg2ilhhxppifvjfqn815kh27b3ikcy82rp7sb0";
+ sha256 = "14aixpj9p8b568mdh4pl7bmpw1rsc4d7axqr09g1m0a8q6rxipc7";
};
dependencies = [];
buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa;
@@ -1536,7 +1547,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-mw-utils";
rev = "0c5612fa31ee434ba055e21c76f456244b3b5109";
- sha256 = "075r4a73vv6hcrsfznac32nicdk0x7lvxx4fwmii03q5b4dns6sf";
+ sha256 = "147s1k4n45d3x281vj35l26sv4waxjlpqdn83z3k9n51556h1d45";
};
dependencies = [];
@@ -1547,7 +1558,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-nix";
rev = "2aed79ba5d8c5e6abd102de77e55e242f61b17f1";
- sha256 = "1qipxzn79nbmjzppa0r59796r56xz5g88jm66fjpqndndhn6wchf";
+ sha256 = "0zx1q9994py6jmm0qbbx6fc1dy5la8zfskkbvqqxssxrl5dx7vvi";
};
dependencies = ["vim-addon-completion" "vim-addon-goto-thing-at-cursor" "vim-addon-errorformats" "vim-addon-actions" "vim-addon-mw-utils" "tlib"];
@@ -1558,7 +1569,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-other";
rev = "f78720c9cb5bf871cabb13c7cbf94378dbf0163b";
- sha256 = "06sdjnyp2hqs0kia2hzflyxwiwpp14mkrhhm4l3k2q2pnzj2gw23";
+ sha256 = "0cjz7mlyfkkncas4ss7rwxb0q38ls1qw1p15hac1imscscsvyjc6";
};
dependencies = ["vim-addon-actions" "vim-addon-mw-utils"];
@@ -1580,7 +1591,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-signs";
rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae";
- sha256 = "1f4gk984760cbkkwl9isqwab63ghny61h18nfh313maqwwr3mh59";
+ sha256 = "0i4gfp30hmw1vqjl6zxjrgkca3ikdkcnjmma2mncjmcr6f59kjzy";
};
dependencies = [];
@@ -1591,7 +1602,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-sql";
rev = "05b8a0c211f1ae4c515c64e91dec555cdf20d90b";
- sha256 = "1hjpx5s1vn8v7y73gis408jdy8vjivhag2ycp8lk5870jkk4lcx1";
+ sha256 = "15l2201jkfml08znvkkpy7fm3wn87n91zgd9ysrf5h73amjx9y2w";
};
dependencies = ["vim-addon-completion" "vim-addon-background-cmd" "tlib"];
@@ -1613,7 +1624,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-toggle-buffer";
rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b";
- sha256 = "0mb0vyr5rr0ywk26l9cwcplpfzsqdwv49d2nzdx1g685zvn6c8b7";
+ sha256 = "1xq38kfdm36c34ln66znw841q797w5gm8bpq1x64bsf2h6n3ml03";
};
dependencies = ["vim-addon-mw-utils" "tlib"];
@@ -1624,29 +1635,18 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-xdebug";
rev = "45f26407305b4ce6f8f5f37d2b5e6e4354104172";
- sha256 = "1vv4jha79sw8yxzl9aygr44khqi8yrmz9ysvs95wjwk7yg5g4yqa";
+ sha256 = "1i64ppdfp2qqq7vw1jf160mj4ikc04v39iazdab83xmiqjsh8ixw";
};
dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"];
};
vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-airline-2016-05-15";
+ name = "vim-airline-2016-05-22";
src = fetchgit {
url = "git://github.com/vim-airline/vim-airline";
- rev = "70c16f4c46f11395bbbc30b2f0a6822669e7df87";
- sha256 = "1ib3rs0ysz41dxk4fmzjrha005adrrlya5bnb8cv1p1ny7ipny1d";
- };
- dependencies = [];
-
- };
-
- vim-closetag = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-closetag-2016-04-21";
- src = fetchgit {
- url = "git://github.com/alvan/vim-closetag";
- rev = "26e41a5b0c3752d5300506a49120d9dff19d8323";
- sha256 = "0c8x25hb912jmhf5jpfll08937wr2yls28i9divldm9jkmxvcx2k";
+ rev = "4d39cb6f2078326dd07f2ab680a0365299a2589e";
+ sha256 = "0jwk1ly9sbj3warq92haw3alq7q639375c9bl28j3rzg7x008blz";
};
dependencies = [];
@@ -1657,7 +1657,7 @@ rec {
src = fetchgit {
url = "git://github.com/kchmck/vim-coffee-script";
rev = "32fe889b8cafd3a4921ef8e6485156453ff58c42";
- sha256 = "14464xyjiw58n785xrkyd5qrinz2gb0p4yhxh6b9r5698qjjn5np";
+ sha256 = "1x2kk9jm3948avvz3ywakmhdr3x99qfa54fk1pfphny3mrfv4l65";
};
dependencies = [];
@@ -1668,7 +1668,7 @@ rec {
src = fetchgit {
url = "git://github.com/junegunn/vim-easy-align";
rev = "0cb6b98fc155717b0a56c110551ac57d1d951ddb";
- sha256 = "089c4grk24albishgxdskb1zsvxbzlp2yq1baf0vy6cryxwm8ykq";
+ sha256 = "10j1fz7si7xqqs4p7h66jd0xzr116cv3xjyac9p20fc0yyyg1wbh";
};
dependencies = [];
@@ -1686,11 +1686,11 @@ rec {
};
vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-gitgutter-2016-05-13";
+ name = "vim-gitgutter-2016-05-23";
src = fetchgit {
url = "git://github.com/airblade/vim-gitgutter";
- rev = "cae4f72aa1290c353aa8d0898cac0781ef2ee538";
- sha256 = "0kx117v92pglm72m52p6d2pqa1gsnzy476l7ai1c23jk696pl9vq";
+ rev = "f8da1fd6dbd558ebcc743bd7f91d35d6ca8db56a";
+ sha256 = "0rbvkd8pc2wpfavbkb088rp6fmsww1m29zphcw8r8x1vwk2bz1p2";
};
dependencies = [];
@@ -1723,18 +1723,18 @@ rec {
src = fetchgit {
url = "git://github.com/terryma/vim-multiple-cursors";
rev = "25b567baf712a7e9bc8f3c9ca816bd579363109b";
- sha256 = "1jvg5i76k58sz56z615pb7s7gg7jn0dpwf7rr76v22v4zpyij70h";
+ sha256 = "0y4gmk4m43ia94dkir2i3qs5z8i00r7yk22hrdws6nqrpnf7dp13";
};
dependencies = [];
};
vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-signature-2016-04-10";
+ name = "vim-signature-2016-05-19";
src = fetchgit {
url = "git://github.com/kshenoy/vim-signature";
- rev = "31028e7a0d015b04a51e721af155fd11d1b6ac76";
- sha256 = "1f78ipkfnhmlhw88ii6rqxwfm7qpdc1c8v2716il240bk08khkff";
+ rev = "2a2915685f78c60e6c95d936e8881d9336c3b03a";
+ sha256 = "1sd4502bixs8311dj1w20jdwf1lgrbkz696ay9r0ywhxp7ri0qs4";
};
dependencies = [];
@@ -1752,11 +1752,11 @@ rec {
};
vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-snippets-2016-05-16";
+ name = "vim-snippets-2016-05-24";
src = fetchgit {
url = "git://github.com/honza/vim-snippets";
- rev = "a9b920b478e2c92bb8ce699c27835013a2cc25fb";
- sha256 = "1msi4kvs7zgyi6l9jf0w462kw3lfsxb4bg7i3vrd16zcr5n742mj";
+ rev = "477ede1985a92f3ae1a5ff806a7507823abcc203";
+ sha256 = "1ncs7bk2pqz4dy3h206s0c9f14h5kgfanipbiiis24z2zvq9mw18";
};
dependencies = [];
@@ -1767,7 +1767,7 @@ rec {
src = fetchgit {
url = "git://github.com/ryanoasis/vim-devicons";
rev = "ad5d6d7f9fdf741a1e0d45b2bebab1d0116e1158";
- sha256 = "039asq5ggbpjc3g8xnd7bgk2szqqgmdh5xa7xhr8yfag26mal1ja";
+ sha256 = "0i3frd23zwbxypj8xgv4hc44wzc2803p15852iqz3k0xr8y8rjxd";
};
dependencies = [];
@@ -1778,18 +1778,18 @@ rec {
src = fetchgit {
url = "git://github.com/dag/vim2hs";
rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664";
- sha256 = "1c75nxk1vk8hq514wx1zm9i5d3qdpd65mv4v4gr50kmvjn2waps8";
+ sha256 = "18lqrl3hqb6cmizc04bbnsh8j0g761w2q8wascbzzfw80dmxy36b";
};
dependencies = [];
};
vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vimwiki-2016-04-25";
+ name = "vimwiki-2016-05-18";
src = fetchgit {
url = "git://github.com/vimwiki/vimwiki";
- rev = "f56700932967f09ea6faa0bad60367b0d6b19a0d";
- sha256 = "1x176z40653nqp4rgla298dazwyh3rm95k4d4v4qs5hka14b2jfg";
+ rev = "4831384ab9f1c40c9e433857d958c4d9a7beb8ec";
+ sha256 = "1wjbsd37h5fxkkia90h708mmqisdj0kxzm9k97jm2zq36zngmd86";
};
dependencies = [];
@@ -1811,7 +1811,7 @@ rec {
src = fetchgit {
url = "git://github.com/gmarik/vundle";
rev = "4984767509e3d05ca051e253c8a8b37de784be45";
- sha256 = "0n2k3ip81yfx00ch45nqiwayhz8qxmwg5s34a4k5snapzcxcm2fn";
+ sha256 = "15450wz15pwv9sbvnmb60z5nshsssw4y1xy8smp332605b53kski";
};
dependencies = [];
diff --git a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/YankRing b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/YankRing
new file mode 100644
index 00000000000..1776c1b91ea
--- /dev/null
+++ b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/YankRing
@@ -0,0 +1 @@
+ sourceRoot = ".";
diff --git a/pkgs/os-specific/darwin/apple-source-releases/Libsystem/default.nix b/pkgs/os-specific/darwin/apple-source-releases/Libsystem/default.nix
index 42adab1c887..1c9b5879e6e 100644
--- a/pkgs/os-specific/darwin/apple-source-releases/Libsystem/default.nix
+++ b/pkgs/os-specific/darwin/apple-source-releases/Libsystem/default.nix
@@ -53,7 +53,7 @@ appleDerivation rec {
cp ${xnu}/Library/Frameworks/Kernel.framework/Versions/A/Headers/stdarg.h $out/include
for dep in ${Libc} ${Libm} ${Libinfo} ${dyld} ${architecture} ${libclosure} ${CarbonHeaders} \
- ${libdispatch} ${ncurses} ${CommonCrypto} ${copyfile} ${removefile} ${libresolv} \
+ ${libdispatch} ${ncurses.dev} ${CommonCrypto} ${copyfile} ${removefile} ${libresolv} \
${Libnotify} ${mDNSResponder} ${launchd} ${libutil}; do
(cd $dep/include && find . -name '*.h' | cpio -pdm $out/include)
done
diff --git a/pkgs/os-specific/darwin/binutils/default.nix b/pkgs/os-specific/darwin/binutils/default.nix
index d671c7c7230..8014881860b 100644
--- a/pkgs/os-specific/darwin/binutils/default.nix
+++ b/pkgs/os-specific/darwin/binutils/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation {
ln -sf "${cctools}/bin/$i" "$out/bin/$i"
done
- for i in ${binutils-raw}/include/*.h; do
+ for i in ${binutils-raw.dev}/include/*.h; do
ln -s "$i" "$out/include/$(basename $i)"
done
diff --git a/pkgs/os-specific/linux/ati-drivers/builder.sh b/pkgs/os-specific/linux/ati-drivers/builder.sh
index 4394e785960..2b907bde10a 100644
--- a/pkgs/os-specific/linux/ati-drivers/builder.sh
+++ b/pkgs/os-specific/linux/ati-drivers/builder.sh
@@ -9,6 +9,10 @@ unzip $src
run_file=fglrx-$build/amd-driver-installer-$build-x86.x86_64.run
sh $run_file --extract .
+for patch in $patches;do
+ patch -p1 < $patch
+done
+
case "$system" in
x86_64-linux)
arch=x86_64
@@ -238,6 +242,7 @@ if test -z "$libsOnly"; then
tar xfz ../common/usr/src/ati/fglrx_sample_source.tgz
eval "$patchPhaseSamples"
+
( # build and install fgl_glxgears
cd fgl_glxgears;
gcc -DGL_ARB_texture_multisample=1 -g \
@@ -257,11 +262,11 @@ if test -z "$libsOnly"; then
# a symlink named libfglrx_gamma.so.1 linking to libfglrx_gamma.so.1.0 in $out/lib/
cd programs/fglrx_gamma
- gcc -fPIC -I${libXxf86vm}/include \
- -I${xf86vidmodeproto}/include \
- -I$out/X11R6/include \
- -L$out/lib \
- -Wall -lm -lfglrx_gamma -lX11 -lXext -o $out/bin/fglrx_xgamma fglrx_xgamma.c
+ gcc -fPIC -I${libXxf86vm.dev}/include \
+ -I${xf86vidmodeproto}/include \
+ -I$out/X11R6/include \
+ -L$out/lib \
+ -Wall -lm -lfglrx_gamma -lX11 -lXext -o $out/bin/fglrx_xgamma fglrx_xgamma.c
)
{
diff --git a/pkgs/os-specific/linux/ati-drivers/default.nix b/pkgs/os-specific/linux/ati-drivers/default.nix
index a4f8b707c08..e5eb9b8c6c3 100644
--- a/pkgs/os-specific/linux/ati-drivers/default.nix
+++ b/pkgs/os-specific/linux/ati-drivers/default.nix
@@ -65,7 +65,14 @@ stdenv.mkDerivation rec {
curlOpts = "--referer http://support.amd.com/en-us/download/desktop?os=Linux+x86_64";
};
- patchPhaseSamples = "patch -p2 < ${./patch-samples.patch}";
+ patchPhaseSamples = "patch -p2 < ${./patches/patch-samples.patch}";
+ patches = [
+ ./patches/15.12-xstate-fp.patch
+ ./patches/15.9-kcl_str.patch
+ ./patches/15.9-mtrr.patch
+ ./patches/15.9-preempt.patch
+ ./patches/15.9-sep_printf.patch
+ ];
buildInputs =
[ xorg.libXrender xorg.libXext xorg.libX11 xorg.libXinerama xorg.libSM
@@ -101,7 +108,7 @@ stdenv.mkDerivation rec {
# appear in /run/opengl-driver/lib which get's added to LD_LIBRARY_PATH
extraDRIlibs = [ xorg.libXrandr.out xorg.libXrender.out xorg.libXext.out
- xorg.libX11.out xorg.libXinerama.out xorg.libSM.out
+ xorg.libX11.out xorg.libXinerama.out xorg.libSM.out
xorg.libICE.out ];
inherit mesa; # only required to build the examples
diff --git a/pkgs/os-specific/linux/ati-drivers/kernel-api-fixes.patch b/pkgs/os-specific/linux/ati-drivers/kernel-api-fixes.patch
deleted file mode 100644
index f763518b249..00000000000
--- a/pkgs/os-specific/linux/ati-drivers/kernel-api-fixes.patch
+++ /dev/null
@@ -1,99 +0,0 @@
-diff -Nru 15.7/common/lib/modules/fglrx/build_mod/firegl_public.c 15.7.new/common/lib/modules/fglrx/build_mod/firegl_public.c
---- 15.7/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-07-04 10:31:23.000000000 -0400
-+++ 15.7.new/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-08-03 21:21:13.893211082 -0400
-@@ -242,6 +242,14 @@
- #endif
-
- // ============================================================
-+
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,18,0)
-+#define __read_cr4 read_cr4
-+#define __write_cr4 write_cr4
-+#endif
-+
-+// ============================================================
-+
- /* globals */
-
- char* firegl = NULL;
-@@ -3495,10 +3503,12 @@
- KCL_PUB_InterruptHandlerWrap,
- #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
- ((useMSI) ? (SA_INTERRUPT) : (SA_SHIRQ)),
--#else
-+#elif LINUX_VERSION_CODE < KERNEL_VERSION(4,1,0)
- //when MSI enabled. keep irq disabled when calling the action handler,
- //exclude this IRQ from irq balancing (only on one CPU)
- ((useMSI) ? (IRQF_DISABLED) : (IRQF_SHARED)),
-+#else
-+ ((useMSI) ? 0 : IRQF_SHARED),
- #endif
- dev_name,
- context);
-@@ -4498,8 +4508,8 @@
-
- if (cpu_has_pge)
- {
-- cr4 = read_cr4();
-- write_cr4(cr4 & ~X86_CR4_PGE);
-+ cr4 = __read_cr4();
-+ __write_cr4(cr4 & ~X86_CR4_PGE);
- }
- __flush_tlb();
-
-@@ -4512,7 +4522,7 @@
- write_cr0(cr0 & 0xbfffffff);
- if (cpu_has_pge)
- {
-- write_cr4(cr4);
-+ __write_cr4(cr4);
- }
- local_irq_restore(flags);
-
-@@ -4539,8 +4549,8 @@
-
- if (cpu_has_pge)
- {
-- cr4 = read_cr4();
-- write_cr4(cr4 & ~X86_CR4_PGE);
-+ cr4 = __read_cr4();
-+ __write_cr4(cr4 & ~X86_CR4_PGE);
- }
- __flush_tlb();
-
-@@ -4552,7 +4562,7 @@
- write_cr0(cr0 & 0xbfffffff);
- if (cpu_has_pge)
- {
-- write_cr4(cr4);
-+ __write_cr4(cr4);
- }
- local_irq_restore(flags);
-
-diff -Nru 15.7/common/lib/modules/fglrx/build_mod/kcl_acpi.c 15.7.new/common/lib/modules/fglrx/build_mod/kcl_acpi.c
---- 15.7/common/lib/modules/fglrx/build_mod/kcl_acpi.c 2015-07-04 10:31:23.000000000 -0400
-+++ 15.7.new/common/lib/modules/fglrx/build_mod/kcl_acpi.c 2015-08-02 19:59:54.797911610 -0400
-@@ -861,7 +861,10 @@
- #elif LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0)
- if(pdev)
- {
-- pci_ignore_hotplug(pdev);
-+ struct pci_dev *bridge = pdev->bus->self;
-+
-+ pdev->ignore_hotplug = 1;
-+ if(bridge) bridge->ignore_hotplug = 1;
- }
- #endif
- }
-diff -Nru 15.7/common/lib/modules/fglrx/build_mod/kcl_str.c 15.7.new/common/lib/modules/fglrx/build_mod/kcl_str.c
---- 15.7/common/lib/modules/fglrx/build_mod/kcl_str.c 2015-07-04 10:31:23.000000000 -0400
-+++ 15.7.new/common/lib/modules/fglrx/build_mod/kcl_str.c 2015-08-03 00:35:25.938410435 -0400
-@@ -169,7 +169,7 @@
- const char* s2,
- KCL_TYPE_SizeSigned count)
- {
-- return strnicmp(s1, s2, count);
-+ return strncasecmp(s1, s2, count);
- }
-
- /** \brief Locate character in string
diff --git a/pkgs/os-specific/linux/ati-drivers/patches/15.12-xstate-fp.patch b/pkgs/os-specific/linux/ati-drivers/patches/15.12-xstate-fp.patch
new file mode 100644
index 00000000000..22e43fc0c7b
--- /dev/null
+++ b/pkgs/os-specific/linux/ati-drivers/patches/15.12-xstate-fp.patch
@@ -0,0 +1,26 @@
+From: Krzysztof Kolasa
+Date: Thu, 26 Nov 2015 14:28:46 +0100
+Subject: [PATCH] Patch for kernel 4.4.0-rc2
+
+constant change of name XSTATE_XP to name XFEATURE_MASK_FP
+---
+ firegl_public.c | 6 +++++-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/common/lib/modules/fglrx/build_mod/firegl_public.c b/common/lib/modules/fglrx/build_mod/firegl_public.c
+index 3626c7b..f071d42 100644
+--- a/common/lib/modules/fglrx/build_mod/firegl_public.c
++++ b/common/lib/modules/fglrx/build_mod//firegl_public.c
+@@ -6463,7 +6463,11 @@ static int KCL_fpu_save_init(struct task_struct *tsk)
+ if (!(fpu->state->xsave.xsave_hdr.xstate_bv & XSTATE_FP))
+ #else
+ copy_xregs_to_kernel(&fpu->state.xsave);
+- if (!(fpu->state.xsave.header.xfeatures & XSTATE_FP))
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,4,0)
++ if (!(fpu->state.xsave.header.xfeatures & XFEATURE_MASK_FP))
++#else
++ if (!(fpu->state.xsave.header.xfeatures & XSTATE_FP))
++#endif
+ #endif
+ return 1;
+ } else if (static_cpu_has(X86_FEATURE_FXSR)) {
diff --git a/pkgs/os-specific/linux/ati-drivers/patches/15.9-kcl_str.patch b/pkgs/os-specific/linux/ati-drivers/patches/15.9-kcl_str.patch
new file mode 100644
index 00000000000..20c3bc8a169
--- /dev/null
+++ b/pkgs/os-specific/linux/ati-drivers/patches/15.9-kcl_str.patch
@@ -0,0 +1,14 @@
+--- a/common/lib/modules/fglrx/build_mod/kcl_str.c 2015-09-13 13:47:30.000000000 -0400
++++ b/common/lib/modules/fglrx/build_mod/kcl_str.c 2015-09-13 13:49:42.000000000 -0400
+@@ -169,7 +169,11 @@ int ATI_API_CALL KCL_STR_Strnicmp(const
+ const char* s2,
+ KCL_TYPE_SizeSigned count)
+ {
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4,0,0)
+ return strnicmp(s1, s2, count);
++#else
++ return strncasecmp(s1, s2, count);
++#endif
+ }
+
+ /** \brief Locate character in string
diff --git a/pkgs/os-specific/linux/ati-drivers/patches/15.9-mtrr.patch b/pkgs/os-specific/linux/ati-drivers/patches/15.9-mtrr.patch
new file mode 100644
index 00000000000..bdf70b4ccdc
--- /dev/null
+++ b/pkgs/os-specific/linux/ati-drivers/patches/15.9-mtrr.patch
@@ -0,0 +1,27 @@
+--- a/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-09-19 23:43:22.000000000 -0400
++++ b/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-09-19 23:52:07.000000000 -0400
+@@ -3442,7 +3442,11 @@ int ATI_API_CALL KCL_MEM_MTRR_Support(vo
+ int ATI_API_CALL KCL_MEM_MTRR_AddRegionWc(unsigned long base, unsigned long size)
+ {
+ #ifdef CONFIG_MTRR
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)
++ return arch_phys_wc_add(base, size);
++#else
+ return mtrr_add(base, size, MTRR_TYPE_WRCOMB, 1);
++#endif
+ #else /* !CONFIG_MTRR */
+ return -EPERM;
+ #endif /* !CONFIG_MTRR */
+@@ -3451,7 +3455,12 @@ int ATI_API_CALL KCL_MEM_MTRR_AddRegionW
+ int ATI_API_CALL KCL_MEM_MTRR_DeleteRegion(int reg, unsigned long base, unsigned long size)
+ {
+ #ifdef CONFIG_MTRR
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)
++ arch_phys_wc_del(reg);
++ return reg;
++#else
+ return mtrr_del(reg, base, size);
++#endif
+ #else /* !CONFIG_MTRR */
+ return -EPERM;
+ #endif /* !CONFIG_MTRR */
diff --git a/pkgs/os-specific/linux/ati-drivers/patches/15.9-preempt.patch b/pkgs/os-specific/linux/ati-drivers/patches/15.9-preempt.patch
new file mode 100644
index 00000000000..c6598835133
--- /dev/null
+++ b/pkgs/os-specific/linux/ati-drivers/patches/15.9-preempt.patch
@@ -0,0 +1,103 @@
+--- a/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-08-30 17:36:02.000000000 -0400
++++ b/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-08-30 17:39:36.000000000 -0400
+@@ -21,6 +21,8 @@
+ !!! since it requires changes to linux/init/main.c.
+ #endif /* !MODULE */
+
++#include
++
+ // ============================================================
+ #include
+
+@@ -4997,7 +4999,9 @@ static unsigned int kas_spin_unlock(kas_
+ unsigned long ATI_API_CALL KAS_GetExecutionLevel(void)
+ {
+ unsigned long ret;
++ preempt_disable();
+ ret = kas_GetExecutionLevel();
++ preempt_enable();
+ return ret;
+ }
+
+@@ -5022,8 +5026,10 @@ unsigned int ATI_API_CALL KAS_Ih_Execute
+ KCL_DEBUG5(FN_FIREGL_KAS,"0x%08X, 0x%08X\n", ih_routine, ih_context);
+
+ //Prevent simultaneous entry on some SMP systems.
++ preempt_disable();
+ if (test_and_set_bit(0, (void *)&(kasContext.in_interrupts[smp_processor_id()])))
+ {
++ preempt_enable();
+ KCL_DEBUG1(FN_FIREGL_KAS, "The processor is handling the interrupt\n");
+ return IRQ_NONE;
+ }
+@@ -5036,9 +5042,9 @@ unsigned int ATI_API_CALL KAS_Ih_Execute
+
+ kasSetExecutionLevel(orig_level);
+ spin_unlock(&kasContext.lock_ih);
+-
+ clear_bit(0, (void *)&(kasContext.in_interrupts[smp_processor_id()]));
+ KCL_DEBUG5(FN_FIREGL_KAS,"%d\n", ret);
++ preempt_enable();
+
+ return ret;
+ }
+@@ -5256,6 +5262,7 @@ unsigned int ATI_API_CALL KAS_Spinlock_A
+
+ KCL_DEBUG5(FN_FIREGL_KAS,"0x%08X\n", hSpinLock);
+
++ preempt_disable();
+ spin_lock_info.routine_type = spinlock_obj->routine_type;
+ spin_lock_info.plock = &(spinlock_obj->lock);
+
+@@ -5263,6 +5270,7 @@ unsigned int ATI_API_CALL KAS_Spinlock_A
+
+ spinlock_obj->acquire_type = spin_lock_info.acquire_type;
+ spinlock_obj->flags = spin_lock_info.flags;
++ preempt_enable();
+
+ KCL_DEBUG5(FN_FIREGL_KAS,"%d\n", ret);
+ return ret;
+@@ -6034,6 +6042,8 @@ unsigned int ATI_API_CALL KAS_Interlocke
+
+ KCL_DEBUG5(FN_FIREGL_KAS,"0x%08X, 0x%08X, 0x%08X\n", hListHead, hListEntry, phPrevEntry);
+
++ preempt_disable();
++
+ /* Protect the operation with spinlock */
+ spin_lock_info.routine_type = listhead_obj->routine_type;
+ spin_lock_info.plock = &(listhead_obj->lock);
+@@ -6041,6 +6051,7 @@ unsigned int ATI_API_CALL KAS_Interlocke
+ if (!kas_spin_lock(&spin_lock_info))
+ {
+ KCL_DEBUG_ERROR("Unable to grab list spinlock\n");
++ preempt_enable();
+ return 0; /* No spinlock - no operation */
+ }
+
+@@ -6065,6 +6076,7 @@ unsigned int ATI_API_CALL KAS_Interlocke
+ spin_unlock_info.flags = spin_lock_info.flags;
+
+ ret = kas_spin_unlock(&spin_unlock_info);
++ preempt_enable();
+ KCL_DEBUG5(FN_FIREGL_KAS,"%d", ret);
+ return ret;
+ }
+@@ -6153,8 +6165,10 @@ unsigned int ATI_API_CALL KAS_Interlocke
+ spin_lock_info.routine_type = listhead_obj->routine_type;
+ spin_lock_info.plock = &(listhead_obj->lock);
+
++ preempt_disable();
+ if (!kas_spin_lock(&spin_lock_info))
+ {
++ preempt_enable();
+ KCL_DEBUG_ERROR("Unable to grab list spinlock");
+ return 0; /* No spinlock - no operation */
+ }
+@@ -6178,6 +6192,7 @@ unsigned int ATI_API_CALL KAS_Interlocke
+ spin_unlock_info.flags = spin_lock_info.flags;
+
+ ret = kas_spin_unlock(&spin_unlock_info);
++ preempt_enable();
+ KCL_DEBUG5(FN_FIREGL_KAS,"%d", ret);
+ return ret;
+ }
diff --git a/pkgs/os-specific/linux/ati-drivers/patches/15.9-sep_printf.patch b/pkgs/os-specific/linux/ati-drivers/patches/15.9-sep_printf.patch
new file mode 100644
index 00000000000..3e4e8d6499a
--- /dev/null
+++ b/pkgs/os-specific/linux/ati-drivers/patches/15.9-sep_printf.patch
@@ -0,0 +1,11 @@
+--- a/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-09-14 15:14:36.000000000 -0400
++++ b/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-09-14 16:18:58.000000000 -0400
+@@ -649,6 +649,8 @@ static int firegl_major_proc_read(struct
+ *eof = 1;
+
+ len = snprintf(buf, request, "%d\n", major);
++#elif LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)
++ seq_printf(m, "%d\n", major);
+ #else
+ len = seq_printf(m, "%d\n", major);
+ #endif
diff --git a/pkgs/os-specific/linux/ati-drivers/patch-samples.patch b/pkgs/os-specific/linux/ati-drivers/patches/patch-samples.patch
similarity index 100%
rename from pkgs/os-specific/linux/ati-drivers/patch-samples.patch
rename to pkgs/os-specific/linux/ati-drivers/patches/patch-samples.patch
diff --git a/pkgs/os-specific/linux/bcc/default.nix b/pkgs/os-specific/linux/bcc/default.nix
new file mode 100644
index 00000000000..838c65dd196
--- /dev/null
+++ b/pkgs/os-specific/linux/bcc/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchFromGitHub, makeWrapper, cmake, llvmPackages, kernel,
+ flex, bison, elfutils, python, pythonPackages, luajit, netperf, iperf }:
+
+stdenv.mkDerivation rec {
+ version = "git-2016-05-18";
+ name = "bcc-${version}";
+
+ src = fetchFromGitHub {
+ owner = "iovisor";
+ repo = "bcc";
+ rev = "c7f317deb577d59007411e978ac21a2ea376358f";
+ sha256 = "0jv4smy615kp7623pd61s46m52jjp6m47w0fjgr7s22qamra3g98";
+ };
+
+ buildInputs = [ makeWrapper cmake llvmPackages.llvm llvmPackages.clang-unwrapped kernel
+ flex bison elfutils python pythonPackages.netaddr luajit netperf iperf
+ ];
+
+ cmakeFlags="-DBCC_KERNEL_MODULES_DIR=${kernel.dev}/lib/modules -DBCC_KERNEL_HAS_SOURCE_DIR=1";
+
+ postInstall = ''
+ mkdir -p $out/bin
+ for f in $out/share/bcc/tools\/*; do
+ ln -s $f $out/bin/$(basename $f)
+ wrapProgram $f \
+ --prefix LD_LIBRARY_PATH : $out/lib \
+ --prefix PYTHONPATH : $out/lib/python2.7/site-packages \
+ --prefix PYTHONPATH : :${pythonPackages.netaddr}/lib/${python.libPrefix}/site-packages
+ done
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Dynamic Tracing Tools for Linux";
+ homepage = "https://iovisor.github.io/bcc/";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ ragge ];
+ };
+}
diff --git a/pkgs/os-specific/linux/bluez/bluez5.nix b/pkgs/os-specific/linux/bluez/bluez5.nix
index a7e36d21dd4..f29acaa1354 100644
--- a/pkgs/os-specific/linux/bluez/bluez5.nix
+++ b/pkgs/os-specific/linux/bluez/bluez5.nix
@@ -5,11 +5,11 @@
assert stdenv.isLinux;
stdenv.mkDerivation rec {
- name = "bluez-5.37";
+ name = "bluez-5.40";
src = fetchurl {
url = "mirror://kernel/linux/bluetooth/${name}.tar.xz";
- sha256 = "c14ba9ddcb0055522073477b8fd8bf1ddf5d219e75fdfd4699b7e0ce5350d6b0";
+ sha256 = "09ywk3lvgis0nbi0d5z8d4qp5r33lzwnd6bdakacmbsm420qpnns";
};
pythonPath = with pythonPackages;
diff --git a/pkgs/os-specific/linux/btfs/default.nix b/pkgs/os-specific/linux/btfs/default.nix
index 0470110fc4b..a0197c58095 100644
--- a/pkgs/os-specific/linux/btfs/default.nix
+++ b/pkgs/os-specific/linux/btfs/default.nix
@@ -1,24 +1,23 @@
-{ stdenv, fetchFromGitHub, pkgconfig, autoconf, automake,
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig,
python, boost, fuse, libtorrentRasterbar, curl }:
stdenv.mkDerivation rec {
name = "btfs-${version}";
- version = "2.8";
+ version = "2.9";
src = fetchFromGitHub {
owner = "johang";
repo = "btfs";
- rev = "0567010e553b290eaa50b1afaa717dd7656c82de";
- sha256 = "1x3x1v7fhcfcpffprf63sb720nxci2ap2cq92jy1xd68kmshdmwd";
+ rev = "3ee6671eca2c0e326ac38d07cab4989ebad3495c";
+ sha256 = "0f7yc7hkfwdj9hixsyswf17yrpcpwxxb0svj5lfqcir8a45kf100";
};
-
+
buildInputs = [
- pkgconfig autoconf automake boost
+ boost autoreconfHook pkgconfig
fuse libtorrentRasterbar curl
];
- preConfigure = ''
- autoreconf -i
+ preInstall = ''
substituteInPlace scripts/btplay \
--replace "/usr/bin/env python" "${python}/bin/python"
'';
diff --git a/pkgs/os-specific/linux/cifs-utils/default.nix b/pkgs/os-specific/linux/cifs-utils/default.nix
index 46a927209a2..6dcf8e11a3e 100644
--- a/pkgs/os-specific/linux/cifs-utils/default.nix
+++ b/pkgs/os-specific/linux/cifs-utils/default.nix
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, kerberos, keyutils, pam }:
stdenv.mkDerivation rec {
- name = "cifs-utils-6.4";
+ name = "cifs-utils-${version}";
+ version = "6.5";
src = fetchurl {
url = "mirror://samba/pub/linux-cifs/cifs-utils/${name}.tar.bz2";
- sha256 = "1qz6d2xg4z1if0hy7qwyzgcr59l0alkhci6gxgjdldglda967z1q";
+ sha256 = "1xs9rwqfpx8qj5mcmagw6y1hzwc71zhzb5r8hv06sz16p1w6axz2";
};
buildInputs = [ kerberos keyutils pam ];
@@ -17,5 +18,6 @@ stdenv.mkDerivation rec {
description = "Tools for managing Linux CIFS client filesystems";
platforms = platforms.linux;
license = licenses.lgpl3;
+ maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/os-specific/linux/criu/default.nix b/pkgs/os-specific/linux/criu/default.nix
index 16116019567..fb25ef27378 100644
--- a/pkgs/os-specific/linux/criu/default.nix
+++ b/pkgs/os-specific/linux/criu/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
substituteInPlace ./scripts/gen-offsets.sh --replace hexdump ${utillinux}/bin/hexdump
substituteInPlace ./Documentation/Makefile --replace "2>/dev/null" ""
substituteInPlace ./Documentation/Makefile --replace "--skip-validation" "--skip-validation -x ${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl"
- substituteInPlace ./criu/Makefile --replace "-I/usr/include/libnl3" "-I${libnl}/include/libnl3"
+ substituteInPlace ./criu/Makefile --replace "-I/usr/include/libnl3" "-I${libnl.dev}/include/libnl3"
substituteInPlace ./Makefile --replace "tar-name := $(shell git tag -l v$(CRIU_VERSION))" "tar-name = 2.0" # --replace "-Werror" ""
ln -sf ${protobuf}/include/google/protobuf/descriptor.proto ./images/google/protobuf/descriptor.proto
'';
diff --git a/pkgs/os-specific/linux/dpdk/default.nix b/pkgs/os-specific/linux/dpdk/default.nix
index 2d7c8a5f14e..479188b365f 100644
--- a/pkgs/os-specific/linux/dpdk/default.nix
+++ b/pkgs/os-specific/linux/dpdk/default.nix
@@ -14,6 +14,9 @@ stdenv.mkDerivation rec {
RTE_KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
RTE_TARGET = "x86_64-native-linuxapp-gcc";
+ # we need ssse3 instructions to build
+ NIX_CFLAGS_COMPILE = [ "-march=core2" ];
+
enableParallelBuilding = true;
outputs = [ "out" "examples" ];
diff --git a/pkgs/os-specific/linux/facetimehd/default.nix b/pkgs/os-specific/linux/facetimehd/default.nix
index b25a65b2ab4..de726d5b42c 100644
--- a/pkgs/os-specific/linux/facetimehd/default.nix
+++ b/pkgs/os-specific/linux/facetimehd/default.nix
@@ -5,13 +5,23 @@ assert stdenv.lib.versionAtLeast kernel.version "3.19";
stdenv.mkDerivation rec {
name = "facetimehd-${version}-${kernel.version}";
- version = "git-20160127";
+ version = "git-20160503";
src = fetchFromGitHub {
owner = "patjak";
repo = "bcwc_pcie";
- rev = "186e9f9101ed9bbd7cc8d470f840d4a74c585ca7";
- sha256 = "1frsf6z6v94cz9fww9rbnk926jzl36fp3w2d1aw6djhzwm80a5gs";
+ # Note: When updating this revision:
+ # 1. Also update pkgs/os-specific/linux/firmware/facetimehd-firmware/
+ # 2. Test the module and firmware change via:
+ # a. Give some applications a try (Skype, Hangouts, Cheese, etc.)
+ # b. Run: journalctl -f
+ # c. Then close the lid
+ # d. Then open the lid (and maybe press a key to wake it up)
+ # e. see if the module loads back (apps using the camera won't
+ # recover and will have to be restarted) and the camera
+ # still works.
+ rev = "5a7083bd98b38ef3bd223f7ee531d58f4fb0fe7c";
+ sha256 = "0d455kajvn5xav9iilqy7s1qvsy4yb8vzjjxx7bvcgp7aj9ljvdp";
};
preConfigure = ''
@@ -28,7 +38,7 @@ stdenv.mkDerivation rec {
homepage = https://github.com/patjak/bcwc_pcie;
description = "Linux driver for the Facetime HD (Broadcom 1570) PCIe webcam";
license = licenses.gpl2;
- maintainers = [ maintainers.womfoo ];
+ maintainers = with maintainers; [ womfoo grahamc ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/os-specific/linux/firmware/facetimehd-firmware/default.nix b/pkgs/os-specific/linux/firmware/facetimehd-firmware/default.nix
index 05a293083b7..69abaf26197 100644
--- a/pkgs/os-specific/linux/firmware/facetimehd-firmware/default.nix
+++ b/pkgs/os-specific/linux/firmware/facetimehd-firmware/default.nix
@@ -2,14 +2,28 @@
let
- version = "1.43";
+ version = "1.43_4";
- dmgRange = "420107885-421933300"; # the whole download is 1.3GB, this cuts it down to 2MB
+ # Updated according to https://github.com/patjak/bcwc_pcie/pull/81/files
+ # and https://github.com/patjak/bcwc_pcie/blob/5a7083bd98b38ef3bd223f7ee531d58f4fb0fe7c/firmware/Makefile#L3-L9
+ # and https://github.com/patjak/bcwc_pcie/blob/5a7083bd98b38ef3bd223f7ee531d58f4fb0fe7c/firmware/extract-firmware.sh
+
+ # From the Makefile:
+ dmgUrl = "https://support.apple.com/downloads/DL1877/en_US/osxupd10.11.5.dmg";
+ dmgRange = "205261917-208085450"; # the whole download is 1.3GB, this cuts it down to 2MB
+ # Notes:
+ # 1. Be sure to update the sha256 below in the fetch_url
+ # 2. Be sure to update the homepage in the meta
+
+ # Also from the Makefile (OS_DRV, OS_DRV_DIR), but seems to not change:
firmwareIn = "./System/Library/Extensions/AppleCameraInterface.kext/Contents/MacOS/AppleCameraInterface";
firmwareOut = "firmware.bin";
- firmwareOffset = "81920";
- firmwareSize = "603715";
+
+ # The following are from the extract-firmware.sh
+ firmwareOffset = "81920"; # Variable: firmw_offsets
+ firmwareSize = "603715"; # Variable: firmw_sizes
+
# separated this here as the script will fail without the 'exit 0'
unpack = pkgs.writeScriptBin "unpack" ''
@@ -22,10 +36,9 @@ in
stdenv.mkDerivation {
name = "facetimehd-firmware-${version}";
-
src = fetchurl {
- url = "https://support.apple.com/downloads/DL1849/en_US/osxupd10.11.2.dmg";
- sha256 = "1jw6sy9vj27amfak83cs2c7q856y4mk1wix3rl4q10yvd9bl4k9x";
+ url = dmgUrl;
+ sha256 = "0xqkl4yds0n9fdjvnk0v5mj382q02crry6wm2q7j3ncdqwsv02sv";
curlOpts = "-r ${dmgRange}";
};
@@ -42,9 +55,9 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "facetimehd firmware";
- homepage = https://support.apple.com/downloads/DL1849;
+ homepage = https://support.apple.com/downloads/DL1877;
license = licenses.unfree;
- maintainers = [ maintainers.womfoo ];
+ maintainers = with maintainers; [ womfoo grahamc ];
platforms = platforms.linux;
};
diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix
index bd7c7f636f8..e89a53d21bf 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.10";
+ version = "4.4.11";
extraMeta.branch = "4.4";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1kpjvvd9q9wwr3314q5ymvxii4dv2d27295bzly225wlc552xhja";
+ sha256 = "1c0lqk2q4hf8jx6myhcqgh2509d36wx87l5k5cl3xfsnrzrpclrs";
};
kernelPatches = args.kernelPatches;
diff --git a/pkgs/os-specific/linux/kernel/linux-4.5.nix b/pkgs/os-specific/linux/kernel/linux-4.5.nix
index 09bd490ccfe..84d48865bcb 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.4";
+ version = "4.5.5";
extraMeta.branch = "4.5";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1s0mhhxx2sw93a9cin5mvjl82ah93a4sa2lfkvs6ay73mw3ifp2p";
+ sha256 = "0l7wnilqqhg3im2v04g6k2x621yckdb9bpfh8s8jq9l2fixjln99";
};
kernelPatches = args.kernelPatches;
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 09bd490ccfe..84d48865bcb 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.4";
+ version = "4.5.5";
extraMeta.branch = "4.5";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1s0mhhxx2sw93a9cin5mvjl82ah93a4sa2lfkvs6ay73mw3ifp2p";
+ sha256 = "0l7wnilqqhg3im2v04g6k2x621yckdb9bpfh8s8jq9l2fixjln99";
};
kernelPatches = args.kernelPatches;
diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix
index 8e198e7a3ed..820e9ed6e26 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.4";
- revision = "201605131918";
- sha256 = "0f5s8lj6zc4jp2cpxm7r891px3dmb6m3ximfigwq809yydg5aimv";
+ kversion = "4.5.5";
+ revision = "201605291201";
+ sha256 = "0r66l5zmvlb7phlvi1pma7vzj78krl23k8lcpdqlx27szr361sda";
};
grsecurity_latest = grsecurity_4_5;
diff --git a/pkgs/os-specific/linux/kmscon/default.nix b/pkgs/os-specific/linux/kmscon/default.nix
index ed2cb76e820..f0419805913 100644
--- a/pkgs/os-specific/linux/kmscon/default.nix
+++ b/pkgs/os-specific/linux/kmscon/default.nix
@@ -33,6 +33,11 @@ stdenv.mkDerivation rec {
libxslt
];
+ # FIXME: Remove as soon as kmscon > 8 comes along.
+ postPatch = ''
+ sed -i -e 's/libsystemd-daemon libsystemd-login/libsystemd/g' configure
+ '';
+
configureFlags = [
"--enable-multi-seat"
"--disable-debug"
diff --git a/pkgs/os-specific/linux/lxc/default.nix b/pkgs/os-specific/linux/lxc/default.nix
index 275f325b84a..82ea72af160 100644
--- a/pkgs/os-specific/linux/lxc/default.nix
+++ b/pkgs/os-specific/linux/lxc/default.nix
@@ -12,11 +12,11 @@ in
with stdenv.lib;
stdenv.mkDerivation rec {
name = "lxc-${version}";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
url = "https://linuxcontainers.org/downloads/lxc/lxc-${version}.tar.gz";
- sha256 = "1r0hgk91n3frrmla1681l74ag5sngbbkdagvjfqzxwcf9l8pwwsv";
+ sha256 = "0l4fs6ckvip5akfa0vbjfk34ddvcv0c84mmpj9yrcfl67qwn31z9";
};
nativeBuildInputs = [
diff --git a/pkgs/os-specific/linux/openvswitch/default.nix b/pkgs/os-specific/linux/openvswitch/default.nix
index 0e5dbeebf92..b1e24884557 100644
--- a/pkgs/os-specific/linux/openvswitch/default.nix
+++ b/pkgs/os-specific/linux/openvswitch/default.nix
@@ -1,22 +1,24 @@
-{ stdenv, fetchurl, makeWrapper
-, openssl, python27, iproute, perl, kernel ? null }:
+{ stdenv, fetchurl, makeWrapper, pkgconfig, utillinux, which
+, procps, libcap_ng, openssl, python27, iproute , perl
+, kernel ? null }:
with stdenv.lib;
let
_kernel = kernel;
in stdenv.mkDerivation rec {
- version = "2.3.1";
+ version = "2.5.0";
name = "openvswitch-${version}";
src = fetchurl {
url = "http://openvswitch.org/releases/${name}.tar.gz";
- sha256 = "1lmwyhm5wmdv1l4v1v5xd36d5ra21jz9ix57nh1lgm8iqc0lj5r1";
+ sha256 = "08bgsqjjn2q5hvxsjqs7n3jir7k7291wlj3blsqhacjhmpxm9nil";
};
kernel = optional (_kernel != null) _kernel.dev;
- buildInputs = [ makeWrapper openssl python27 perl ];
+ buildInputs = [ makeWrapper pkgconfig utillinux openssl libcap_ng python27
+ perl procps which ];
configureFlags = [
"--localstatedir=/var"
@@ -31,6 +33,15 @@ in stdenv.mkDerivation rec {
"PKIDIR=$(TMPDIR)/dummy"
];
+ postBuild = ''
+ # fix tests
+ substituteInPlace xenserver/opt_xensource_libexec_interface-reconfigure --replace '/usr/bin/env python' '${python27.interpreter}'
+ substituteInPlace vtep/ovs-vtep --replace '/usr/bin/env python' '${python27.interpreter}'
+ '';
+
+ enableParallelBuilding = true;
+ doCheck = false; # bash-completion test fails with "compgen: command not found"
+
postInstall = ''
cp debian/ovs-monitor-ipsec $out/share/openvswitch/scripts
makeWrapper \
diff --git a/pkgs/os-specific/linux/paxtest/default.nix b/pkgs/os-specific/linux/paxtest/default.nix
index 7c8e5eb70a1..0c2fd9b6f86 100644
--- a/pkgs/os-specific/linux/paxtest/default.nix
+++ b/pkgs/os-specific/linux/paxtest/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, paxctl }:
stdenv.mkDerivation rec {
name = "paxtest-${version}";
@@ -9,20 +9,16 @@ stdenv.mkDerivation rec {
sha256 = "0j40h3x42k5mr5gc5np4wvr9cdf9szk2f46swf42zny8rlgxiskx";
};
- buildPhase = ''
- make $makeFlags RUNDIR=$out/bin/ linux
- '';
+ enableParallelBuilding = true;
- installPhase = ''
- mkdir -p $out/bin
- find . -executable -exec cp {} $out/bin \;
- '';
+ makefile = "Makefile.psm";
+ makeFlags = [ "PAXBIN=${paxctl}/bin/paxctl" "BINDIR=$(out)/bin" "RUNDIR=$(out)/lib/paxtest" ];
+ installFlags = ''DESTDIR=""'';
meta = with stdenv.lib; {
description = "Test various memory protection measures";
license = licenses.gpl2;
platforms = platforms.linux;
- maintainer = [ maintainers.copumpkin ];
+ maintainer = with maintainers; [ copumpkin joachifm ];
};
}
-
diff --git a/pkgs/os-specific/linux/spl/default.nix b/pkgs/os-specific/linux/spl/default.nix
index de497eb4fd1..61fe17c3df7 100644
--- a/pkgs/os-specific/linux/spl/default.nix
+++ b/pkgs/os-specific/linux/spl/default.nix
@@ -17,13 +17,13 @@ assert buildKernel -> kernel != null;
stdenv.mkDerivation rec {
name = "spl-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}";
- version = "0.6.5.6";
+ version = "0.6.5.7";
src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "spl";
rev = "spl-${version}";
- sha256 = "08lbfwsd368sk7dgydabzkyyn2l2n82ifcqakra3xknwgg1ka9bn";
+ sha256 = "0i9ak4wqn444i6362xq5xl0msvcck8qqypp0fynrxq8mddzypwps";
};
patches = [ ./const.patch ./install_prefix.patch ];
diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix
index 15ec3202e6b..f5dc3145b68 100644
--- a/pkgs/os-specific/linux/systemd/default.nix
+++ b/pkgs/os-specific/linux/systemd/default.nix
@@ -10,14 +10,14 @@
assert stdenv.isLinux;
stdenv.mkDerivation rec {
- version = "229";
+ version = "230";
name = "systemd-${version}";
src = fetchFromGitHub {
owner = "NixOS";
repo = "systemd";
- rev = "4936f6e6c05162516a685ebd227b55816cf2b670";
- sha256 = "1q0pyrljmq73qcan9rfqsiw66l1g159m5in5qgb8zwlwhl928670";
+ rev = "4ccee551f2ba8383c8b9bd06590a3cd1dfdf690f";
+ sha256 = "1i4my5z7f8g5bykv1vxyw1az66s087lfqrck79kdm4hgvb4lsk6y";
};
patches = [ ./hwdb-location.diff ];
diff --git a/pkgs/os-specific/linux/tp_smapi/default.nix b/pkgs/os-specific/linux/tp_smapi/default.nix
index dceb777ad72..f0f25f14e49 100644
--- a/pkgs/os-specific/linux/tp_smapi/default.nix
+++ b/pkgs/os-specific/linux/tp_smapi/default.nix
@@ -1,11 +1,12 @@
{stdenv, fetchurl, kernel}:
-stdenv.mkDerivation {
- name = "tp_smapi-0.41-${kernel.version}";
+stdenv.mkDerivation rec {
+ version = "0.42";
+ name = "tp_smapi-${version}-${kernel.version}";
src = fetchurl {
- url = "https://github.com/downloads/evgeni/tp_smapi/tp_smapi-0.41.tar.gz";
- sha256 = "6aef02b92d10360ac9be0db29ae390636be55017990063a092a285c70b54e666";
+ url = "https://github.com/evgeni/tp_smapi/releases/download/tp-smapi%2F0.42/tp_smapi-${version}.tgz";
+ sha256 = "09rdg7fm423x6sbbw3lvnvmk4nyc33az8ar93xgq0n9qii49z3bv";
};
hardeningDisable = [ "pic" ];
diff --git a/pkgs/os-specific/linux/wpa_supplicant/default.nix b/pkgs/os-specific/linux/wpa_supplicant/default.nix
index 0edd2d6e0f4..a3e9e930f5e 100644
--- a/pkgs/os-specific/linux/wpa_supplicant/default.nix
+++ b/pkgs/os-specific/linux/wpa_supplicant/default.nix
@@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
cat -n .config
substituteInPlace Makefile --replace /usr/local $out
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE \
- -I$(echo "${libnl}"/include/libnl*/) \
+ -I$(echo "${libnl.dev}"/include/libnl*/) \
-I${pcsclite}/include/PCSC/"
'';
diff --git a/pkgs/os-specific/linux/xf86-input-multitouch/default.nix b/pkgs/os-specific/linux/xf86-input-multitouch/default.nix
index 7abf6d7c828..8b10136309c 100644
--- a/pkgs/os-specific/linux/xf86-input-multitouch/default.nix
+++ b/pkgs/os-specific/linux/xf86-input-multitouch/default.nix
@@ -10,6 +10,8 @@
, libpciaccess
}:
+assert stdenv.isLinux;
+
stdenv.mkDerivation {
name = "xf86-input-multitouch-20110312";
@@ -31,7 +33,7 @@ stdenv.mkDerivation {
buildInputs = [ mtdev xproto xextproto inputproto libpciaccess randrproto ];
buildPhase = ''
- make INCLUDE="$NIX_CFLAGS_COMPILE -I${xorgserver}/include/xorg -I${pixman}/include/pixman-1 -Iinclude"
+ make INCLUDE="$NIX_CFLAGS_COMPILE -I${xorgserver.dev}/include/xorg -I${pixman}/include/pixman-1 -Iinclude"
'';
installPhase = ''
diff --git a/pkgs/os-specific/linux/zfs/default.nix b/pkgs/os-specific/linux/zfs/default.nix
index 46d6fa49699..4b5d7e35dae 100644
--- a/pkgs/os-specific/linux/zfs/default.nix
+++ b/pkgs/os-specific/linux/zfs/default.nix
@@ -20,13 +20,13 @@ assert buildKernel -> kernel != null && spl != null;
stdenv.mkDerivation rec {
name = "zfs-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}";
- version = "0.6.5.6";
+ version = "0.6.5.7";
src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "zfs";
rev = "zfs-${version}";
- sha256 = "0lsb93y5zbwc8fafxzm9vyfpr6fmvl8h86ny4llbd2xy2hnfwk2i";
+ sha256 = "17mshxyp8k7i9a7ys0rznhkz83f6650pby9ka48d6gzgcwv9nnsm";
};
patches = [ ./nix-build.patch ];
diff --git a/pkgs/servers/apache-kafka/default.nix b/pkgs/servers/apache-kafka/default.nix
index 06f8c513063..be9410d3048 100755
--- a/pkgs/servers/apache-kafka/default.nix
+++ b/pkgs/servers/apache-kafka/default.nix
@@ -1,18 +1,28 @@
-{ stdenv, fetchurl, jre, makeWrapper, bash }:
+{ stdenv, fetchurl, jre, makeWrapper, bash,
+ majorVersion ? "0.9" }:
let
- kafkaVersion = "0.8.2.1";
- scalaVersion = "2.10";
-
+ versionMap = {
+ "0.8" = { kafkaVersion = "0.8.2.1";
+ scalaVersion = "2.10";
+ sha256 = "1klri23fjxbzv7rmi05vcqqfpy7dzi1spn2084y1dxsi1ypfkvc9";
+ };
+ "0.9" = { kafkaVersion = "0.9.0.1";
+ scalaVersion = "2.11";
+ sha256 = "0ykcjv5dz9i5bws9my2d60pww1g9v2p2nqr67h0i2xrjm7az8a6v";
+ };
+ };
in
+with versionMap.${majorVersion};
+
stdenv.mkDerivation rec {
version = "${scalaVersion}-${kafkaVersion}";
name = "apache-kafka-${version}";
src = fetchurl {
url = "mirror://apache/kafka/${kafkaVersion}/kafka_${version}.tgz";
- sha256 = "1klri23fjxbzv7rmi05vcqqfpy7dzi1spn2084y1dxsi1ypfkvc9";
+ inherit sha256;
};
buildInputs = [ jre makeWrapper bash ];
diff --git a/pkgs/servers/computing/slurm/default.nix b/pkgs/servers/computing/slurm/default.nix
index 6df27eaf328..5d65e707fd5 100644
--- a/pkgs/servers/computing/slurm/default.nix
+++ b/pkgs/servers/computing/slurm/default.nix
@@ -1,5 +1,6 @@
-{ stdenv, fetchurl, pkgconfig, curl, python, munge, perl, pam, openssl,
- ncurses, mysql, gtk }:
+{ stdenv, fetchurl, pkgconfig, curl, python, munge, perl, pam, openssl
+, ncurses, mysql, gtk, lua, hwloc, numactl
+}:
stdenv.mkDerivation rec {
name = "slurm-llnl-${version}";
@@ -10,11 +11,17 @@ stdenv.mkDerivation rec {
sha256 = "05si1cn7zivggan25brsqfdw0ilvrlnhj96pwv16dh6vfkggzjr1";
};
- buildInputs = [ pkgconfig curl python munge perl pam openssl mysql.lib ncurses gtk ];
+ outputs = [ "dev" "out" ];
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [
+ curl python munge perl pam openssl mysql.lib ncurses gtk lua hwloc numactl
+ ];
configureFlags =
[ "--with-munge=${munge}"
- "--with-ssl=${openssl}"
+ "--with-ssl=${openssl.dev}"
+ "--sysconfdir=/etc/slurm"
] ++ stdenv.lib.optional (gtk == null) "--disable-gtktest";
preConfigure = ''
@@ -22,6 +29,10 @@ stdenv.mkDerivation rec {
substituteInPlace ./doc/man/man2html.py --replace "/usr/bin/env python" "${python.interpreter}"
'';
+ postInstall = ''
+ rm -f $out/lib/*.la $out/lib/slurm/*.la
+ '';
+
meta = with stdenv.lib; {
homepage = http://www.schedmd.com/;
description = "Simple Linux Utility for Resource Management";
diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix
index 096bddf62d6..bb0928fa1ee 100644
--- a/pkgs/servers/dns/bind/default.nix
+++ b/pkgs/servers/dns/bind/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
"--localstatedir=/var"
"--with-libtool"
"--with-libxml2=${libxml2}"
- "--with-openssl=${openssl}"
+ "--with-openssl=${openssl.dev}"
"--without-atf"
"--without-dlopen"
"--without-docbook-xsl"
@@ -36,6 +36,10 @@ stdenv.mkDerivation rec {
postInstall = ''
moveToOutput bin/bind9-config $dev
moveToOutput bin/isc-config.sh $dev
+
+ for f in $out/lib/*.la; do
+ sed -i $f -e 's|-L${openssl.dev}|-L${openssl.out}|g'
+ done
'';
meta = {
diff --git a/pkgs/servers/emby/default.nix b/pkgs/servers/emby/default.nix
index 2f416fabe49..851310b4ea3 100644
--- a/pkgs/servers/emby/default.nix
+++ b/pkgs/servers/emby/default.nix
@@ -1,28 +1,28 @@
-{ stdenv, fetchurl, unzip, sqlite }:
+{ stdenv, fetchurl, pkgs, ... }:
stdenv.mkDerivation rec {
name = "emby-${version}";
- version = "3.0.5934";
+ version = "3.0.5971";
src = fetchurl {
- url = "https://github.com/MediaBrowser/Emby/releases/download/${version}/Emby.Mono.zip";
- sha256 = "1yjplz7i0lwxjnmrra33xxsvza6gj4dblsl4rqjq1qv6i0jarfv1";
+ url = "https://github.com/MediaBrowser/Emby/archive/${version}.tar.gz";
+ sha256 = "1ahx8y8l7hybkq6wy83cpgnc741q7583lp6h7qnin6x73l2wq2i8";
};
- buildInputs = [ unzip ];
- propagatedBuildInputs = [ sqlite ];
+ propagatedBuildInputs = with pkgs; [
+ mono
+ sqlite
+ ];
- # Need to set sourceRoot as unpacker will complain about multiple directory output
- sourceRoot = ".";
-
- patchPhase = ''
- substituteInPlace System.Data.SQLite.dll.config --replace libsqlite3.so ${sqlite.out}/lib/libsqlite3.so
- substituteInPlace MediaBrowser.Server.Mono.exe.config --replace ProgramData-Server "/var/lib/emby/ProgramData-Server"
+ buildPhase = ''
+ xbuild /p:Configuration="Release Mono" /p:Platform="Any CPU" /t:build MediaBrowser.Mono.sln
+ substituteInPlace MediaBrowser.Server.Mono/bin/Release\ Mono/System.Data.SQLite.dll.config --replace libsqlite3.so ${pkgs.sqlite.out}/lib/libsqlite3.so
+ substituteInPlace MediaBrowser.Server.Mono/bin/Release\ Mono/MediaBrowser.Server.Mono.exe.config --replace ProgramData-Server "/var/lib/emby/ProgramData-Server"
'';
installPhase = ''
mkdir -p $out/bin
- cp -r * $out/bin
+ cp -r MediaBrowser.Server.Mono/bin/Release\ Mono/* $out/bin/
'';
meta = {
diff --git a/pkgs/servers/fcgiwrap/default.nix b/pkgs/servers/fcgiwrap/default.nix
index 84deebcb8f5..5dcaf5a65fe 100644
--- a/pkgs/servers/fcgiwrap/default.nix
+++ b/pkgs/servers/fcgiwrap/default.nix
@@ -13,6 +13,11 @@ stdenv.mkDerivation rec {
buildInputs = [ autoreconfHook systemd fcgi pkgconfig ];
+ # systemd 230 no longer has libsystemd-daemon as a separate entity from libsystemd
+ postPatch = ''
+ substituteInPlace configure.ac --replace libsystemd-daemon libsystemd
+ '';
+
meta = with stdenv.lib; {
homepage = https://nginx.localdomain.pl/wiki/FcgiWrap;
description = "Simple server for running CGI applications over FastCGI";
diff --git a/pkgs/servers/http/apache-httpd/2.2.nix b/pkgs/servers/http/apache-httpd/2.2.nix
index 361aa3d58f7..0bde9baa4bf 100644
--- a/pkgs/servers/http/apache-httpd/2.2.nix
+++ b/pkgs/servers/http/apache-httpd/2.2.nix
@@ -39,12 +39,12 @@ stdenv.mkDerivation rec {
configureFlags="$configureFlags --includedir=$dev/include"
'';
configureFlags = ''
- --with-z=${zlib}
- --with-pcre=${pcre}
+ --with-z=${zlib.dev}
+ --with-pcre=${pcre.dev}
--enable-mods-shared=all
--enable-authn-alias
${if proxySupport then "--enable-proxy" else ""}
- ${if sslSupport then "--enable-ssl --with-ssl=${openssl}" else ""}
+ ${if sslSupport then "--enable-ssl --with-ssl=${openssl.dev}" else ""}
${if ldapSupport then "--enable-ldap --enable-authnz-ldap" else ""}
--with-mpm=${mpm}
--enable-cache
diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix
index bc7fd1441c1..d52973ea12f 100644
--- a/pkgs/servers/http/apache-httpd/2.4.nix
+++ b/pkgs/servers/http/apache-httpd/2.4.nix
@@ -46,10 +46,10 @@ stdenv.mkDerivation rec {
configureFlags="$configureFlags --includedir=$dev/include"
'';
configureFlags = ''
- --with-apr=${apr}
- --with-apr-util=${aprutil}
- --with-z=${zlib}
- --with-pcre=${pcre}
+ --with-apr=${apr.dev}
+ --with-apr-util=${aprutil.dev}
+ --with-z=${zlib.dev}
+ --with-pcre=${pcre.dev}
--disable-maintainer-mode
--disable-debugger-mode
--enable-mods-shared=all
diff --git a/pkgs/servers/http/apache-modules/tomcat-connectors/default.nix b/pkgs/servers/http/apache-modules/tomcat-connectors/default.nix
index 90d0fb899c3..dee2fb3e4ff 100644
--- a/pkgs/servers/http/apache-modules/tomcat-connectors/default.nix
+++ b/pkgs/servers/http/apache-modules/tomcat-connectors/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "11khipjpy3y84j1pp7yyx76y64jccvyhh3klwzqxylff49vjc2fc";
};
- configureFlags = "--with-apxs=${apacheHttpd}/bin/apxs --with-java-home=${jdk}";
+ configureFlags = "--with-apxs=${apacheHttpd.dev}/bin/apxs --with-java-home=${jdk}";
sourceRoot = "${name}-src/native";
diff --git a/pkgs/servers/http/nginx/modules.nix b/pkgs/servers/http/nginx/modules.nix
index f58479e4478..888efc006d0 100644
--- a/pkgs/servers/http/nginx/modules.nix
+++ b/pkgs/servers/http/nginx/modules.nix
@@ -55,7 +55,7 @@
src = "${pkgs.modsecurity_standalone.nginx}/nginx/modsecurity";
inputs = [ pkgs.curl pkgs.apr pkgs.aprutil pkgs.apacheHttpd pkgs.yajl ];
preConfigure = ''
- export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${pkgs.aprutil}/include/apr-1 -I${pkgs.apacheHttpd}/include -I${pkgs.apr}/include/apr-1 -I${pkgs.yajl}/include"
+ export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${pkgs.aprutil.dev}/include/apr-1 -I${pkgs.apacheHttpd.dev}/include -I${pkgs.apr.dev}/include/apr-1 -I${pkgs.yajl}/include"
'';
};
diff --git a/pkgs/servers/irc/charybdis/default.nix b/pkgs/servers/irc/charybdis/default.nix
index 6ecad81973b..89eeeaecb34 100644
--- a/pkgs/servers/irc/charybdis/default.nix
+++ b/pkgs/servers/irc/charybdis/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
configureFlags = [
"--enable-epoll"
"--enable-ipv6"
- "--enable-openssl=${openssl}"
+ "--enable-openssl=${openssl.dev}"
"--with-program-prefix=charybdis-"
];
diff --git a/pkgs/servers/irc/ircd-hybrid/default.nix b/pkgs/servers/irc/ircd-hybrid/default.nix
index 512cee4b016..603c765854f 100644
--- a/pkgs/servers/irc/ircd-hybrid/default.nix
+++ b/pkgs/servers/irc/ircd-hybrid/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
buildInputs = [ openssl zlib ];
configureFlags =
- "--with-nicklen=100 --with-topiclen=360 --enable-openssl=${openssl}";
+ "--with-nicklen=100 --with-topiclen=360 --enable-openssl=${openssl.dev}";
postInstall = "echo postinstall; mkdir -p \${out}/ ; rm -rf \${out}/logs ; ln -s /home/ircd \${out}/logs;";
diff --git a/pkgs/servers/ldap/389/default.nix b/pkgs/servers/ldap/389/default.nix
index 95dc5ab8679..39667c8ba62 100644
--- a/pkgs/servers/ldap/389/default.nix
+++ b/pkgs/servers/ldap/389/default.nix
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
"--localstatedir=/var"
"--with-openldap"
"--with-db=${db}"
- "--with-sasl=${cyrus_sasl}"
+ "--with-sasl=${cyrus_sasl.dev}"
"--with-netsnmp=${net_snmp}"
];
diff --git a/pkgs/servers/mail/opensmtpd/default.nix b/pkgs/servers/mail/opensmtpd/default.nix
index 94bc9f2bfe9..46fc9bc00f2 100644
--- a/pkgs/servers/mail/opensmtpd/default.nix
+++ b/pkgs/servers/mail/opensmtpd/default.nix
@@ -1,33 +1,51 @@
-{ stdenv, fetchurl, autoconf, automake, libtool, bison
-, libasr, libevent, zlib, openssl, db, pam, cacert
+{ stdenv, lib, fetchurl, autoconf, automake, libtool, bison
+, libasr, libevent, zlib, openssl, db, pam
+
+# opensmtpd requires root for no reason to encrypt passwords, this patch fixes it
+# see also https://github.com/OpenSMTPD/OpenSMTPD/issues/678
+, unpriviledged_smtpctl_encrypt ? true
+
+# This enables you to override the '+' character which typically separates the user from the tag in user+tag@domain.tld
+, tag_char ? null
}:
stdenv.mkDerivation rec {
name = "opensmtpd-${version}";
- version = "5.7.3p2";
+ version = "5.9.2p1";
nativeBuildInputs = [ autoconf automake libtool bison ];
buildInputs = [ libasr libevent zlib openssl db pam ];
src = fetchurl {
url = "http://www.opensmtpd.org/archives/${name}.tar.gz";
- sha256 = "0d2973008d0f66bebb84bed516be6c32617735241cc54dd26643529281a8e52b";
+ sha256 = "07d7f1m5sxyz6mkk228rcm7fsf7350994ayvmhgph333q5rz48im";
};
patches = [ ./proc_path.diff ];
+ postPatch = with builtins; with lib;
+ optionalString (isString tag_char) ''
+ sed -i -e "s,TAG_CHAR.*'+',TAG_CHAR '${tag_char}'," smtpd/smtpd-defines.h
+ '' +
+ optionalString unpriviledged_smtpctl_encrypt ''
+ substituteInPlace smtpd/smtpctl.c --replace \
+ 'if (geteuid())' \
+ 'if (geteuid() != 0 && !(argc > 1 && !strcmp(argv[1], "encrypt")))'
+ '';
+
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-mantype=doc"
- "--with-pam"
- "--without-bsd-auth"
- "--with-sock-dir=/run"
- "--with-privsep-user=smtpd"
- "--with-queue-user=smtpq"
- "--with-ca-file=/etc/ssl/certs/ca-certificates.crt"
- "--with-libevent-dir=${libevent.dev}"
- "--enable-table-db"
+ "--with-auth-pam"
+ "--without-auth-bsdauth"
+ "--with-path-socket=/run"
+ "--with-user-smtpd=smtpd"
+ "--with-user-queue=smtpq"
+ "--with-group-queue=smtpq"
+ "--with-path-CAfile=/etc/ssl/certs/ca-certificates.crt"
+ "--with-libevent=${libevent.dev}"
+ "--with-table-db"
];
installFlags = [
@@ -35,14 +53,14 @@ stdenv.mkDerivation rec {
"localstatedir=\${TMPDIR}"
];
- meta = {
+ meta = with stdenv.lib; {
homepage = https://www.opensmtpd.org/;
description = ''
A free implementation of the server-side SMTP protocol as defined by
RFC 5321, with some additional standard extensions
'';
- license = stdenv.lib.licenses.isc;
- platforms = stdenv.lib.platforms.linux;
- maintainers = [ stdenv.lib.maintainers.rickynils ];
+ license = licenses.isc;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ rickynils obadz ];
};
}
diff --git a/pkgs/servers/mail/opensmtpd/extras.nix b/pkgs/servers/mail/opensmtpd/extras.nix
index 0123d19bf3f..cf93b11ba9a 100644
--- a/pkgs/servers/mail/opensmtpd/extras.nix
+++ b/pkgs/servers/mail/opensmtpd/extras.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-privsep-user=smtpd"
- "--with-libevent-dir=${libevent}"
+ "--with-libevent-dir=${libevent.dev}"
"--with-filter-clamav"
"--with-filter-dkim-signer"
diff --git a/pkgs/servers/mail/opensmtpd/proc_path.diff b/pkgs/servers/mail/opensmtpd/proc_path.diff
index 0e8eac0bb83..9306685e365 100644
--- a/pkgs/servers/mail/opensmtpd/proc_path.diff
+++ b/pkgs/servers/mail/opensmtpd/proc_path.diff
@@ -1,11 +1,12 @@
-diff -Naur opensmtpd-5.7.1p1/smtpd/parse.y opensmtpd-5.7.1p1.patched/smtpd/parse.y
---- opensmtpd-5.7.1p1/smtpd/parse.y 2015-06-30 10:13:34.000000000 +0200
-+++ opensmtpd-5.7.1p1.patched/smtpd/parse.y 2015-09-26 08:41:17.012472516 +0200
-@@ -2519,13 +2519,19 @@
+diff --git a/smtpd/parse.y b/smtpd/parse.y
+index ab02719..c1c77d9 100644
+--- a/smtpd/parse.y
++++ b/smtpd/parse.y
+@@ -2534,13 +2534,19 @@ create_filter_proc(char *name, char *prog)
{
struct filter_conf *f;
char *path;
-+ const char *proc_path;
++ const char *proc_path;
if (dict_get(&conf->sc_filters, name)) {
yyerror("filter \"%s\" already defined", name);
@@ -13,64 +14,71 @@ diff -Naur opensmtpd-5.7.1p1/smtpd/parse.y opensmtpd-5.7.1p1.patched/smtpd/parse
}
- if (asprintf(&path, "%s/filter-%s", PATH_LIBEXEC, prog) == -1) {
-+ proc_path = getenv("OPENSMTPD_PROC_PATH");
-+ if (proc_path == NULL) {
-+ proc_path = PATH_LIBEXEC;
-+ }
++ proc_path = getenv("OPENSMTPD_PROC_PATH");
++ if (proc_path == NULL) {
++ proc_path = PATH_LIBEXEC;
++ }
+
+ if (asprintf(&path, "%s/filter-%s", proc_path, prog) == -1) {
yyerror("filter \"%s\" asprintf failed", name);
return (0);
}
-diff -Naur opensmtpd-5.7.1p1/smtpd/smtpd.c opensmtpd-5.7.1p1.patched/smtpd/smtpd.c
---- opensmtpd-5.7.1p1/smtpd/smtpd.c 2015-06-30 10:13:34.000000000 +0200
-+++ opensmtpd-5.7.1p1.patched/smtpd/smtpd.c 2015-09-26 08:41:16.998472557 +0200
-@@ -854,6 +854,7 @@
+diff --git a/smtpd/smtpd.c b/smtpd/smtpd.c
+index afc8891..9b0a80f 100644
+--- a/smtpd/smtpd.c
++++ b/smtpd/smtpd.c
+@@ -795,6 +795,7 @@ fork_proc_backend(const char *key, const char *conf, const char *procname)
char path[PATH_MAX];
char name[PATH_MAX];
char *arg;
-+ char *proc_path;
++ char *proc_path;
if (strlcpy(name, conf, sizeof(name)) >= sizeof(name)) {
log_warnx("warn: %s-proc: conf too long", key);
-@@ -864,7 +865,12 @@
+@@ -805,7 +806,12 @@ fork_proc_backend(const char *key, const char *conf, const char *procname)
if (arg)
*arg++ = '\0';
- if (snprintf(path, sizeof(path), PATH_LIBEXEC "/%s-%s", key, name) >=
-+ proc_path = getenv("OPENSMTPD_PROC_PATH");
-+ if (proc_path == NULL) {
-+ proc_path = PATH_LIBEXEC;
-+ }
++ proc_path = getenv("OPENSMTPD_PROC_PATH");
++ if (proc_path == NULL) {
++ proc_path = PATH_LIBEXEC;
++ }
+
+ if (snprintf(path, sizeof(path), "%s/%s-%s", proc_path, key, name) >=
(ssize_t)sizeof(path)) {
log_warn("warn: %s-proc: exec path too long", key);
return (-1);
-diff -Naur opensmtpd-5.7.1p1/smtpd/table.c opensmtpd-5.7.1p1.patched/smtpd/table.c
---- opensmtpd-5.7.1p1/smtpd/table.c 2015-06-30 10:13:34.000000000 +0200
-+++ opensmtpd-5.7.1p1.patched/smtpd/table.c 2015-09-26 08:41:17.005472536 +0200
-@@ -201,6 +201,7 @@
+diff --git a/smtpd/table.c b/smtpd/table.c
+index 21ee237..95b5164 100644
+--- a/smtpd/table.c
++++ b/smtpd/table.c
+@@ -193,6 +193,7 @@ table_create(const char *backend, const char *name, const char *tag,
struct table_backend *tb;
char buf[LINE_MAX];
char path[LINE_MAX];
-+ const char *proc_path;
++ const char *proc_path;
size_t n;
struct stat sb;
-@@ -215,8 +216,14 @@
+@@ -207,11 +208,16 @@ table_create(const char *backend, const char *name, const char *tag,
if (name && table_find(name, NULL))
fatalx("table_create: table \"%s\" already defined", name);
-+ proc_path = getenv("OPENSMTPD_PROC_PATH");
-+ if (proc_path == NULL) {
-+ proc_path = PATH_LIBEXEC;
-+ }
++ proc_path = getenv("OPENSMTPD_PROC_PATH");
++ if (proc_path == NULL) {
++ proc_path = PATH_LIBEXEC;
++ }
+
if ((tb = table_backend_lookup(backend)) == NULL) {
-- if ((size_t)snprintf(path, sizeof(path), PATH_LIBEXEC "/table-%s",
+- if ((size_t)snprintf(path, sizeof(path), PATH_LIBEXEC"/table-%s",
+- backend) >= sizeof(path)) {
+- fatalx("table_create: path too long \""
+- PATH_LIBEXEC"/table-%s\"", backend);
+ if ((size_t)snprintf(path, sizeof(path), "%s/table-%s",
-+ proc_path,
- backend) >= sizeof(path)) {
- fatalx("table_create: path too long \""
- PATH_LIBEXEC "/table-%s\"", backend);
++ proc_path, backend) >= sizeof(path)) {
++ fatalx("table_create: path too long \"%s/table-%s\"",
++ proc_path, backend);
+ }
+ if (stat(path, &sb) == 0) {
+ tb = table_backend_lookup("proc");
diff --git a/pkgs/servers/mail/postfix/default.nix b/pkgs/servers/mail/postfix/default.nix
index 70f83479160..392b1014656 100644
--- a/pkgs/servers/mail/postfix/default.nix
+++ b/pkgs/servers/mail/postfix/default.nix
@@ -7,7 +7,7 @@
let
ccargs = lib.concatStringsSep " " ([
- "-DUSE_TLS" "-DUSE_SASL_AUTH" "-DUSE_CYRUS_SASL" "-I${cyrus_sasl}/include/sasl"
+ "-DUSE_TLS" "-DUSE_SASL_AUTH" "-DUSE_CYRUS_SASL" "-I${cyrus_sasl.dev}/include/sasl"
"-DHAS_DB_BYPASS_MAKEDEFS_CHECK"
] ++ lib.optional withPgSQL "-DHAS_PGSQL"
++ lib.optionals withMySQL [ "-DHAS_MYSQL" "-I${libmysql}/include/mysql" ]
diff --git a/pkgs/servers/monitoring/net-snmp/default.nix b/pkgs/servers/monitoring/net-snmp/default.nix
index 816ac1bdb25..6da7d8cf85b 100644
--- a/pkgs/servers/monitoring/net-snmp/default.nix
+++ b/pkgs/servers/monitoring/net-snmp/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
"--with-sys-contact=root@unknown"
"--with-logfile=/var/log/net-snmpd.log"
"--with-persistent-directory=/var/lib/net-snmp"
- "--with-openssl=${openssl}"
+ "--with-openssl=${openssl.dev}"
] ++ stdenv.lib.optional stdenv.isLinux "--with-mnttab=/proc/mounts";
buildInputs = [ autoreconfHook file perl unzip openssl ];
diff --git a/pkgs/servers/monitoring/zabbix/2.2.nix b/pkgs/servers/monitoring/zabbix/2.2.nix
index 139786ba59d..2ebc8026484 100644
--- a/pkgs/servers/monitoring/zabbix/2.2.nix
+++ b/pkgs/servers/monitoring/zabbix/2.2.nix
@@ -46,8 +46,8 @@ in
]
++ stdenv.lib.optional enableJabber "--with-jabber=${minmay}"
++ stdenv.lib.optional enableSnmp "--with-net-snmp"
- ++ stdenv.lib.optional enableSsh "--with-ssh2=${libssh2}"
- ++ stdenv.lib.optional enableLdap "--with-ldap=${openldap}";
+ ++ stdenv.lib.optional enableSsh "--with-ssh2=${libssh2.dev}"
+ ++ stdenv.lib.optional enableLdap "--with-ldap=${openldap.dev}";
postPatch = ''
sed -i -e 's/iksemel/minmay/g' configure src/libs/zbxmedia/jabber.c
diff --git a/pkgs/servers/openxpki/default.nix b/pkgs/servers/openxpki/default.nix
index 12ed3f56d9f..777ad9407c7 100644
--- a/pkgs/servers/openxpki/default.nix
+++ b/pkgs/servers/openxpki/default.nix
@@ -51,7 +51,7 @@ buildPerlPackage {
preConfigure = ''
substituteInPlace core/server/Makefile.PL \
- --replace "my \$openssl_inc_dir = ''';" "my \$openssl_inc_dir = '${openssl}/include';" \
+ --replace "my \$openssl_inc_dir = ''';" "my \$openssl_inc_dir = '${openssl.dev}/include';" \
--replace "my \$openssl_lib_dir = ''';" "my \$openssl_lib_dir = '${openssl.out}/lib';" \
--replace "my \$openssl_binary = ''';" "my \$openssl_binary = '${openssl.bin}/bin/openssl';"
substituteInPlace tools/vergen --replace "#!/usr/bin/perl" "#!${perl}/bin/perl"
diff --git a/pkgs/servers/rippled/ripple-rest.nix b/pkgs/servers/rippled/ripple-rest.nix
index 01fd098c920..3449645f185 100644
--- a/pkgs/servers/rippled/ripple-rest.nix
+++ b/pkgs/servers/rippled/ripple-rest.nix
@@ -22,5 +22,6 @@ in nodePackages.buildNodePackage rec {
homepage = https://github.com/ripple/ripple-rest;
maintainers = with maintainers; [ offline ];
license = [ licenses.mit ];
+ broken = true;
};
}
diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix
index c8f25b6f09d..902be532222 100644
--- a/pkgs/servers/sql/mariadb/default.nix
+++ b/pkgs/servers/sql/mariadb/default.nix
@@ -2,6 +2,7 @@
, openssl, pcre, boost, judy, bison, libxml2
, libaio, libevent, groff, jemalloc, cracklib, systemd, numactl, perl
, fixDarwinDylibNames, cctools, CoreServices
+, makeWrapper
}:
with stdenv.lib;
@@ -19,6 +20,7 @@ stdenv.mkDerivation rec {
# temporary due to https://mariadb.atlassian.net/browse/MDEV-9000
(if stdenv.is64bit then snappy else null)
pcre libxml2 boost judy bison libevent cracklib
+ makeWrapper
] ++ stdenv.lib.optionals stdenv.isLinux [ jemalloc libaio systemd ]
++ stdenv.lib.optionals (stdenv.isLinux && !stdenv.isArm) [ numactl ]
++ stdenv.lib.optionals stdenv.isDarwin [ perl fixDarwinDylibNames cctools CoreServices ];
@@ -92,6 +94,10 @@ stdenv.mkDerivation rec {
substituteInPlace $out/bin/mysql_install_db \
--replace basedir=\"\" basedir=\"$out\"
+ # Wrap mysqld with --basedir, but as last flag
+ wrapProgram $out/bin/mysqld
+ sed -i "s,\(^exec.*$\),\1 --basedir=$out,g" $out/bin/mysqld
+
# Remove superfluous files
rm -r $out/mysql-test $out/sql-bench $out/data # Don't need testing data
rm $out/share/man/man1/mysql-test-run.pl.1
diff --git a/pkgs/servers/sql/mysql/5.1.x.nix b/pkgs/servers/sql/mysql/5.1.x.nix
index caf6149e62c..017c99b01d0 100644
--- a/pkgs/servers/sql/mysql/5.1.x.nix
+++ b/pkgs/servers/sql/mysql/5.1.x.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
configureFlags = [
"--enable-thread-safe-client"
- "--with-ssl=${openssl}"
+ "--with-ssl=${openssl.dev}"
"--with-embedded-server"
"--with-plugins=max-no-ndb"
"--with-unix-socket-path=/run/mysqld/mysqld.sock"
diff --git a/pkgs/servers/sql/mysql/5.5.x.nix b/pkgs/servers/sql/mysql/5.5.x.nix
index 163deda7ae0..a714585c289 100644
--- a/pkgs/servers/sql/mysql/5.5.x.nix
+++ b/pkgs/servers/sql/mysql/5.5.x.nix
@@ -5,11 +5,11 @@
stdenv.mkDerivation rec {
name = "mysql-${version}";
- version = "5.5.48";
+ version = "5.5.49";
src = fetchurl {
url = "mirror://mysql/MySQL-5.5/${name}.tar.gz";
- sha256 = "10fpzvf6hxvqgaq8paiz8fvhcbbs4qnzqw0svq40bvlyhx2qfgyc";
+ sha256 = "07wy1qbxf3fxgi04v6cqs4ymi9hgsgabk218bxiwlsx706ds976d";
};
patches = if stdenv.isCygwin then [
diff --git a/pkgs/servers/sql/virtuoso/6.x.nix b/pkgs/servers/sql/virtuoso/6.x.nix
index 4de0ace0c03..aba8efa0798 100644
--- a/pkgs/servers/sql/virtuoso/6.x.nix
+++ b/pkgs/servers/sql/virtuoso/6.x.nix
@@ -13,9 +13,9 @@ stdenv.mkDerivation rec {
CPP = "${stdenv.cc}/bin/gcc -E";
configureFlags = "
- --enable-shared --disable-all-vads --with-readline=${readline}
+ --enable-shared --disable-all-vads --with-readline=${readline.dev}
--disable-hslookup --disable-wbxml2 --without-iodbc
- --enable-openssl=${openssl}
+ --enable-openssl=${openssl.dev}
";
postInstall=''
diff --git a/pkgs/servers/sql/virtuoso/7.x.nix b/pkgs/servers/sql/virtuoso/7.x.nix
index afb91602d76..7a8db3f2962 100644
--- a/pkgs/servers/sql/virtuoso/7.x.nix
+++ b/pkgs/servers/sql/virtuoso/7.x.nix
@@ -13,9 +13,9 @@ stdenv.mkDerivation rec {
CPP = "${stdenv.cc}/bin/gcc -E";
configureFlags = "
- --enable-shared --disable-all-vads --with-readline=${readline}
+ --enable-shared --disable-all-vads --with-readline=${readline.dev}
--disable-hslookup --disable-wbxml2 --without-iodbc
- --enable-openssl=${openssl}
+ --enable-openssl=${openssl.dev}
";
postInstall=''
diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix
index 45c01d74cdb..16fa2423a11 100644
--- a/pkgs/servers/x11/xorg/default.nix
+++ b/pkgs/servers/x11/xorg/default.nix
@@ -601,11 +601,11 @@ let
}) // {inherit xproto ;};
inputproto = (mkDerivation "inputproto" {
- name = "inputproto-2.3.1";
+ name = "inputproto-2.3.2";
builder = ./builder.sh;
src = fetchurl {
- url = mirror://xorg/individual/proto/inputproto-2.3.1.tar.bz2;
- sha256 = "1lf1jlxp0fc8h6fjdffhd084dqab94966l1zm3rwwsis0mifwiss";
+ url = mirror://xorg/individual/proto/inputproto-2.3.2.tar.bz2;
+ sha256 = "07gk7v006zqn3dcfh16l06gnccy7xnqywf3vl9c209ikazsnlfl9";
};
buildInputs = [pkgconfig ];
meta.platforms = stdenv.lib.platforms.unix;
@@ -806,6 +806,7 @@ let
sha256 = "0znvwk36nhmyqpmhbm9mzisgixp1mp5qkfald8x1n5yxbm3vpyz9";
};
buildInputs = [pkgconfig libfontenc fontsproto freetype xproto xtrans zlib ];
+ meta.platforms = stdenv.lib.platforms.unix;
}) // {inherit libfontenc fontsproto freetype xproto xtrans zlib ;};
libXft = (mkDerivation "libXft" {
@@ -1040,11 +1041,11 @@ let
}) // {inherit ;};
libxcb = (mkDerivation "libxcb" {
- name = "libxcb-1.11.1";
+ name = "libxcb-1.12";
builder = ./builder.sh;
src = fetchurl {
- url = http://xcb.freedesktop.org/dist/libxcb-1.11.1.tar.bz2;
- sha256 = "0c4xyvdyx5adh8dzyhnrmvwwz24gri4z1czxmxqm63i0gmngs85p";
+ url = http://xcb.freedesktop.org/dist/libxcb-1.12.tar.bz2;
+ sha256 = "0nvv0la91cf8p5qqlb3r5xnmg1jn2wphn4fb5jfbr6byqsvv3psa";
};
buildInputs = [pkgconfig libxslt libpthreadstubs python libXau xcbproto libXdmcp ];
meta.platforms = stdenv.lib.platforms.unix;
@@ -1260,11 +1261,11 @@ let
}) // {inherit ;};
videoproto = (mkDerivation "videoproto" {
- name = "videoproto-2.3.2";
+ name = "videoproto-2.3.3";
builder = ./builder.sh;
src = fetchurl {
- url = mirror://xorg/individual/proto/videoproto-2.3.2.tar.bz2;
- sha256 = "1dnlkd9nb0m135lgd6hd61vc29sdyarsyya8aqpx7z10p261dbld";
+ url = mirror://xorg/individual/proto/videoproto-2.3.3.tar.bz2;
+ sha256 = "00m7rh3pwmsld4d5fpii3xfk5ciqn17kkk38gfpzrrh8zn4ki067";
};
buildInputs = [pkgconfig ];
meta.platforms = stdenv.lib.platforms.unix;
@@ -1326,11 +1327,11 @@ let
}) // {inherit ;};
xcbproto = (mkDerivation "xcbproto" {
- name = "xcb-proto-1.11";
+ name = "xcb-proto-1.12";
builder = ./builder.sh;
src = fetchurl {
- url = http://xcb.freedesktop.org/dist/xcb-proto-1.11.tar.bz2;
- sha256 = "0bp3f53l9fy5x3mn1rkj1g81aiyzl90wacwvqdgy831aa3kfxb5l";
+ url = http://xcb.freedesktop.org/dist/xcb-proto-1.12.tar.bz2;
+ sha256 = "01j91946q8f34l1mbvmmgvyc393sm28ym4lxlacpiav4qsjan8jr";
};
buildInputs = [pkgconfig python ];
meta.platforms = stdenv.lib.platforms.unix;
@@ -1348,11 +1349,11 @@ let
}) // {inherit gperf m4 libxcb xproto ;};
xcbutilcursor = (mkDerivation "xcbutilcursor" {
- name = "xcb-util-cursor-0.1.2";
+ name = "xcb-util-cursor-0.1.3";
builder = ./builder.sh;
src = fetchurl {
- url = http://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.2.tar.bz2;
- sha256 = "0fpv46zb7kz04qxwvpax4cpd2kd8yhsm2n0if1isniqdh5xkcrgd";
+ url = http://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.3.tar.bz2;
+ sha256 = "0krr4rcw6r42cncinzvzzdqnmxk3nrgpnadyg2h8k9x10q3hm885";
};
buildInputs = [pkgconfig gperf m4 libxcb xcbutilimage xcbutilrenderutil xproto ];
meta.platforms = stdenv.lib.platforms.unix;
@@ -1579,11 +1580,11 @@ let
}) // {inherit ;};
xf86inputevdev = (mkDerivation "xf86inputevdev" {
- name = "xf86-input-evdev-2.10.1";
+ name = "xf86-input-evdev-2.10.2";
builder = ./builder.sh;
src = fetchurl {
- url = mirror://xorg/individual/driver/xf86-input-evdev-2.10.1.tar.bz2;
- sha256 = "05z05n39v8s2b0hwhcjb1bca7j8gc62bv9jxnibawwmjym3jp75g";
+ url = mirror://xorg/individual/driver/xf86-input-evdev-2.10.2.tar.bz2;
+ sha256 = "07gybpiv33rymcq5l729agan7nzv5f97wdczja6p145b846n6fm7";
};
buildInputs = [pkgconfig inputproto udev xorgserver xproto ];
meta.platforms = stdenv.lib.platforms.unix;
@@ -1612,11 +1613,11 @@ let
}) // {inherit inputproto xorgserver xproto ;};
xf86inputlibinput = (mkDerivation "xf86inputlibinput" {
- name = "xf86-input-libinput-0.16.0";
+ name = "xf86-input-libinput-0.19.0";
builder = ./builder.sh;
src = fetchurl {
- url = mirror://xorg/individual/driver/xf86-input-libinput-0.16.0.tar.bz2;
- sha256 = "0jbgnxsbr3g4g9vkspcc6pqy7av59zx5bb78vkvaqy8yx4qybbgx";
+ url = mirror://xorg/individual/driver/xf86-input-libinput-0.19.0.tar.bz2;
+ sha256 = "0xzl3aiah9vma3pvi170g1847vxqrg4is3ilc51f72lbgkf30pbc";
};
buildInputs = [pkgconfig inputproto xorgserver xproto ];
meta.platforms = stdenv.lib.platforms.unix;
@@ -1700,11 +1701,11 @@ let
}) // {inherit fontsproto libpciaccess randrproto renderproto videoproto xextproto xorgserver xproto ;};
xf86videoati = (mkDerivation "xf86videoati" {
- name = "xf86-video-ati-7.6.1";
+ name = "xf86-video-ati-7.7.0";
builder = ./builder.sh;
src = fetchurl {
- url = mirror://xorg/individual/driver/xf86-video-ati-7.6.1.tar.bz2;
- sha256 = "0k6kw69mcarlmxlb4jlhz887jxqr94qx2pin04xcv2ysp3pdj5i5";
+ url = mirror://xorg/individual/driver/xf86-video-ati-7.7.0.tar.bz2;
+ sha256 = "1hy1n8an98mflfbdcb3q7wv59x971j7nf9zhivf90p0lgdbiqkc4";
};
buildInputs = [pkgconfig fontsproto glamoregl libdrm udev libpciaccess randrproto renderproto videoproto xextproto xf86driproto xorgserver xproto ];
meta.platforms = stdenv.lib.platforms.unix;
@@ -1810,11 +1811,11 @@ let
}) // {inherit fontsproto libpciaccess randrproto renderproto videoproto xextproto xorgserver xproto ;};
xf86videointel = (mkDerivation "xf86videointel" {
- name = "xf86-video-intel-2015-11-14";
+ name = "xf86-video-intel-2016-05-22";
builder = ./builder.sh;
src = fetchurl {
- url = http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/0340718366d7cb168a46930eb7be22f2d88354d8.tar.gz;
- sha256 = "0x11dig1wmpjz5n35sh30zs58ar8q8836w3zrkwkvgxj6q6smvvr";
+ url = http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/8477615ae1bd284aca1221185ffefe0630d3f7ab.tar.gz;
+ sha256 = "1fnwcsg2kr32nv9x6z671g6amwcyhba2392d63kjl2avjyhjad79";
};
buildInputs = [pkgconfig dri2proto dri3proto fontsproto libdrm libpng udev libpciaccess presentproto randrproto renderproto libX11 xcbutil libxcb libXcursor libXdamage libXext xextproto xf86driproto libXfixes xorgserver xproto libXrandr libXrender libxshmfence libXtst libXvMC ];
meta.platforms = stdenv.lib.platforms.unix;
@@ -1842,17 +1843,6 @@ let
meta.platforms = stdenv.lib.platforms.unix;
}) // {inherit fontsproto libdrm libpciaccess randrproto renderproto videoproto xextproto xf86driproto xorgserver xproto ;};
- xf86videomodesetting = (mkDerivation "xf86videomodesetting" {
- name = "xf86-video-modesetting-0.9.0";
- builder = ./builder.sh;
- src = fetchurl {
- url = mirror://xorg/individual/driver/xf86-video-modesetting-0.9.0.tar.bz2;
- sha256 = "0p6pjn5bnd2wr3lmas4b12zcq12d9ilvssga93fzlg90fdahikwh";
- };
- buildInputs = [pkgconfig fontsproto libdrm udev libpciaccess randrproto libX11 xextproto xorgserver xproto ];
- meta.platforms = stdenv.lib.platforms.unix;
- }) // {inherit fontsproto libdrm udev libpciaccess randrproto libX11 xextproto xorgserver xproto ;};
-
xf86videoneomagic = (mkDerivation "xf86videoneomagic" {
name = "xf86-video-neomagic-1.2.9";
builder = ./builder.sh;
@@ -1938,6 +1928,7 @@ let
sha256 = "1a7rqafxzc2hd0s5pnq8s8j9d3jg64ndc0xnq4160kasyqhwy3k6";
};
buildInputs = [pkgconfig fontsproto libpciaccess randrproto renderproto xextproto xorgserver xproto ];
+ meta.platforms = stdenv.lib.platforms.unix;
}) // {inherit fontsproto libpciaccess randrproto renderproto xextproto xorgserver xproto ;};
xf86videos3virge = (mkDerivation "xf86videos3virge" {
@@ -2238,11 +2229,11 @@ let
}) // {inherit inputproto libX11 libXaw xproto libXt ;};
xkeyboardconfig = (mkDerivation "xkeyboardconfig" {
- name = "xkeyboard-config-2.16";
+ name = "xkeyboard-config-2.17";
builder = ./builder.sh;
src = fetchurl {
- url = mirror://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.16.tar.bz2;
- sha256 = "0n0xinsljc5mww1qw7dfp8knv0f1r9hs6pdhl0fggdwn5hhiz2hy";
+ url = mirror://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.17.tar.bz2;
+ sha256 = "00878f1v3034ki78pjpf2db0bh7jsmszsnxr3bf5qxripm2bxiny";
};
buildInputs = [pkgconfig libX11 xproto ];
meta.platforms = stdenv.lib.platforms.unix;
@@ -2407,22 +2398,22 @@ let
}) // {inherit libX11 xproto ;};
xproto = (mkDerivation "xproto" {
- name = "xproto-7.0.28";
+ name = "xproto-7.0.29";
builder = ./builder.sh;
src = fetchurl {
- url = mirror://xorg/individual/proto/xproto-7.0.28.tar.bz2;
- sha256 = "1jpnvm33vi2dar5y5zgz7jjh0m8fpkcxm0f0lbwfx37ns5l5bs19";
+ url = mirror://xorg/individual/proto/xproto-7.0.29.tar.bz2;
+ sha256 = "12lzpa9mrzkyrhrphzpi1014np3328qg7mdq08wj6wyaj9q4f6kc";
};
buildInputs = [pkgconfig ];
meta.platforms = stdenv.lib.platforms.unix;
}) // {inherit ;};
xrandr = (mkDerivation "xrandr" {
- name = "xrandr-1.4.3";
+ name = "xrandr-1.5.0";
builder = ./builder.sh;
src = fetchurl {
- url = mirror://xorg/individual/app/xrandr-1.4.3.tar.bz2;
- sha256 = "06xy0kr6ih7ilrwl6b5g6ay75vm2j4lxnv1d5xlj6sdqhqsaqm3i";
+ url = mirror://xorg/individual/app/xrandr-1.5.0.tar.bz2;
+ sha256 = "1kaih7rmzxr1vp5a5zzjhm5x7dn9mckya088sqqw026pskhx9ky1";
};
buildInputs = [pkgconfig libX11 xproto libXrandr libXrender ];
meta.platforms = stdenv.lib.platforms.unix;
diff --git a/pkgs/servers/x11/xorg/extra.list b/pkgs/servers/x11/xorg/extra.list
index fc3068b8f35..56a7b1f76a9 100644
--- a/pkgs/servers/x11/xorg/extra.list
+++ b/pkgs/servers/x11/xorg/extra.list
@@ -1,8 +1,8 @@
http://xcb.freedesktop.org/dist/libpthread-stubs-0.3.tar.bz2
-http://xcb.freedesktop.org/dist/libxcb-1.11.1.tar.bz2
-http://xcb.freedesktop.org/dist/xcb-proto-1.11.tar.bz2
+http://xcb.freedesktop.org/dist/libxcb-1.12.tar.bz2
+http://xcb.freedesktop.org/dist/xcb-proto-1.12.tar.bz2
http://xcb.freedesktop.org/dist/xcb-util-0.4.0.tar.bz2
-http://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.2.tar.bz2
+http://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.3.tar.bz2
http://xcb.freedesktop.org/dist/xcb-util-image-0.4.0.tar.bz2
http://xcb.freedesktop.org/dist/xcb-util-keysyms-0.4.0.tar.bz2
http://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.9.tar.bz2
diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix
index 6c0bb80b755..8f18613d06e 100644
--- a/pkgs/servers/x11/xorg/overrides.nix
+++ b/pkgs/servers/x11/xorg/overrides.nix
@@ -305,6 +305,7 @@ in
};
xf86inputsynaptics = attrs: attrs // {
+ outputs = [ "dev" "out" ]; # *.pc pulls xorgserver.dev
buildInputs = attrs.buildInputs ++ [args.mtdev args.libevdev];
installFlags = "sdkdir=\${out}/include/xorg configdir=\${out}/share/X11/xorg.conf.d";
};
diff --git a/pkgs/servers/x11/xorg/tarballs-7.7.list b/pkgs/servers/x11/xorg/tarballs-7.7.list
index d0a812e45d6..2ebf31918b8 100644
--- a/pkgs/servers/x11/xorg/tarballs-7.7.list
+++ b/pkgs/servers/x11/xorg/tarballs-7.7.list
@@ -48,7 +48,7 @@ mirror://xorg/X11R7.7/src/everything/font-winitzki-cyrillic-1.0.3.tar.bz2
mirror://xorg/X11R7.7/src/everything/font-xfree86-type1-1.0.4.tar.bz2
mirror://xorg/individual/proto/glproto-1.4.17.tar.bz2
mirror://xorg/individual/app/iceauth-1.0.7.tar.bz2
-mirror://xorg/individual/proto/inputproto-2.3.1.tar.bz2
+mirror://xorg/individual/proto/inputproto-2.3.2.tar.bz2
mirror://xorg/individual/proto/kbproto-1.0.7.tar.bz2
mirror://xorg/X11R7.7/src/everything/libAppleWM-1.4.1.tar.bz2
mirror://xorg/individual/lib/libdmx-1.1.3.tar.bz2
@@ -101,7 +101,7 @@ mirror://xorg/individual/app/setxkbmap-1.3.1.tar.bz2
mirror://xorg/individual/app/smproxy-1.0.6.tar.bz2
mirror://xorg/individual/app/twm-1.0.9.tar.bz2
mirror://xorg/individual/util/util-macros-1.19.0.tar.bz2
-mirror://xorg/individual/proto/videoproto-2.3.2.tar.bz2
+mirror://xorg/individual/proto/videoproto-2.3.3.tar.bz2
mirror://xorg/X11R7.7/src/everything/windowswmproto-1.0.4.tar.bz2
mirror://xorg/individual/app/x11perf-1.6.0.tar.bz2
mirror://xorg/individual/app/xauth-1.0.9.tar.bz2
@@ -119,17 +119,17 @@ mirror://xorg/individual/proto/xextproto-7.3.0.tar.bz2
mirror://xorg/X11R7.7/src/everything/xf86bigfontproto-1.2.0.tar.bz2
mirror://xorg/X11R7.7/src/everything/xf86dgaproto-2.1.tar.bz2
mirror://xorg/X11R7.7/src/everything/xf86driproto-2.1.1.tar.bz2
-mirror://xorg/individual/driver/xf86-input-evdev-2.10.1.tar.bz2
+mirror://xorg/individual/driver/xf86-input-evdev-2.10.2.tar.bz2
mirror://xorg/individual/driver/xf86-input-joystick-1.6.2.tar.bz2
mirror://xorg/individual/driver/xf86-input-keyboard-1.8.1.tar.bz2
-mirror://xorg/individual/driver/xf86-input-libinput-0.16.0.tar.bz2
+mirror://xorg/individual/driver/xf86-input-libinput-0.19.0.tar.bz2
mirror://xorg/individual/driver/xf86-input-mouse-1.9.1.tar.bz2
mirror://xorg/individual/driver/xf86-input-synaptics-1.8.3.tar.bz2
mirror://xorg/individual/driver/xf86-input-vmmouse-13.1.0.tar.bz2
mirror://xorg/individual/driver/xf86-input-void-1.4.1.tar.bz2
mirror://xorg/individual/driver/xf86-video-ark-0.7.5.tar.bz2
mirror://xorg/individual/driver/xf86-video-ast-1.1.5.tar.bz2
-mirror://xorg/individual/driver/xf86-video-ati-7.6.1.tar.bz2
+mirror://xorg/individual/driver/xf86-video-ati-7.7.0.tar.bz2
mirror://xorg/individual/driver/glamor-egl-0.6.0.tar.bz2
mirror://xorg/individual/driver/xf86-video-nouveau-1.0.12.tar.bz2
mirror://xorg/individual/driver/xf86-video-chips-1.2.6.tar.bz2
@@ -144,7 +144,6 @@ mirror://xorg/individual/driver/xf86-video-i740-1.3.5.tar.bz2
mirror://xorg/individual/driver/xf86-video-intel-2.99.917.tar.bz2
mirror://xorg/individual/driver/xf86-video-mach64-6.9.5.tar.bz2
mirror://xorg/individual/driver/xf86-video-mga-1.6.4.tar.bz2
-mirror://xorg/individual/driver/xf86-video-modesetting-0.9.0.tar.bz2
mirror://xorg/individual/driver/xf86-video-qxl-0.1.3.tar.bz2
mirror://xorg/individual/driver/xf86-video-neomagic-1.2.9.tar.bz2
mirror://xorg/X11R7.7/src/everything/xf86-video-newport-0.2.4.tar.bz2
@@ -176,7 +175,7 @@ mirror://xorg/individual/app/xinput-1.6.2.tar.bz2
mirror://xorg/individual/app/xkbcomp-1.3.1.tar.bz2
mirror://xorg/individual/app/xkbevd-1.1.4.tar.bz2
mirror://xorg/individual/app/xkbutils-1.0.4.tar.bz2
-mirror://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.16.tar.bz2
+mirror://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.17.tar.bz2
mirror://xorg/individual/app/xkill-1.0.4.tar.bz2
mirror://xorg/individual/app/xlsatoms-1.1.2.tar.bz2
mirror://xorg/individual/app/xlsclients-1.1.3.tar.bz2
@@ -188,8 +187,8 @@ mirror://xorg/individual/xserver/xorg-server-1.17.4.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
-mirror://xorg/individual/proto/xproto-7.0.28.tar.bz2
-mirror://xorg/individual/app/xrandr-1.4.3.tar.bz2
+mirror://xorg/individual/proto/xproto-7.0.29.tar.bz2
+mirror://xorg/individual/app/xrandr-1.5.0.tar.bz2
mirror://xorg/individual/app/xrdb-1.1.0.tar.bz2
mirror://xorg/individual/app/xrefresh-1.0.5.tar.bz2
mirror://xorg/individual/app/xset-1.2.3.tar.bz2
diff --git a/pkgs/servers/xmpp/ejabberd/default.nix b/pkgs/servers/xmpp/ejabberd/default.nix
index 974a636e559..ef7d64b3e78 100644
--- a/pkgs/servers/xmpp/ejabberd/default.nix
+++ b/pkgs/servers/xmpp/ejabberd/default.nix
@@ -90,7 +90,7 @@ in stdenv.mkDerivation rec {
(lib.enableFeature withIconv "iconv")
(lib.enableFeature withTools "tools")
(lib.enableFeature withRedis "redis")
- ] ++ lib.optional withSqlite "--with-sqlite3=${sqlite}";
+ ] ++ lib.optional withSqlite "--with-sqlite3=${sqlite.dev}";
enableParallelBuilding = true;
diff --git a/pkgs/shells/fish/builtin_status.patch b/pkgs/shells/fish/builtin_status.patch
deleted file mode 100644
index dd6d79713b4..00000000000
--- a/pkgs/shells/fish/builtin_status.patch
+++ /dev/null
@@ -1,216 +0,0 @@
-commit 5145ca56b0ac1e5e284ab6dfa6fdecc5e86e59b8
-Author: Jakob Gillich
-Date: Sat Dec 26 04:57:06 2015 +0100
-
- prefix status command with builtin
-
-diff --git a/etc/config.fish b/etc/config.fish
-index 0683f40..9297a85 100644
---- a/etc/config.fish
-+++ b/etc/config.fish
-@@ -6,7 +6,7 @@
- # Some things should only be done for login terminals
- #
-
--if status --is-login
-+if builtin status --is-login
-
- #
- # Set some value for LANG if nothing was set before, and this is a
-diff --git a/share/functions/__fish_config_interactive.fish b/share/functions/__fish_config_interactive.fish
-index 9b27fb9..d1c704b 100644
---- a/share/functions/__fish_config_interactive.fish
-+++ b/share/functions/__fish_config_interactive.fish
-@@ -101,7 +101,7 @@ function __fish_config_interactive -d "Initializations that should be performed
- eval "$__fish_bin_dir/fish -c 'fish_update_completions > /dev/null ^/dev/null' &"
- end
-
-- if status -i
-+ if builtin status -i
- #
- # Print a greeting
- #
-@@ -128,14 +128,14 @@ function __fish_config_interactive -d "Initializations that should be performed
- #
-
- function __fish_repaint --on-variable fish_color_cwd --description "Event handler, repaints the prompt when fish_color_cwd changes"
-- if status --is-interactive
-+ if builtin status --is-interactive
- set -e __fish_prompt_cwd
- commandline -f repaint ^/dev/null
- end
- end
-
- function __fish_repaint_root --on-variable fish_color_cwd_root --description "Event handler, repaints the prompt when fish_color_cwd_root changes"
-- if status --is-interactive
-+ if builtin status --is-interactive
- set -e __fish_prompt_cwd
- commandline -f repaint ^/dev/null
- end
-@@ -191,7 +191,7 @@ function __fish_config_interactive -d "Initializations that should be performed
- # Notify vte-based terminals when $PWD changes (issue #906)
- if test "$VTE_VERSION" -ge 3405 -o "$TERM_PROGRAM" = "Apple_Terminal"
- function __update_vte_cwd --on-variable PWD --description 'Notify VTE of change to $PWD'
-- status --is-command-substitution; and return
-+ builtin status --is-command-substitution; and return
- printf '\033]7;file://%s%s\a' (hostname) (pwd | __fish_urlencode)
- end
- end
-diff --git a/share/functions/__fish_git_prompt.fish b/share/functions/__fish_git_prompt.fish
-index 0117894..4e4b60f 100644
---- a/share/functions/__fish_git_prompt.fish
-+++ b/share/functions/__fish_git_prompt.fish
-@@ -728,7 +728,7 @@ for var in repaint describe_style show_informative_status showdirtystate showsta
- set varargs $varargs --on-variable __fish_git_prompt_$var
- end
- function __fish_git_prompt_repaint $varargs --description "Event handler, repaints prompt when functionality changes"
-- if status --is-interactive
-+ if builtin status --is-interactive
- if test $argv[3] = __fish_git_prompt_show_informative_status
- # Clear characters that have different defaults with/without informative status
- for name in cleanstate dirtystate invalidstate stagedstate stateseparator untrackedfiles upstream_ahead upstream_behind
-@@ -746,7 +746,7 @@ for var in '' _prefix _suffix _bare _merging _cleanstate _invalidstate _upstream
- end
- set varargs $varargs --on-variable __fish_git_prompt_showcolorhints
- function __fish_git_prompt_repaint_color $varargs --description "Event handler, repaints prompt when any color changes"
-- if status --is-interactive
-+ if builtin status --is-interactive
- set -l var $argv[3]
- set -e _$var
- set -e _{$var}_done
-@@ -766,7 +766,7 @@ for var in cleanstate dirtystate invalidstate stagedstate stashstate statesepara
- set varargs $varargs --on-variable __fish_git_prompt_char_$var
- end
- function __fish_git_prompt_repaint_char $varargs --description "Event handler, repaints prompt when any char changes"
-- if status --is-interactive
-+ if builtin status --is-interactive
- set -e _$argv[3]
- commandline -f repaint ^/dev/null
- end
-diff --git a/share/functions/cd.fish b/share/functions/cd.fish
-index 8faa469..10168d7 100644
---- a/share/functions/cd.fish
-+++ b/share/functions/cd.fish
-@@ -5,7 +5,7 @@
- function cd --description "Change directory"
-
- # Skip history in subshells
-- if status --is-command-substitution
-+ if builtin status --is-command-substitution
- builtin cd $argv
- return $status
- end
-@@ -33,4 +33,3 @@ function cd --description "Change directory"
-
- return $cd_status
- end
--
-diff --git a/share/functions/eval.fish b/share/functions/eval.fish
-index 052d417..5eeb12a 100644
---- a/share/functions/eval.fish
-+++ b/share/functions/eval.fish
-@@ -23,17 +23,17 @@ function eval -S -d "Evaluate parameters as a command"
- # used interactively, like less, wont work using eval.
-
- set -l mode
-- if status --is-interactive-job-control
-+ if builtin status --is-interactive-job-control
- set mode interactive
- else
-- if status --is-full-job-control
-+ if builtin status --is-full-job-control
- set mode full
- else
- set mode none
- end
- end
-- if status --is-interactive
-- status --job-control full
-+ if builtin status --is-interactive
-+ builtin status --job-control full
- end
- __fish_restore_status $status_copy
-
-@@ -60,6 +60,6 @@ function eval -S -d "Evaluate parameters as a command"
- echo "begin; $argv "\n" ;end <&3 3<&-" | source 3<&0
- set -l res $status
-
-- status --job-control $mode
-+ builtin status --job-control $mode
- return $res
- end
-diff --git a/share/functions/history.fish b/share/functions/history.fish
-index fd2b91f..12d28d7 100644
---- a/share/functions/history.fish
-+++ b/share/functions/history.fish
-@@ -38,7 +38,7 @@ function history --description "Deletes an item from history"
- end
- else
- #Execute history builtin without any argument
-- if status --is-interactive
-+ if builtin status --is-interactive
- builtin history | eval $pager
- else
- builtin history
-diff --git a/share/functions/psub.fish b/share/functions/psub.fish
-index 67863ad..dd0e08b 100644
---- a/share/functions/psub.fish
-+++ b/share/functions/psub.fish
-@@ -40,7 +40,7 @@ function psub --description "Read from stdin into a file and output the filename
-
- end
-
-- if not status --is-command-substitution
-+ if not builtin status --is-command-substitution
- echo psub: Not inside of command substitution >&2
- return 1
- end
-diff --git a/share/tools/web_config/sample_prompts/classic_git.fish b/share/tools/web_config/sample_prompts/classic_git.fish
-index 39f3ab8..601fa19 100644
---- a/share/tools/web_config/sample_prompts/classic_git.fish
-+++ b/share/tools/web_config/sample_prompts/classic_git.fish
-@@ -17,25 +17,25 @@ function fish_prompt --description 'Write out the prompt'
- set -g __fish_classic_git_functions_defined
-
- function __fish_repaint_user --on-variable fish_color_user --description "Event handler, repaint when fish_color_user changes"
-- if status --is-interactive
-+ if builtin status --is-interactive
- commandline -f repaint ^/dev/null
- end
- end
--
-+
- function __fish_repaint_host --on-variable fish_color_host --description "Event handler, repaint when fish_color_host changes"
-- if status --is-interactive
-+ if builtin status --is-interactive
- commandline -f repaint ^/dev/null
- end
- end
--
-+
- function __fish_repaint_status --on-variable fish_color_status --description "Event handler; repaint when fish_color_status changes"
-- if status --is-interactive
-+ if builtin status --is-interactive
- commandline -f repaint ^/dev/null
- end
- end
-
- function __fish_repaint_bind_mode --on-variable fish_key_bindings --description "Event handler; repaint when fish_key_bindings changes"
-- if status --is-interactive
-+ if builtin status --is-interactive
- commandline -f repaint ^/dev/null
- end
- end
-diff --git a/tests/test_util.fish b/tests/test_util.fish
-index 22744b3..576dbc4 100644
---- a/tests/test_util.fish
-+++ b/tests/test_util.fish
-@@ -4,7 +4,7 @@
- if test "$argv[1]" = (status -f)
- echo 'test_util.fish requires sourcing script as argument to `source`' >&2
- echo 'use `source test_util.fish (status -f); or exit`' >&2
-- status --print-stack-trace >&2
-+ builtin status --print-stack-trace >&2
- exit 1
- end
-
diff --git a/pkgs/shells/fish/command-not-found.patch b/pkgs/shells/fish/command-not-found.patch
deleted file mode 100644
index aaca001dcb6..00000000000
--- a/pkgs/shells/fish/command-not-found.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/share/functions/__fish_config_interactive.fish b/share/functions/__fish_config_interactive.fish
-index c3864a8..a12ac4d 100644
---- a/share/functions/__fish_config_interactive.fish
-+++ b/share/functions/__fish_config_interactive.fish
-@@ -230,7 +230,7 @@ function __fish_config_interactive -d "Initializations that should be performed
- # Check for NixOS handler
- else if test -f /run/current-system/sw/bin/command-not-found
- function __fish_command_not_found_handler --on-event fish_command_not_found
-- /run/current-system/sw/bin/command-not-found $argv[1]
-+ /run/current-system/sw/bin/command-not-found $argv
- end
- # Ubuntu Feisty places this command in the regular path instead
- else if type -q -p command-not-found
diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix
index 8916cca0f04..6dd8d5290a4 100644
--- a/pkgs/shells/fish/default.nix
+++ b/pkgs/shells/fish/default.nix
@@ -1,68 +1,83 @@
-{ stdenv, fetchurl, ncurses, nettools, python, which, groff, gettext, man_db,
- bc, libiconv, coreutils, gnused, kbd, utillinux, glibc }:
+{ stdenv, fetchurl, coreutils, utillinux,
+ nettools, kbd, bc, which, gnused, gnugrep,
+ groff, man-db, glibc, libiconv, pcre2,
+ gettext, ncurses, python
+}:
+
+with stdenv.lib;
stdenv.mkDerivation rec {
name = "fish-${version}";
- version = "2.2.0";
+ version = "2.3.0";
- patches = [ ./etc_config.patch ./builtin_status.patch ./command-not-found.patch ];
+ patches = [ ./etc_config.patch ];
src = fetchurl {
url = "http://fishshell.com/files/${version}/${name}.tar.gz";
- sha256 = "0ympqz7llmf0hafxwglykplw6j5cz82yhlrw50lw4bnf2kykjqx7";
+ sha256 = "1ralmp7lavdl0plc09ppm232aqsn0crxx6m3hgaa06ibam3sqawi";
};
- buildInputs = [ ncurses libiconv ];
+ buildInputs = [ ncurses libiconv pcre2 ];
+ configureFlags = [ "--without-included-pcre2" ];
# Required binaries during execution
# Python: Autocompletion generated from manpages and config editing
- propagatedBuildInputs = [ python which groff gettext ]
- ++ stdenv.lib.optional (!stdenv.isDarwin) man_db
- ++ [ bc coreutils ];
+ propagatedBuildInputs = [
+ coreutils gnugrep gnused bc
+ python which groff gettext
+ ] ++ optional (!stdenv.isDarwin) man-db;
postInstall = ''
- sed -e "s|expr|${coreutils}/bin/expr|" \
- '' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
- -e "s|if which unicode_start|if true|" \
- '' + stdenv.lib.optionalString stdenv.isLinux ''
- -e "s|unicode_start|${kbd}/bin/unicode_start|" \
- '' + ''
- -i "$out/etc/fish/config.fish"
- sed -e "s|bc|${bc}/bin/bc|" \
- -e "s|/usr/bin/seq|${coreutils}/bin/seq|" \
- -i "$out/share/fish/functions/seq.fish" \
+ sed -r "s|command grep|command ${gnugrep}/bin/grep|" \
+ -i "$out/share/fish/functions/grep.fish"
+ sed -e "s|bc|${bc}/bin/bc|" \
+ -e "s|/usr/bin/seq|${coreutils}/bin/seq|" \
+ -i "$out/share/fish/functions/seq.fish" \
"$out/share/fish/functions/math.fish"
- sed -i "s|which |${which}/bin/which |" "$out/share/fish/functions/type.fish"
- sed -e "s|\|cut|\|${coreutils}/bin/cut|" -i "$out/share/fish/functions/fish_prompt.fish"
- sed -i "s|nroff |${groff}/bin/nroff |" "$out/share/fish/functions/__fish_print_help.fish"
- sed -e "s|gettext |${gettext}/bin/gettext |" \
- -e "s|which |${which}/bin/which |" \
+ sed -i "s|which |${which}/bin/which |" \
+ "$out/share/fish/functions/type.fish"
+ sed -e "s|\|cut|\|${coreutils}/bin/cut|" \
+ -i "$out/share/fish/functions/fish_prompt.fish"
+ sed -e "s|gettext |${gettext}/bin/gettext |" \
+ -e "s|which |${which}/bin/which |" \
-i "$out/share/fish/functions/_.fish"
- sed -e "s|uname|${coreutils}/bin/uname|" \
- -i "$out/share/fish/functions/__fish_pwd.fish" \
+ sed -e "s|uname|${coreutils}/bin/uname|" \
+ -i "$out/share/fish/functions/__fish_pwd.fish" \
"$out/share/fish/functions/prompt_pwd.fish"
- sed -e "s|sed |${gnused}/bin/sed |" \
- -i "$out/share/fish/functions/alias.fish" \
+ sed -e "s|sed |${gnused}/bin/sed |" \
+ -i "$out/share/fish/functions/alias.fish" \
"$out/share/fish/functions/prompt_pwd.fish"
- substituteInPlace "$out/share/fish/functions/fish_default_key_bindings.fish" \
- --replace "clear;" "${ncurses.out}/bin/clear;"
- '' + stdenv.lib.optionalString stdenv.isLinux ''
- substituteInPlace "$out/share/fish/functions/__fish_print_help.fish" \
- --replace "| ul" "| ${utillinux}/bin/ul"
-
- for cur in $out/share/fish/functions/*.fish; do
- substituteInPlace "$cur" --replace "/usr/bin/getent" "${glibc.bin}/bin/getent"
- done
- '' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
- sed -i "s|(hostname\||(${nettools}/bin/hostname\||" "$out/share/fish/functions/fish_prompt.fish"
- sed -i "s|Popen(\['manpath'|Popen(\['${man_db}/bin/manpath'|" "$out/share/fish/tools/create_manpage_completions.py"
- sed -i "s|command manpath|command ${man_db}/bin/manpath|" "$out/share/fish/functions/man.fish"
- '' + ''
+ sed -i "s|nroff |${groff}/bin/nroff |" \
+ "$out/share/fish/functions/__fish_print_help.fish"
sed -i "s|/sbin /usr/sbin||" \
"$out/share/fish/functions/__fish_complete_subcommand_root.fish"
+ sed -e "s|clear;|${ncurses.out}/bin/clear;|" \
+ -i "$out/share/fish/functions/fish_default_key_bindings.fish" \
+
+ '' + optionalString stdenv.isLinux ''
+ sed -e "s| ul| ${utillinux}/bin/ul|" \
+ -i "$out/share/fish/functions/__fish_print_help.fish"
+ for cur in $out/share/fish/functions/*.fish; do
+ sed -e "s|/usr/bin/getent|${glibc.bin}/bin/getent|" \
+ -i "$cur"
+ done
+
+ '' + optionalString (!stdenv.isDarwin) ''
+ sed -i "s|(hostname\||(${nettools}/bin/hostname\||" \
+ "$out/share/fish/functions/fish_prompt.fish"
+ sed -i "s|Popen(\['manpath'|Popen(\['${man-db}/bin/manpath'|" \
+ "$out/share/fish/tools/create_manpage_completions.py"
+ sed -i "s|command manpath|command ${man-db}/bin/manpath|" \
+ "$out/share/fish/functions/man.fish"
+ '' + ''
+ tee -a $out/share/fish/config.fish << EOF
# make fish pick up completions from nix profile
- echo "set fish_complete_path (echo \$NIX_PROFILES | tr ' ' '\n')\"/share/fish/vendor_completions.d\" \$fish_complete_path" >> $out/share/fish/config.fish
+ 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
+ end
+ EOF
'';
meta = with stdenv.lib; {
diff --git a/pkgs/shells/fish/etc_config.patch b/pkgs/shells/fish/etc_config.patch
index c48e734cc90..c0098c05812 100644
--- a/pkgs/shells/fish/etc_config.patch
+++ b/pkgs/shells/fish/etc_config.patch
@@ -1,17 +1,12 @@
-commit 0ec07a7018bd69513b0bca6e2f22dbf8575a5b5e
-Author: Jakob Gillich
-Date: Fri Dec 25 01:59:29 2015 +0100
-
- load /etc/fish/config.fish if it exists
-
diff --git a/etc/config.fish b/etc/config.fish
-index 0683f40..33f4da7 100644
+index 9be6f07..61c9ae2 100644
--- a/etc/config.fish
+++ b/etc/config.fish
-@@ -37,3 +37,6 @@ if status --is-login
- end
- end
-
+@@ -12,3 +12,7 @@
+ # if status --is-interactiv
+ # ...
+ # end
++
+if test -f /etc/fish/config.fish
+ source /etc/fish/config.fish
+end
diff --git a/pkgs/stdenv/cygwin/rebase-i686.sh b/pkgs/stdenv/cygwin/rebase-i686.sh
index e5695c75a96..e97dc66c0ad 100644
--- a/pkgs/stdenv/cygwin/rebase-i686.sh
+++ b/pkgs/stdenv/cygwin/rebase-i686.sh
@@ -1,6 +1,9 @@
postFixupHooks+=(_cygwinFixAutoImageBase)
_cygwinFixAutoImageBase() {
+ if [ "$dontRebase" == 1 ]; then
+ return
+ fi
find $out -name "*.dll" | while read DLL; do
if [ -f /etc/rebasenix.nextbase ]; then
NEXTBASE="$(From 7d1d3d38cb66b02c062de77847e3c0ecd842366c Mon Sep 17 00:00:00 2001
-From: Pavel Raiskup
-Date: Mon, 4 Aug 2014 13:19:49 +0200
-Subject: [PATCH] xattrs: fix bug in configure
-
-Be careful to define HAVE_XATTRS when not all needed xattr-related
-functions are properly defined either in libc or libattr.
-
-Reported independently by Denis Excoffier and Dominyk Tille.
-
-* acinclude.m4 (TAR_HEADERS_ATTR_XATTR_H): Check for each xattr
-function separately. Don't AC_CHECK_LIB (LIBS is filled by
-AC_SEARCH_LIBS when necessary).
-* lib/xattr-at.c: Do not build when HAVE_XATTRS is not defined.
-* src/Makefile.am: The LDADD -lattr was redundant.
----
- acinclude.m4 | 42 ++++++++++++++----------------------------
- lib/xattr-at.c | 7 +++++++
- src/Makefile.am | 4 ----
- 3 files changed, 21 insertions(+), 32 deletions(-)
-
-diff --git a/acinclude.m4 b/acinclude.m4
-index 3b28b3b..db0bbc7 100644
---- a/acinclude.m4
-+++ b/acinclude.m4
-@@ -40,37 +40,23 @@ AC_DEFUN([TAR_HEADERS_ATTR_XATTR_H],
- # First check for
- AC_CHECK_HEADERS([sys/xattr.h])
- AM_CONDITIONAL([TAR_COND_XATTR_H],[test "$ac_cv_header_sys_xattr_h" = yes])
-- AM_CONDITIONAL([TAR_LIB_ATTR],[false])
-- if test "$ac_cv_header_sys_xattr_h" = yes; then
-- AC_CHECK_FUNCS(getxattr fgetxattr lgetxattr \
-- setxattr fsetxattr lsetxattr \
-- listxattr flistxattr llistxattr,
-- # only when functions are present
-- AC_DEFINE([HAVE_SYS_XATTR_H], [1],
-- [define to 1 if we have header])
-- if test "$with_xattrs" != no; then
-- AC_DEFINE([HAVE_XATTRS],,[Define when we have working linux xattrs.])
-- fi
-- )
-- fi
--
-- # If is not found, then check for
- if test "$ac_cv_header_sys_xattr_h" != yes; then
- AC_CHECK_HEADERS([attr/xattr.h])
- AM_CONDITIONAL([TAR_COND_XATTR_H],[test "$ac_cv_header_attr_xattr_h" = yes])
-- AC_CHECK_LIB([attr],[fgetxattr])
-- AM_CONDITIONAL([TAR_LIB_ATTR],[test "$ac_cv_lib_attr_fgetxattr" = yes])
-- if test "$ac_cv_header_attr_xattr_h" = yes; then
-- AC_CHECK_FUNCS(getxattr fgetxattr lgetxattr \
-- setxattr fsetxattr lsetxattr \
-- listxattr flistxattr llistxattr,
-- # only when functions are present
-- AC_DEFINE([HAVE_ATTR_XATTR_H], [1],
-- [define to 1 if we have header])
-- if test "$with_xattrs" != no; then
-- AC_DEFINE([HAVE_XATTRS],,[Define when we have working linux xattrs.])
-- fi
-- )
-+ fi
-+
-+ if test "$with_xattrs" != no; then
-+ for i in getxattr fgetxattr lgetxattr \
-+ setxattr fsetxattr lsetxattr \
-+ listxattr flistxattr llistxattr
-+ do
-+ AC_SEARCH_LIBS($i, attr)
-+ eval found=\$ac_cv_search_$i
-+ test "$found" = "no" && break
-+ done
-+
-+ if test "$found" != no; then
-+ AC_DEFINE([HAVE_XATTRS],,[Define when we have working linux xattrs.])
- fi
- fi
- ])
-diff --git a/lib/xattr-at.c b/lib/xattr-at.c
-index 443ccae..009bde5 100644
---- a/lib/xattr-at.c
-+++ b/lib/xattr-at.c
-@@ -18,6 +18,11 @@
-
- #include
-
-+/* Temporarily don't build. We are unable to build on (probably not only)
-+ darwin due to lack of l*xattr callbacks (XATTR_NOFOLLOW is alternative) and
-+ different function definitions. */
-+#ifdef HAVE_XATTRS
-+
- #include "xattr-at.h"
- #include "openat.h"
-
-@@ -108,3 +113,5 @@
- #undef AT_FUNC_RESULT
- #undef AT_FUNC_POST_FILE_PARAM_DECLS
- #undef AT_FUNC_POST_FILE_ARGS
-+
-+#endif
-diff --git a/src/Makefile.am b/src/Makefile.am
-index 82b2d46..42daaef 100644
---- a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -52,7 +52,3 @@ AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
- LDADD = ../lib/libtar.a ../gnu/libgnu.a $(LIBINTL) $(LIBICONV)
-
- tar_LDADD = $(LIBS) $(LDADD) $(LIB_CLOCK_GETTIME) $(LIB_EACCESS) $(LIB_SELINUX)
--
--if TAR_LIB_ATTR
--tar_LDADD += -lattr
--endif
---
-1.9.3
-
diff --git a/pkgs/tools/archivers/p7zip/default.nix b/pkgs/tools/archivers/p7zip/default.nix
index a0f3bcb0ebb..63487b46034 100644
--- a/pkgs/tools/archivers/p7zip/default.nix
+++ b/pkgs/tools/archivers/p7zip/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
makeFlagsArray=(DEST_HOME=$out)
buildFlags=all3
'' + stdenv.lib.optionalString stdenv.isDarwin ''
- cp makefile.macosx_64bits makefile.machine
+ cp makefile.macosx_llvm_64bits makefile.machine
'';
enableParallelBuilding = true;
diff --git a/pkgs/tools/backup/attic/default.nix b/pkgs/tools/backup/attic/default.nix
index 4f659428c00..a639dbb2fd2 100644
--- a/pkgs/tools/backup/attic/default.nix
+++ b/pkgs/tools/backup/attic/default.nix
@@ -15,7 +15,7 @@ python3Packages.buildPythonApplication rec {
[ cython msgpack openssl acl llfuse ];
preConfigure = ''
- export ATTIC_OPENSSL_PREFIX="${openssl}"
+ export ATTIC_OPENSSL_PREFIX="${openssl.dev}"
substituteInPlace setup.py --replace "version=versioneer.get_version()" "version='${version}'"
'';
diff --git a/pkgs/tools/backup/bacula/default.nix b/pkgs/tools/backup/bacula/default.nix
index 8d586e5cb1f..374122814c5 100644
--- a/pkgs/tools/backup/bacula/default.nix
+++ b/pkgs/tools/backup/bacula/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optional (!stdenv.isDarwin) acl;
configureFlags = [
- "--with-sqlite3=${sqlite}"
+ "--with-sqlite3=${sqlite.dev}"
"--with-postgresql=${postgresql}"
];
diff --git a/pkgs/tools/backup/bareos/default.nix b/pkgs/tools/backup/bareos/default.nix
index 5a7c35e460f..cf44d0e9c26 100644
--- a/pkgs/tools/backup/bareos/default.nix
+++ b/pkgs/tools/backup/bareos/default.nix
@@ -50,13 +50,13 @@ stdenv.mkDerivation rec {
"--enable-dynamic-cats-backends"
"--enable-sql-pooling"
"--enable-scsi-crypto"
- ] ++ optionals (readline != null) [ "--disable-conio" "--enable-readline" "--with-readline=${readline}" ]
+ ] ++ optionals (readline != null) [ "--disable-conio" "--enable-readline" "--with-readline=${readline.dev}" ]
++ optional (python != null) "--with-python=${python}"
- ++ optional (openssl != null) "--with-openssl=${openssl}"
- ++ optional (sqlite != null) "--with-sqlite3=${sqlite}"
+ ++ optional (openssl != null) "--with-openssl=${openssl.dev}"
+ ++ optional (sqlite != null) "--with-sqlite3=${sqlite.dev}"
++ optional (postgresql != null) "--with-postgresql=${postgresql}"
++ optional (libmysql != null) "--with-mysql=${libmysql}"
- ++ optional (zlib != null) "--with-zlib=${zlib}"
+ ++ optional (zlib != null) "--with-zlib=${zlib.dev}"
++ optional (lzo != null) "--with-lzo=${lzo}"
++ optional (jansson != null) "--with-jansson=${jansson}"
++ optional (acl != null) "--enable-acl"
diff --git a/pkgs/tools/backup/borg/default.nix b/pkgs/tools/backup/borg/default.nix
index 95c0c26f30b..a43a678cd7a 100644
--- a/pkgs/tools/backup/borg/default.nix
+++ b/pkgs/tools/backup/borg/default.nix
@@ -2,12 +2,14 @@
python3Packages.buildPythonApplication rec {
name = "borgbackup-${version}";
- version = "1.0.2";
+ version = "1.0.3";
namePrefix = "";
src = fetchurl {
- url = "mirror://pypi/b/borgbackup/borgbackup-${version}.tar.gz";
- sha256 = "1myz10pwxnac9z59gw1w3xjhz6ghx03vngpl97ca527pj0r39shi";
+ url = "https://pypi.python.org/packages/"
+ + "c9/c6/1efc338724b054d4d264dfeadfcba11cefa6c3c50f474cec91b8f0c21d3a/"
+ + "${name}.tar.gz";
+ sha256 = "0kzr0xa00yjfxx27aipli67qg5ffj52yrnqhpf3sdy6k5wzwaybs";
};
nativeBuildInputs = with python3Packages; [
@@ -21,7 +23,7 @@ python3Packages.buildPythonApplication rec {
]);
preConfigure = ''
- export BORG_OPENSSL_PREFIX="${openssl}"
+ export BORG_OPENSSL_PREFIX="${openssl.dev}"
export BORG_LZ4_PREFIX="${lz4}"
'';
diff --git a/pkgs/tools/backup/bup/default.nix b/pkgs/tools/backup/bup/default.nix
index b4efe9fb441..b7136c16fb3 100644
--- a/pkgs/tools/backup/bup/default.nix
+++ b/pkgs/tools/backup/bup/default.nix
@@ -1,5 +1,7 @@
-{ stdenv, fetchzip, fetchurl, python, pyxattr, pylibacl, setuptools
-, fuse, git, perl, pandoc, makeWrapper, par2cmdline, par2Support ? false }:
+{ stdenv, fetchFromGitHub, fetchurl, makeWrapper
+, perl, pandoc, pythonPackages, git
+, par2cmdline ? null, par2Support ? false
+}:
assert par2Support -> par2cmdline != null;
@@ -10,27 +12,28 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "bup-${version}";
- src = fetchzip {
- url = "https://github.com/bup/bup/archive/${version}.tar.gz";
+ src = fetchFromGitHub {
+ repo = "bup";
+ owner = "bup";
+ rev = version;
sha256 = "0g7b0xl3kg0z6rn81fvzl1xnvva305i7pjih2hm68mcj0adk3v0d";
};
- buildInputs = [ python git ];
+ buildInputs = [ git pythonPackages.python ];
nativeBuildInputs = [ pandoc perl makeWrapper ];
- darwin_10_10_patch = fetchurl {
+ patches = optional stdenv.isDarwin (fetchurl {
url = "https://github.com/bup/bup/commit/75d089e7cdb7a7eb4d69c352f56dad5ad3aa1f97.diff";
sha256 = "05kp47p30a45ip0fg090vijvzc7ijr0alc3y8kjl6bvv3gliails";
- };
+ name = "darwin_10_10.patch";
+ });
postPatch = ''
patchShebangs .
substituteInPlace Makefile --replace "-Werror" ""
- substituteInPlace Makefile --replace "./format-subst.pl" "perl ./format-subst.pl"
+ substituteInPlace Makefile --replace "./format-subst.pl" "${perl}/bin/perl ./format-subst.pl"
'' + optionalString par2Support ''
substituteInPlace cmd/fsck-cmd.py --replace "['par2'" "['${par2cmdline}/bin/par2'"
- '' + optionalString (elem stdenv.system platforms.darwin) ''
- patch -p1 < ${darwin_10_10_patch}
'';
dontAddPrefix = true;
@@ -42,24 +45,24 @@ stdenv.mkDerivation rec {
"LIBDIR=$(out)/lib/bup"
];
- postInstall = optionalString (elem stdenv.system platforms.linux) ''
- wrapProgram $out/bin/bup --prefix PYTHONPATH : \
- ${stdenv.lib.concatStringsSep ":"
- (map (path: "$(toPythonPath ${path})") [ pyxattr pylibacl setuptools fuse ])}
+ postInstall = ''
+ wrapProgram $out/bin/bup \
+ --prefix PATH : ${git}/bin \
+ --prefix PYTHONPATH : ${concatStringsSep ":" (map (x: "$(toPythonPath ${x})")
+ (with pythonPackages; [ pyxattr pylibacl setuptools fuse tornado ]))}
'';
meta = {
homepage = "https://github.com/bup/bup";
- description = "efficient file backup system based on the git packfile format";
- license = stdenv.lib.licenses.gpl2Plus;
+ description = "Efficient file backup system based on the git packfile format";
+ license = licenses.gpl2Plus;
longDescription = ''
Highly efficient file backup system based on the git packfile format.
Capable of doing *fast* incremental backups of virtual machine images.
'';
- hydraPlatforms = stdenv.lib.platforms.linux;
- maintainers = with stdenv.lib.maintainers; [ muflax ];
-
+ hydraPlatforms = platforms.linux;
+ maintainers = with maintainers; [ muflax ];
};
}
diff --git a/pkgs/tools/backup/duplicity/default.nix b/pkgs/tools/backup/duplicity/default.nix
index e160c62adb5..da847c0d31b 100644
--- a/pkgs/tools/backup/duplicity/default.nix
+++ b/pkgs/tools/backup/duplicity/default.nix
@@ -3,14 +3,14 @@
}:
let
- version = "0.7.06";
+ version = "0.7.07.1";
in
stdenv.mkDerivation {
name = "duplicity-${version}";
src = fetchurl {
url = "http://code.launchpad.net/duplicity/0.7-series/${version}/+download/duplicity-${version}.tar.gz";
- sha256 = "133zdi1rbiacvzjys7q3vjm7x84kmr51bsgs037rjhw9vdg5jx80";
+ sha256 = "594c6d0e723e56f8a7114d57811c613622d535cafdef4a3643a4d4c89c1904f8";
};
installPhase = ''
diff --git a/pkgs/tools/backup/mt-st/default.nix b/pkgs/tools/backup/mt-st/default.nix
new file mode 100644
index 00000000000..0b7b7469af1
--- /dev/null
+++ b/pkgs/tools/backup/mt-st/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+ name = "mt-st-1.3";
+
+ src = fetchurl {
+ url = "https://github.com/iustin/mt-st/releases/download/${name}/${name}.tar.gz";
+ sha256 = "b552775326a327cdcc076c431c5cbc4f4e235ac7c41aa931ad83f94cccb9f6de";
+ };
+
+ installFlags = [ "PREFIX=$(out)" "EXEC_PREFIX=$(out)" ];
+
+ meta = {
+ description = "Magnetic Tape control tools for Linux";
+ longDescription = ''
+ Fork of the standard "mt" tool with additional Linux-specific IOCTLs.
+ '';
+ homepage = https://github.com/iustin/mt-st;
+ license = stdenv.lib.licenses.gpl2;
+ maintainers = [ stdenv.lib.maintainers.redvers ];
+ platforms = stdenv.lib.platforms.linux;
+ };
+}
diff --git a/pkgs/tools/backup/mtx/default.nix b/pkgs/tools/backup/mtx/default.nix
new file mode 100644
index 00000000000..bc1f584f1c0
--- /dev/null
+++ b/pkgs/tools/backup/mtx/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+ name = "mtx-1.3.12";
+
+ src = fetchurl {
+ url = "mirror://gentoo/distfiles/${name}.tar.gz";
+ sha256 = "0261c5e90b98b6138cd23dadecbc7bc6e2830235145ed2740290e1f35672d843";
+ };
+
+ doCheck = false;
+
+ meta = {
+ description = "Media Changer Tools";
+ longDescription = ''
+ The mtx command controls single or multi-drive SCSI media changers such as
+ tape changers, autoloaders, tape libraries, or optical media jukeboxes. It
+ can also be used with media changers that use the 'ATTACHED' API, presuming
+ that they properly report the MChanger bit as required by the SCSI T-10 SMC
+ specification.
+ '';
+ homepage = https://sourceforge.net/projects/mtx/;
+ license = stdenv.lib.licenses.gpl2;
+ maintainers = [ stdenv.lib.maintainers.redvers ];
+ platforms = stdenv.lib.platforms.all;
+ };
+}
diff --git a/pkgs/tools/backup/partimage/default.nix b/pkgs/tools/backup/partimage/default.nix
index 37d99a115f8..e73e71da51a 100644
--- a/pkgs/tools/backup/partimage/default.nix
+++ b/pkgs/tools/backup/partimage/default.nix
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
url = mirror://sourceforge/partimage/partimage-0.6.9.tar.bz2;
sha256 = "0db6xiphk6xnlpbxraiy31c5xzj0ql6k4rfkmqzh665yyj0nqfkm";
};
- configureFlags = "--with-ssl-headers=${openssl}/include/openssl";
+ configureFlags = "--with-ssl-headers=${openssl.dev}/include/openssl";
buildInputs = [bzip2 zlib newt newt openssl pkgconfig slang
# automake autoconf libtool gettext
diff --git a/pkgs/tools/bluetooth/bluez-tools/default.nix b/pkgs/tools/bluetooth/bluez-tools/default.nix
index 4469ba67b3b..890220d2051 100644
--- a/pkgs/tools/bluetooth/bluez-tools/default.nix
+++ b/pkgs/tools/bluetooth/bluez-tools/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
src = fetchgit {
inherit rev;
url = "https://github.com/khvzak/bluez-tools.git";
- sha256 = "3f264d14ba8ef1b0d3c45e621a5c685035a60d789da64f64d25055047f45c55b";
+ sha256 = "0ylk10gfqlwmiz1k355axdhraixc9zym9f87xhag23934x64m8wa";
};
preConfigure = ''
./autogen.sh
diff --git a/pkgs/tools/filesystems/netatalk/default.nix b/pkgs/tools/filesystems/netatalk/default.nix
index 7e4ea032bb3..e3c608285fc 100644
--- a/pkgs/tools/filesystems/netatalk/default.nix
+++ b/pkgs/tools/filesystems/netatalk/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec{
configureFlags = [
"--with-bdb=${db}"
- "--with-openssl=${openssl}"
+ "--with-openssl=${openssl.dev}"
"--with-lockfile=/run/lock/netatalk"
"--localstatedir=/var/lib"
];
diff --git a/pkgs/tools/filesystems/s3backer/default.nix b/pkgs/tools/filesystems/s3backer/default.nix
index 89e49c9586c..f3f8877db2c 100644
--- a/pkgs/tools/filesystems/s3backer/default.nix
+++ b/pkgs/tools/filesystems/s3backer/default.nix
@@ -1,18 +1,30 @@
-{ stdenv, fetchurl, pkgconfig, fuse, curl, expat }:
+{ stdenv, fetchFromGitHub
+, autoreconfHook, pkgconfig
+, fuse, curl, expat }:
stdenv.mkDerivation rec {
- name = "s3backer-1.3.1";
+ name = "s3backer-${version}";
+ version = "1.4.2";
- src = fetchurl {
- url = "http://s3backer.googlecode.com/files/${name}.tar.gz";
- sha256 = "1dmdvhb7mcn0fdcljpdyvfynhqrsnrg50dgl1706i8f1831lgk1r";
+ src = fetchFromGitHub {
+ sha256 = "0b9vmykrfpzs9is31pqb8xvgjraghnax1ph2jkbib1ya0vhxm8dj";
+ rev = version;
+ repo = "s3backer";
+ owner = "archiecobbs";
};
- buildInputs = [ pkgconfig fuse curl expat ];
+ nativeBuildInputs = [ autoreconfHook pkgconfig ];
+ buildInputs = [ fuse curl expat ];
- meta = {
+ autoreconfPhase = ''
+ patchShebangs ./autogen.sh
+ ./autogen.sh
+ '';
+
+ meta = with stdenv.lib; {
homepage = http://code.google.com/p/s3backer/;
description = "FUSE-based single file backing store via Amazon S3";
- license = stdenv.lib.licenses.gpl2Plus;
+ license = licenses.gpl2Plus;
+ maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/tools/filesystems/xtreemfs/default.nix b/pkgs/tools/filesystems/xtreemfs/default.nix
index bbd4b185d5e..fb491948a47 100644
--- a/pkgs/tools/filesystems/xtreemfs/default.nix
+++ b/pkgs/tools/filesystems/xtreemfs/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
export BOOST_INCLUDEDIR=${boost.dev}/include
export BOOST_LIBRARYDIR=${boost.out}/lib
- export OPENSSL_ROOT_DIR=${openssl}
+ export OPENSSL_ROOT_DIR=${openssl.dev}
substituteInPlace cpp/cmake/FindValgrind.cmake \
--replace "/usr/local" "${valgrind}"
diff --git a/pkgs/tools/graphics/asymptote/default.nix b/pkgs/tools/graphics/asymptote/default.nix
index 971a7e973cc..7d191ccaba5 100644
--- a/pkgs/tools/graphics/asymptote/default.nix
+++ b/pkgs/tools/graphics/asymptote/default.nix
@@ -40,7 +40,7 @@ stdenv.mkDerivation {
configureFlags="$configureFlags --with-latex=$out/share/texmf/tex/latex --with-context=$out/share/texmf/tex/context/third"
'';
- NIX_CFLAGS_COMPILE = [ "-I${boehmgc}/include/gc" ];
+ NIX_CFLAGS_COMPILE = [ "-I${boehmgc.dev}/include/gc" ];
postInstall = ''
mv -v "$out/share/info/asymptote/"*.info $out/share/info/
diff --git a/pkgs/tools/graphics/bins/bins_edit-isa.patch b/pkgs/tools/graphics/bins/bins_edit-isa.patch
new file mode 100644
index 00000000000..68aad10ddff
--- /dev/null
+++ b/pkgs/tools/graphics/bins/bins_edit-isa.patch
@@ -0,0 +1,20 @@
+--- a/bins_edit 2005-08-25 14:34:39.000000000 -0400
++++ b/bins_edit 2016-05-18 20:25:40.913460314 -0400
+@@ -26,7 +26,7 @@
+
+ use Getopt::Long;
+ use IO::File;
+-use UNIVERSAL qw(isa);
++use Scalar::Util 'reftype';
+
+ # XML parsing & writing
+ use XML::Grove;
+@@ -198,7 +198,7 @@
+ my $fieldValue;
+ foreach my $element
+ (@{$document->at_path('/'.$fileType.'/description')->{Contents}}) {
+- if (isa($element, 'XML::Grove::Element') && $element->{Name} eq "field") {
++ if (reftype($element) eq 'XML::Grove::Element' && $element->{Name} eq "field") {
+ $fieldName = $element->{Attributes}{'name'};
+ $fieldValue = "";
+ if ($fieldName eq $field) {
diff --git a/pkgs/tools/graphics/bins/default.nix b/pkgs/tools/graphics/bins/default.nix
new file mode 100644
index 00000000000..579ec802e09
--- /dev/null
+++ b/pkgs/tools/graphics/bins/default.nix
@@ -0,0 +1,48 @@
+{ stdenv, fetchurl, makeWrapper, perl, perlPackages }:
+
+let
+ version = "1.1.29";
+
+in
+
+#note: bins-edit-gui does not work
+
+stdenv.mkDerivation {
+ name = "bins-${version}";
+
+ src = fetchurl {
+ url = "http://download.gna.org/bins/bins-${version}.tar.gz";
+ sha256 = "0n4pcssyaic4xbk25aal0b3g0ibmi2f3gpv0gsnaq61sqipyjl94";
+ };
+
+ buildInputs = with perlPackages; [ makeWrapper perl
+ ImageSize ImageInfo PerlMagick
+ URI HTMLParser HTMLTemplate HTMLClean
+ XMLGrove XMLHandlerYAWriter
+ TextIconv TextUnaccent
+ DateTimeFormatDateParse ]; #TODO need Gtk (not Gtk2?) for bins-edit-gui
+
+ patches = [ ./bins_edit-isa.patch
+ ./hashref.patch ];
+
+ installPhase = ''
+ export DESTDIR=$out;
+ export PREFIX=.;
+
+ echo | ./install.sh
+
+ for f in bins bins_edit bins-edit-gui; do
+ substituteInPlace $out/bin/$f \
+ --replace /usr/bin/perl ${perl}/bin/perl \
+ --replace /etc/bins $out/etc/bins \
+ --replace /usr/local/share $out/share;
+ wrapProgram $out/bin/$f --set PERL5LIB "$PERL5LIB";
+ done
+ '';
+
+ meta = {
+ description = "generates static HTML photo albums";
+ homepage = http://bins.sautret.org;
+ license = stdenv.lib.licenses.gpl2;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/tools/graphics/bins/hashref.patch b/pkgs/tools/graphics/bins/hashref.patch
new file mode 100644
index 00000000000..e16d3a78c52
--- /dev/null
+++ b/pkgs/tools/graphics/bins/hashref.patch
@@ -0,0 +1,13 @@
+--- a/bins 2016-05-18 20:45:49.513330005 -0400
++++ b/bins 2016-05-18 20:58:58.957830874 -0400
+@@ -3643,8 +3643,8 @@
+
+ my @descTable;
+ foreach my $tagName (@mainFields) {
+- if (${%$hashref}{$tagName}) {
+- my $value=${%$hashref}{$tagName};
++ if (${$hashref}{$tagName}) {
++ my $value=${$hashref}{$tagName};
+ $value =~ s/'/'/g ; # in case it's used in javascript code
+ push @descTable, {DESC_FIELD_NAME => getFields($configHash)->{$tagName}->{'Name'},
+ DESC_FIELD_VALUE => $value,
diff --git a/pkgs/tools/graphics/graphviz/2.0.nix b/pkgs/tools/graphics/graphviz/2.0.nix
index 9e0eea516d3..bb548fbe93f 100644
--- a/pkgs/tools/graphics/graphviz/2.0.nix
+++ b/pkgs/tools/graphics/graphviz/2.0.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, xlibsWrapper, libpng, libjpeg, expat, libXaw
-, yacc, libtool, fontconfig, pango, gd
+, yacc, libtool, fontconfig, pango, gd, libwebp
}:
assert libpng != null && libjpeg != null && expat != null;
@@ -12,16 +12,19 @@ stdenv.mkDerivation rec {
sha256 = "39b8e1f2ba4cc1f5bdc8e39c7be35e5f831253008e4ee2c176984f080416676c";
};
- buildInputs = [pkgconfig xlibsWrapper libpng libjpeg expat libXaw yacc libtool fontconfig pango gd];
+ buildInputs = [
+ pkgconfig xlibsWrapper libpng libjpeg expat libXaw yacc
+ libtool fontconfig pango gd libwebp
+ ];
hardeningDisable = [ "format" "fortify" ];
configureFlags =
- [ "--with-pngincludedir=${libpng}/include"
+ [ "--with-pngincludedir=${libpng.dev}/include"
"--with-pnglibdir=${libpng.out}/lib"
- "--with-jpegincludedir=${libjpeg}/include"
+ "--with-jpegincludedir=${libjpeg.dev}/include"
"--with-jpeglibdir=${libjpeg.out}/lib"
- "--with-expatincludedir=${expat}/include"
+ "--with-expatincludedir=${expat.dev}/include"
"--with-expatlibdir=${expat.out}/lib"
]
++ stdenv.lib.optional (xlibsWrapper == null) "--without-x";
diff --git a/pkgs/tools/graphics/graphviz/2.32.nix b/pkgs/tools/graphics/graphviz/2.32.nix
index 4fe96328869..db8cc8219b2 100644
--- a/pkgs/tools/graphics/graphviz/2.32.nix
+++ b/pkgs/tools/graphics/graphviz/2.32.nix
@@ -20,11 +20,11 @@ stdenv.mkDerivation rec {
CPPFLAGS = stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") "-I${cairo.dev}/include/cairo";
configureFlags =
- [ "--with-pngincludedir=${libpng}/include"
+ [ "--with-pngincludedir=${libpng.dev}/include"
"--with-pnglibdir=${libpng.out}/lib"
- "--with-jpegincludedir=${libjpeg}/include"
+ "--with-jpegincludedir=${libjpeg.dev}/include"
"--with-jpeglibdir=${libjpeg.out}/lib"
- "--with-expatincludedir=${expat}/include"
+ "--with-expatincludedir=${expat.dev}/include"
"--with-expatlibdir=${expat.out}/lib"
"--with-cgraph=no"
"--with-sparse=no"
diff --git a/pkgs/tools/graphics/mscgen/default.nix b/pkgs/tools/graphics/mscgen/default.nix
index 34daae36ce9..e9301731e85 100644
--- a/pkgs/tools/graphics/mscgen/default.nix
+++ b/pkgs/tools/graphics/mscgen/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, flex, bison, gd, libpng, libjpeg, freetype, zlib }:
+{ stdenv, fetchurl, flex, bison, gd, libpng, libjpeg, freetype, zlib, libwebp }:
let
version = "0.20";
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
sha256 = "3c3481ae0599e1c2d30b7ed54ab45249127533ab2f20e768a0ae58d8551ddc23";
};
- buildInputs = [ flex bison gd libjpeg libpng freetype zlib ];
+ buildInputs = [ flex bison gd libjpeg libpng freetype zlib libwebp ];
doCheck = true;
preCheck = ''
diff --git a/pkgs/tools/graphics/netpbm/default.nix b/pkgs/tools/graphics/netpbm/default.nix
index a3a5e30d41b..3c724ccc2b8 100644
--- a/pkgs/tools/graphics/netpbm/default.nix
+++ b/pkgs/tools/graphics/netpbm/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
echo "STATICLIB_TOO = n" >> config.mk
substituteInPlace "config.mk" \
--replace "TIFFLIB = NONE" "TIFFLIB = ${libtiff.out}/lib/libtiff.so" \
- --replace "TIFFHDR_DIR =" "TIFFHDR_DIR = ${libtiff}/include"
+ --replace "TIFFHDR_DIR =" "TIFFHDR_DIR = ${libtiff.dev}/include"
'';
preBuild = ''
diff --git a/pkgs/tools/graphics/unpaper/default.nix b/pkgs/tools/graphics/unpaper/default.nix
index e199eeea132..2b64cbcc1f5 100644
--- a/pkgs/tools/graphics/unpaper/default.nix
+++ b/pkgs/tools/graphics/unpaper/default.nix
@@ -15,6 +15,7 @@ stdenv.mkDerivation rec {
homepage = https://www.flameeyes.eu/projects/unpaper;
description = "Post-processing tool for scanned sheets of paper";
license = licenses.gpl2;
+ platforms = platforms.all;
maintainers = [ maintainers.rycee ];
};
}
diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-cloudpinyin/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-cloudpinyin/default.nix
new file mode 100644
index 00000000000..acd377441e2
--- /dev/null
+++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-cloudpinyin/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl, cmake, pkgconfig, fcitx, gettext, curl }:
+
+stdenv.mkDerivation rec {
+ name = "fcitx-cloudpinyin-${version}";
+ version = "0.3.4";
+
+ src = fetchurl {
+ url = "http://download.fcitx-im.org/fcitx-cloudpinyin/${name}.tar.xz";
+ sha256 = "143x9gbswzfngvgfy77zskrzrpywj8qg2d19kisgfwfisk7yhcf1";
+ };
+
+ buildInputs = [ cmake pkgconfig fcitx gettext curl ];
+
+ preInstall = ''
+ substituteInPlace src/cmake_install.cmake \
+ --replace ${fcitx} $out
+ substituteInPlace po/cmake_install.cmake \
+ --replace ${fcitx} $out
+ '';
+
+ meta = with stdenv.lib; {
+ isFcitxEngine = true;
+ description = "A standalone module for fcitx that uses web API to provide better pinyin result";
+ homepage = https://github.com/fcitx/fcitx-cloudpinyin;
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/tools/inputmethods/fcitx/fcitx-qt5-ecm.patch b/pkgs/tools/inputmethods/fcitx/fcitx-qt5-ecm.patch
new file mode 100644
index 00000000000..8fe100dd3b2
--- /dev/null
+++ b/pkgs/tools/inputmethods/fcitx/fcitx-qt5-ecm.patch
@@ -0,0 +1,29 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index b8e729a..ebd3603 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -5,9 +5,7 @@ project(fcitx-qt5)
+ set(FcitxQt5_VERSION 1.0.0)
+ set(REQUIRED_QT_VERSION 5.1.0)
+
+-find_package(ECM 1.4.0 REQUIRED NO_MODULE)
+-
+-set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
++set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
+
+ include(GNUInstallDirs)
+ include(FeatureSummary)
+diff --git a/cmake/FindXKBCommon.cmake b/cmake/FindXKBCommon.cmake
+index a645584..de0007d 100644
+--- 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
+
diff --git a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix
index ab139bdb5a7..fc9dd1e6a25 100644
--- a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix
+++ b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, cmake, fcitx, extra-cmake-modules, qtbase }:
+{ stdenv, lib, fetchurl, cmake, fcitx, pkgconfig, qtbase, kde5 }:
stdenv.mkDerivation rec {
name = "fcitx-qt5-${version}";
@@ -9,7 +9,19 @@ stdenv.mkDerivation rec {
sha256 = "1pj1b04n8r4kl7jh1qdv0xshgzb3zrmizfa3g5h3yk589h191vwc";
};
- buildInputs = [ cmake fcitx extra-cmake-modules qtbase ];
+ # The following is to not have a dependency on kde5 so the plugin can be part of qt5LibsFun
+ postUnpack = ''
+ ${lib.concatMapStrings (f: ''
+ ln -s ${kde5.extra-cmake-modules}/share/ECM/modules/${f} $sourceRoot/cmake/
+ '')
+ [ "ECMFindModuleHelpers.cmake" "ECMGenerateHeaders.cmake"
+ "ECMPackageConfigHelpers.cmake" "ECMQueryQmake.cmake"
+ "ECMSetupVersion.cmake" "ECMVersionHeader.h.in" ]}
+ '';
+
+ patches = [ ./fcitx-qt5-ecm.patch ];
+
+ buildInputs = [ cmake fcitx pkgconfig qtbase ];
preInstall = ''
substituteInPlace platforminputcontext/cmake_install.cmake \
diff --git a/pkgs/tools/inputmethods/fcitx/wrapper.nix b/pkgs/tools/inputmethods/fcitx/wrapper.nix
index 1e1a2b76a4b..8e086f7386f 100644
--- a/pkgs/tools/inputmethods/fcitx/wrapper.nix
+++ b/pkgs/tools/inputmethods/fcitx/wrapper.nix
@@ -1,21 +1,9 @@
-{ stdenv, symlinkJoin, fcitx, fcitx-configtool, makeWrapper, plugins, kde5 }:
-
-# This is based on the pidgin-with-plugins package.
-# Users should be able to configure what plugins are used
-# by putting the following in their /etc/nixos/configuration.nix:
-# environment.systemPackages = with pkgs; [
-# (fcitx-with-plugins.override { plugins = [ fcitx-anthy ]; })
-# ]
-# Or, a normal user could use it by putting the following in his
-# ~/.nixpkgs/config.nix:
-# packageOverrides = pkgs: with pkgs; rec {
-# (fcitx-with-plugins.override { plugins = [ fcitx-anthy ]; })
-# }
+{ stdenv, symlinkJoin, fcitx, fcitx-configtool, makeWrapper, plugins, qt55 }:
symlinkJoin {
name = "fcitx-with-plugins-${fcitx.version}";
- paths = [ fcitx fcitx-configtool kde5.fcitx-qt5 ] ++ plugins;
+ paths = [ fcitx fcitx-configtool qt55.fcitx-qt5 ] ++ plugins;
buildInputs = [ makeWrapper ];
@@ -24,4 +12,3 @@ symlinkJoin {
--set FCITXDIR "$out/"
'';
}
-
diff --git a/pkgs/tools/misc/bibtool/default.nix b/pkgs/tools/misc/bibtool/default.nix
index db57eeb74e3..f6000734158 100644
--- a/pkgs/tools/misc/bibtool/default.nix
+++ b/pkgs/tools/misc/bibtool/default.nix
@@ -20,6 +20,7 @@ stdenv.mkDerivation rec {
description = "Tool for manipulating BibTeX bibliographies";
homepage = http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html;
license = licenses.gpl1;
+ platforms = platforms.all;
maintainers = [ maintainers.rycee ];
};
}
diff --git a/pkgs/tools/misc/cloc/default.nix b/pkgs/tools/misc/cloc/default.nix
index 0b5796d4ac3..2dafaca1961 100644
--- a/pkgs/tools/misc/cloc/default.nix
+++ b/pkgs/tools/misc/cloc/default.nix
@@ -1,31 +1,29 @@
-{ stdenv, fetchurl, fetchpatch, perl, AlgorithmDiff, RegexpCommon }:
+{ stdenv, fetchFromGitHub, makeWrapper, perl, AlgorithmDiff, RegexpCommon }:
stdenv.mkDerivation rec {
-
name = "cloc-${version}";
+ version = "1.66";
- version = "1.64";
-
- src = fetchurl {
- url = "mirror://sourceforge/cloc/cloc-${version}.tar.gz";
- sha256 = "1w3mz69h2i7pscvi9q7yp7wimds8g38c5ph78cj5pvjl5wa035rh";
+ src = fetchFromGitHub {
+ owner = "AlDanial";
+ repo = "cloc";
+ rev = "v${version}";
+ sha256 = "1xj6d8x8zwijym5wznm0k1478z7zx3bfjsx20r3aqb1vhkvcjsm9";
};
- patches = [ (fetchpatch {
- name = "perl-5.22.patch";
- url = "https://bugs.archlinux.org/task/45494?getfile=13174";
- sha256 = "1xxwqjy2q2fdza7kfp9ld0yzljkdsrgm8a9pwnmx5q4adigcjjsz";
- }) ];
+ sourceRoot = "cloc-v${version}-src/Unix";
- buildInputs = [ perl AlgorithmDiff RegexpCommon ];
+ buildInputs = [ makeWrapper perl AlgorithmDiff RegexpCommon ];
makeFlags = [ "prefix=" "DESTDIR=$(out)" "INSTALL=install" ];
+ postFixup = "wrapProgram $out/bin/cloc --prefix PERL5LIB : $PERL5LIB";
+
meta = {
description = "A program that counts lines of source code";
- homepage = http://cloc.sourceforge.net;
+ homepage = https://github.com/AlDanial/cloc;
license = stdenv.lib.licenses.gpl2;
+ platforms = stdenv.lib.platforms.all;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
};
-
}
diff --git a/pkgs/tools/misc/dtach/default.nix b/pkgs/tools/misc/dtach/default.nix
index 000f6cd0f93..0367ab53835 100644
--- a/pkgs/tools/misc/dtach/default.nix
+++ b/pkgs/tools/misc/dtach/default.nix
@@ -1,15 +1,14 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "dtach-0.8";
+ name = "dtach-${version}";
+ version = "0.9";
src = fetchurl {
- url = "mirror://sourceforge/project/dtach/dtach/0.8/dtach-0.8.tar.gz";
- sha256 = "16614ebddf8ab2811d3dc0e7f329c7de88929ac6a9632d4cb4aef7fe11b8f2a9";
+ url = "mirror://sourceforge/project/dtach/dtach/${version}/${name}.tar.gz";
+ sha256 = "1wwj2hlngi8qn2pisvhyfxxs8gyqjlgrrv5lz91w8ly54dlzvs9j";
};
- patches = [ ./fix-CVE-2012-3368.patch ];
-
installPhase = ''
mkdir -p $out/bin
cp dtach $out/bin/dtach
@@ -19,12 +18,14 @@ stdenv.mkDerivation rec {
homepage = http://dtach.sourceforge.net/;
description = "A program that emulates the detach feature of screen";
- longDescription = ''dtach is a tiny program that emulates the
- detach feature of screen, allowing you to run a program in an
- environment that is protected from the controlling terminal and
- attach to it later. dtach does not keep track of the contents of
- the screen, and thus works best with programs that know how to
- redraw themselves.'';
+ longDescription = ''
+ dtach is a tiny program that emulates the detach feature of
+ screen, allowing you to run a program in an environment that is
+ protected from the controlling terminal and attach to it later.
+ dtach does not keep track of the contents of the screen, and
+ thus works best with programs that know how to redraw
+ themselves.
+ '';
license = stdenv.lib.licenses.gpl2Plus;
diff --git a/pkgs/tools/misc/dtach/fix-CVE-2012-3368.patch b/pkgs/tools/misc/dtach/fix-CVE-2012-3368.patch
deleted file mode 100644
index 9e556d9325f..00000000000
--- a/pkgs/tools/misc/dtach/fix-CVE-2012-3368.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-Fix error handling for read from stdin in attach.c
-
-attach.c did not correctly handle a read from stdin when read returned
-an error. The code assigned the return value of read to pkt.len (an
-unsigned char) before checking the value. This prevented the error check
-from working correctly, since an unsigned integer can never be < 0.
-
-A packet with an invalid length was then sent to the master, which then
-sent 255 bytes of garbage to the program.
-
-Fix the bug in attach.c and the unchecked packet length bug in master.c.
-
-Report and initial patch by Enrico Scholz.
-
---- a/master.c 2012/07/01 21:26:10 1.14
-+++ b/master.c 2012/07/01 21:44:34 1.15
-@@ -351,7 +351,10 @@
-
- /* Push out data to the program. */
- if (pkt.type == MSG_PUSH)
-- write(the_pty.fd, pkt.u.buf, pkt.len);
-+ {
-+ if (pkt.len <= sizeof(pkt.u.buf))
-+ write(the_pty.fd, pkt.u.buf, pkt.len);
-+ }
-
- /* Attach or detach from the program. */
- else if (pkt.type == MSG_ATTACH)
---- a/attach.c 2012/07/01 21:26:10 1.12
-+++ b/attach.c 2012/07/01 21:44:34 1.13
-@@ -237,12 +237,16 @@
- /* stdin activity */
- if (n > 0 && FD_ISSET(0, &readfds))
- {
-+ ssize_t len;
-+
- pkt.type = MSG_PUSH;
- memset(pkt.u.buf, 0, sizeof(pkt.u.buf));
-- pkt.len = read(0, pkt.u.buf, sizeof(pkt.u.buf));
-+ len = read(0, pkt.u.buf, sizeof(pkt.u.buf));
-
-- if (pkt.len <= 0)
-+ if (len <= 0)
- exit(1);
-+
-+ pkt.len = len;
- process_kbd(s, &pkt);
- n--;
- }
diff --git a/pkgs/tools/misc/fondu/default.nix b/pkgs/tools/misc/fondu/default.nix
new file mode 100644
index 00000000000..1f0b42b62b6
--- /dev/null
+++ b/pkgs/tools/misc/fondu/default.nix
@@ -0,0 +1,11 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+ version = "060102";
+ name = "fondu-${version}";
+ src = fetchurl {
+ url = "http://fondu.sourceforge.net/fondu_src-${version}.tgz";
+ sha256 = "152prqad9jszjmm4wwqrq83zk13ypsz09n02nrk1gg0fcxfm7fr2";
+ };
+ makeFlags = "DESTDIR=$(out)";
+}
diff --git a/pkgs/tools/misc/fzy/default.nix b/pkgs/tools/misc/fzy/default.nix
new file mode 100644
index 00000000000..318de542bb2
--- /dev/null
+++ b/pkgs/tools/misc/fzy/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+ name = "fzy-${version}";
+ version = "0.4";
+
+ src = fetchFromGitHub {
+ owner = "jhawthorn";
+ repo = "fzy";
+ rev = version;
+ sha256 = "1sbwy4v5kz0fcl7kzf414phxv9cppvjvfq9jqkcda4bkzqh2xgia";
+ };
+
+ makeFlags = "PREFIX=$(out)";
+
+ meta = {
+ description = "A better fuzzy finder";
+ homepage = https://github.com/jhawthorn/fzy;
+ license = stdenv.lib.licenses.mit;
+ platforms = stdenv.lib.platforms.all;
+ };
+}
diff --git a/pkgs/tools/misc/hakuneko/default.nix b/pkgs/tools/misc/hakuneko/default.nix
new file mode 100644
index 00000000000..a70f69c4783
--- /dev/null
+++ b/pkgs/tools/misc/hakuneko/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, wxGTK, openssl, curl }:
+
+stdenv.mkDerivation rec {
+ name = "hakuneko-${version}";
+ version = "1.3.12";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/hakuneko/hakuneko_${version}_src.tar.gz";
+ sha256 = "24e7281a7f68b24e5260ee17ecfa1c5a3ffec408c8ea6e0121ae6c161898b698";
+ };
+
+ preConfigure = ''
+ substituteInPlace ./configure \
+ --replace /bin/bash $shell
+ '';
+
+ buildInputs = [ wxGTK openssl curl ];
+
+ meta = {
+ description = "Manga downloader";
+ homepage = http://sourceforge.net/projects/hakuneko/;
+ license = stdenv.lib.licenses.mit;
+ platforms = stdenv.lib.platforms.linux;
+ };
+}
diff --git a/pkgs/tools/misc/heimdall/default.nix b/pkgs/tools/misc/heimdall/default.nix
index f84ccce4eb9..09018108d89 100644
--- a/pkgs/tools/misc/heimdall/default.nix
+++ b/pkgs/tools/misc/heimdall/default.nix
@@ -18,9 +18,9 @@ stdenv.mkDerivation {
'';
enableParallelBuilding = true;
cmakeFlags = [
- "-DQt5Widgets_DIR=${qt5.qtbase}/lib/cmake/Qt5Widgets"
- "-DQt5Gui_DIR=${qt5.qtbase}/lib/cmake/Qt5Gui"
- "-DQt5Core_DIR=${qt5.qtbase}/lib/cmake/Qt5Core"
+ "-DQt5Widgets_DIR=${qt5.qtbase.dev}/lib/cmake/Qt5Widgets"
+ "-DQt5Gui_DIR=${qt5.qtbase.dev}/lib/cmake/Qt5Gui"
+ "-DQt5Core_DIR=${qt5.qtbase.dev}/lib/cmake/Qt5Core"
"-DBUILD_TYPE=Release"
];
diff --git a/pkgs/tools/misc/kde-gtk-config/default.nix b/pkgs/tools/misc/kde-gtk-config/default.nix
index bf868790de2..41aaad55346 100644
--- a/pkgs/tools/misc/kde-gtk-config/default.nix
+++ b/pkgs/tools/misc/kde-gtk-config/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
cmakeFlags = ''
-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include
-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include
- -DGTK2_INCLUDE_DIRS=${gtk2}/include/gtk-2.0
+ -DGTK2_INCLUDE_DIRS=${gtk2.dev}/include/gtk-2.0
-DKDE4_LIBEXEC_INSTALL_DIR=lib/kde4/libexec
'';
diff --git a/pkgs/tools/misc/man-db/default.nix b/pkgs/tools/misc/man-db/default.nix
index d77b7ff4812..825921327e1 100644
--- a/pkgs/tools/misc/man-db/default.nix
+++ b/pkgs/tools/misc/man-db/default.nix
@@ -1,19 +1,24 @@
{ stdenv, fetchurl, pkgconfig, libpipeline, db, groff }:
-
+
stdenv.mkDerivation rec {
name = "man-db-2.7.5";
-
+
src = fetchurl {
url = "mirror://savannah/man-db/${name}.tar.xz";
sha256 = "056a3il7agfazac12yggcg4gf412yq34k065im0cpfxbcw6xskaw";
};
-
- buildInputs = [ pkgconfig libpipeline db groff ];
+
+ outputs = [ "out" "doc" ];
+ outputMan = "out"; # users will want `man man` to work
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ libpipeline db groff ];
configureFlags = [
"--disable-setuid"
- "--sysconfdir=/etc"
"--localstatedir=/var"
+ # Don't try /etc/man_db.conf by default, so we avoid error messages.
+ "--with-config-file=\${out}/etc/man_db.conf"
"--with-systemdtmpfilesdir=\${out}/lib/tmpfiles.d"
"--with-eqn=${groff}/bin/eqn"
"--with-neqn=${groff}/bin/neqn"
@@ -23,15 +28,9 @@ stdenv.mkDerivation rec {
"--with-tbl=${groff}/bin/tbl"
];
- installFlags = [ "DESTDIR=\${out}" ];
+ enableParallelBuilding = true;
- postInstall = ''
- mv $out/$out/* $out
- DIR=$out/$out
- while rmdir $DIR 2>/dev/null; do
- DIR="$(dirname "$DIR")"
- done
- '';
+ doCheck = true;
meta = with stdenv.lib; {
homepage = "http://man-db.nongnu.org";
diff --git a/pkgs/tools/misc/most/default.nix b/pkgs/tools/misc/most/default.nix
index b97d8f0b719..1c1def9b8a8 100644
--- a/pkgs/tools/misc/most/default.nix
+++ b/pkgs/tools/misc/most/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation {
-e "s|/bin/rm|rm|"
'';
- configureFlags = "--with-slang=${slang}";
+ configureFlags = "--with-slang=${slang.dev}";
buildInputs = [ slang ncurses ];
diff --git a/pkgs/tools/misc/multitail/default.nix b/pkgs/tools/misc/multitail/default.nix
index 9b1b3f48450..bd446395bc7 100644
--- a/pkgs/tools/misc/multitail/default.nix
+++ b/pkgs/tools/misc/multitail/default.nix
@@ -22,5 +22,6 @@ stdenv.mkDerivation rec {
homepage = http://www.vanheusden.com/multitail/;
description = "tail on Steroids";
maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
+ platforms = stdenv.lib.platforms.unix;
};
}
diff --git a/pkgs/tools/misc/pk2cmd/default.nix b/pkgs/tools/misc/pk2cmd/default.nix
index 3501090c63c..2f69517e4bd 100644
--- a/pkgs/tools/misc/pk2cmd/default.nix
+++ b/pkgs/tools/misc/pk2cmd/default.nix
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
sha256 = "1yjpi2qshnqfpan4w3ggakkr3znfrx5cxkny92ka7v9na3g2fc4h";
};
- makeFlags = [ "LIBUSB=${libusb}" "linux" ];
+ makeFlags = [ "LIBUSB=${libusb.dev}" "linux" ];
installPhase = ''
mkdir -p $out/bin $out/share/pk2
diff --git a/pkgs/tools/misc/rrdtool/default.nix b/pkgs/tools/misc/rrdtool/default.nix
index 524e61dfaf3..2db91549104 100644
--- a/pkgs/tools/misc/rrdtool/default.nix
+++ b/pkgs/tools/misc/rrdtool/default.nix
@@ -1,4 +1,5 @@
-{ fetchurl, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo, groff }:
+{ fetchurl, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo, groff
+, tcl-8_5 }:
stdenv.mkDerivation rec {
name = "rrdtool-1.5.5";
@@ -6,7 +7,8 @@ stdenv.mkDerivation rec {
url = "http://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz";
sha256 = "1xm6ikzx8iaa6r7v292k8s7srkzhnifamp1szkimgmh5ki26sa1s";
};
- buildInputs = [ gettext perl pkgconfig libxml2 pango cairo groff ];
+ buildInputs = [ gettext perl pkgconfig libxml2 pango cairo groff ]
+ ++ stdenv.lib.optional stdenv.isDarwin tcl-8_5;
postInstall = ''
# for munin and rrdtool support
@@ -18,7 +20,7 @@ stdenv.mkDerivation rec {
homepage = http://oss.oetiker.ch/rrdtool/;
description = "High performance logging in Round Robin Databases";
license = licenses.gpl2;
- platforms = platforms.linux;
+ platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ pSub ];
};
}
diff --git a/pkgs/tools/misc/stow/default.nix b/pkgs/tools/misc/stow/default.nix
index 6eddcf89b91..0468d2d8a63 100644
--- a/pkgs/tools/misc/stow/default.nix
+++ b/pkgs/tools/misc/stow/default.nix
@@ -1,16 +1,17 @@
{ stdenv, fetchurl, perl, perlPackages }:
+let
+ version = "2.2.2";
+in
stdenv.mkDerivation {
- name = "stow-2.2.0";
+ name = "stow-${version}";
src = fetchurl {
- url = mirror://gnu/stow/stow-2.2.0.tar.bz2;
- sha256 = "01bbsqjmrnd9925s3grvgjnrl52q4w65imrvzy05qaij3pz31g46";
+ url = "mirror://gnu/stow/stow-${version}.tar.bz2";
+ sha256 = "1zd6g9cm3whvy5f87j81j4npl7q6kxl25f7z7p9ahiqfjqs200m0";
};
- buildInputs = [ perl perlPackages.TestOutput ];
-
- patches = [ ./precedence-issue.patch ];
+ buildInputs = with perlPackages; [ perl IOStringy TestOutput ];
doCheck = true;
diff --git a/pkgs/tools/misc/stow/precedence-issue.patch b/pkgs/tools/misc/stow/precedence-issue.patch
deleted file mode 100644
index d9542573bac..00000000000
--- a/pkgs/tools/misc/stow/precedence-issue.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/lib/Stow.pm.in b/lib/Stow.pm.in
-index 101a422..f80b1ac 100755
---- a/lib/Stow.pm.in
-+++ b/lib/Stow.pm.in
-@@ -1732,8 +1732,8 @@ sub read_a_link {
- }
- elsif (-l $path) {
- debug(4, " read_a_link($path): real link");
-- return readlink $path
-- or error("Could not read link: $path");
-+ my $target = readlink $path or error("Could not read link: $path ($!)");
-+ return $target;
- }
- internal_error("read_a_link() passed a non link path: $path\n");
- }
diff --git a/pkgs/tools/misc/tlp/default.nix b/pkgs/tools/misc/tlp/default.nix
index d290c9f9a5a..1e39ddf481b 100644
--- a/pkgs/tools/misc/tlp/default.nix
+++ b/pkgs/tools/misc/tlp/default.nix
@@ -1,11 +1,19 @@
-{ stdenv, lib, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils
+{ stdenv, lib, fetchFromGitHub, perl, makeWrapper, systemd, iw, rfkill, hdparm, ethtool, inetutils
, kmod, pciutils, smartmontools, x86_energy_perf_policy, gawk, gnugrep, coreutils
, enableRDW ? false, networkmanager
}:
-let version = "0.8";
-in stdenv.mkDerivation {
+let
+ paths = lib.makeBinPath
+ ([ iw rfkill hdparm ethtool inetutils systemd kmod pciutils smartmontools
+ x86_energy_perf_policy gawk gnugrep coreutils
+ ]
+ ++ lib.optional enableRDW networkmanager
+ );
+
+in stdenv.mkDerivation rec {
name = "tlp-${version}";
+ version = "0.8";
src = fetchFromGitHub {
owner = "linrunner";
@@ -26,20 +34,19 @@ in stdenv.mkDerivation {
buildInputs = [ perl ];
- paths = lib.makeBinPath
- ([ iw rfkill hdparm ethtool inetutils systemd kmod pciutils smartmontools
- x86_energy_perf_policy gawk gnugrep coreutils
- ]
- ++ lib.optional enableRDW networkmanager
- );
-
installTargets = [ "install-tlp" ] ++ stdenv.lib.optional enableRDW "install-rdw";
postInstall = ''
for i in $out/bin/* $out/lib/udev/tlp-*; do
sed -i "s,/usr/lib/,$out/lib/,g" "$i"
- wrapProgram "$i" \
- --prefix PATH : "$paths"
+ if [[ "$(basename "$i")" = tlp-*list ]]; then
+ # Perl script; use wrapProgram
+ wrapProgram "$i" \
+ --prefix PATH : "${paths}"
+ else
+ # Bash script
+ sed -i '2iexport PATH=${paths}:$PATH' "$i"
+ fi
done
for i in $out/lib/udev/rules.d/*; do
@@ -51,9 +58,10 @@ in stdenv.mkDerivation {
done
'' + lib.optionalString enableRDW ''
for i in $out/etc/NetworkManager/dispatcher.d/*; do
- sed -i "s,/usr/lib/,$out/lib/,g" "$i"
- wrapProgram "$i" \
- --prefix PATH : "$paths"
+ sed -i \
+ -e "s,/usr/lib/,$out/lib/,g" \
+ -e '2iexport PATH=${paths}:$PATH' \
+ "$i"
done
'';
diff --git a/pkgs/tools/misc/tmux/default.nix b/pkgs/tools/misc/tmux/default.nix
index 7bd79b30885..ad15fa98a4b 100644
--- a/pkgs/tools/misc/tmux/default.nix
+++ b/pkgs/tools/misc/tmux/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, autoreconfHook, ncurses, libevent, pkgconfig }:
+{ stdenv, fetchFromGitHub, autoreconfHook, ncurses, libevent, pkgconfig, makeWrapper }:
let
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig autoreconfHook ];
- buildInputs = [ ncurses libevent ];
+ buildInputs = [ ncurses libevent makeWrapper ];
configureFlags = [
"--sysconfdir=/etc"
@@ -32,8 +32,8 @@ stdenv.mkDerivation rec {
];
postInstall = ''
- mkdir -p $out/etc/bash_completion.d
- cp -v ${bashCompletion}/completions/tmux $out/etc/bash_completion.d/tmux
+ mkdir -p $out/share/bash-completion/completions
+ cp -v ${bashCompletion}/completions/tmux $out/share/bash-completion/completions/tmux
'';
meta = {
diff --git a/pkgs/tools/misc/trash-cli/default.nix b/pkgs/tools/misc/trash-cli/default.nix
index 75b3cb16067..2a4dae87e18 100644
--- a/pkgs/tools/misc/trash-cli/default.nix
+++ b/pkgs/tools/misc/trash-cli/default.nix
@@ -35,6 +35,7 @@ python2Packages.buildPythonApplication rec {
homepage = https://github.com/andreafrancia/trash-cli;
description = "Command line tool for the desktop trash can";
maintainers = [ maintainers.rycee ];
+ platforms = platforms.all;
license = licenses.gpl2;
};
}
diff --git a/pkgs/tools/misc/ttf2pt1/default.nix b/pkgs/tools/misc/ttf2pt1/default.nix
index 5a03e099539..da0c966eb5e 100644
--- a/pkgs/tools/misc/ttf2pt1/default.nix
+++ b/pkgs/tools/misc/ttf2pt1/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
mkdir -p $out
sed -e 's/chown/true/' \
-e 's/chgrp/true/' \
- -e 's@^CFLAGS_FT =.*@CFLAGS_FT=-DUSE_FREETYPE -I${freetype}/include/freetype2@' \
+ -e 's@^CFLAGS_FT =.*@CFLAGS_FT=-DUSE_FREETYPE -I${freetype.dev}/include/freetype2@' \
-i scripts/{inst_dir,inst_file} Makefile
makeFlags="INSTDIR=$out OWNER=`id -u`"
'';
diff --git a/pkgs/tools/misc/vdirsyncer/default.nix b/pkgs/tools/misc/vdirsyncer/default.nix
index 0cf7f92912e..4bf19597709 100644
--- a/pkgs/tools/misc/vdirsyncer/default.nix
+++ b/pkgs/tools/misc/vdirsyncer/default.nix
@@ -3,13 +3,12 @@
# Packaging documentation at:
# https://github.com/untitaker/vdirsyncer/blob/master/docs/packaging.rst
pythonPackages.buildPythonApplication rec {
- version = "0.10.0";
+ version = "0.11.0";
name = "vdirsyncer-${version}";
- namePrefix = "";
src = fetchurl {
- url = "https://pypi.python.org/packages/0b/fb/c42223e1e9169e4770194e62143d431755724b080d8cb77f14705b634815/vdirsyncer-0.10.0.tar.gz";
- sha256 = "1gf86sbd6w0w4zayh9r3irlp5jwrzbjikjc0vs5zkdpa5c199f78";
+ url = "mirror://pypi/v/vdirsyncer/${name}.tar.gz";
+ sha256 = "1bf0vk29qdswar0q4267aamfriq3134302i2p3qcqxpmmcwx3qfv";
};
propagatedBuildInputs = with pythonPackages; [
diff --git a/pkgs/tools/misc/xflux/gui.nix b/pkgs/tools/misc/xflux/gui.nix
new file mode 100644
index 00000000000..b78eb910f93
--- /dev/null
+++ b/pkgs/tools/misc/xflux/gui.nix
@@ -0,0 +1,47 @@
+{ stdenv, pkgs, fetchFromGitHub, buildPythonPackage,
+ pexpect,
+ pyGtkGlade,
+ pygobject,
+ pyxdg,
+ gnome_python,
+}:
+buildPythonPackage rec {
+ version = "1.1.1";
+ name = "xflux-gui-${version}";
+
+ src = fetchFromGitHub {
+ repo = "xflux-gui";
+ owner = "xflux-gui";
+ rev = "d897dfd";
+ sha256 = "1mx1r2hz3g3waafn4w8hql0gaasfizbzz60bk5llw007k4k8892r";
+ };
+
+ # remove messing with shipped binary
+ patches = [ ./setup.patch ];
+
+ # not sure if these need to be propogated or not?
+ propagatedBuildInputs = [
+ pexpect
+ pyGtkGlade
+ pygobject
+ pyxdg
+ pkgs.libappindicator-gtk2
+ gnome_python
+ ];
+
+ buildInputs = [
+ pkgs.xflux
+ ];
+
+ postPatch = ''
+ substituteInPlace src/fluxgui/xfluxcontroller.py --replace "pexpect.spawn(\"xflux\"" "pexpect.spawn(\"${pkgs.xflux}/bin/xflux\""
+ '';
+
+ meta = {
+ description = "Better lighting for Linux. Open source GUI for xflux";
+ homepage = https://justgetflux.com/linux.html;
+ license = stdenv.lib.licenses.unfree; # marked as unfree since the source code contains a copy of the unfree xflux binary
+ maintainers = [ stdenv.lib.maintainers.sheenobu ];
+ platforms = stdenv.lib.platforms.linux;
+ };
+}
diff --git a/pkgs/tools/misc/xflux/setup.patch b/pkgs/tools/misc/xflux/setup.patch
new file mode 100644
index 00000000000..c36f81f7d80
--- /dev/null
+++ b/pkgs/tools/misc/xflux/setup.patch
@@ -0,0 +1,28 @@
+diff --git a/setup.py b/setup.py
+index e11f199..b1cb0e5 100644
+--- a/setup.py
++++ b/setup.py
+@@ -4,13 +4,6 @@ from distutils.core import setup
+ from sys import maxsize
+ from os import rename
+
+-# Determines which is the appropriate executable for 32-bit
+-if maxsize == 2147483647:
+- rename("xflux32", "xflux")
+-# ... or 64-bit processors
+-elif maxsize == 9223372036854775807:
+- rename("xflux64", "xflux")
+-
+ setup(name = "f.lux indicator applet",
+ version = "1.1.8",
+ description = "f.lux indicator applet - better lighting for your computer",
+@@ -22,8 +15,7 @@ setup(name = "f.lux indicator applet",
+ packages = ["fluxgui",],
+ package_data = {"fluxgui" : ["*.glade"] },
+ data_files=[('share/icons/hicolor/scalable/apps', ['fluxgui.svg', 'fluxgui-light.svg', 'fluxgui-dark.svg']),
+- ('share/applications', ['desktop/fluxgui.desktop']),
+- ('bin', ['xflux']),],
++ ('share/applications', ['desktop/fluxgui.desktop']),],
+ scripts = ["fluxgui"],
+ long_description = """f.lux indicator applet is an indicator applet to
+ control xflux, an application that makes the color of your computer's
diff --git a/pkgs/tools/misc/yank/default.nix b/pkgs/tools/misc/yank/default.nix
index f6b61de2a98..97497614ecb 100644
--- a/pkgs/tools/misc/yank/default.nix
+++ b/pkgs/tools/misc/yank/default.nix
@@ -8,12 +8,12 @@ stdenv.mkDerivation rec {
owner = "mptre";
repo = "yank";
rev = "v${meta.version}";
- sha256 = "0v1imwjp851gz86p9m3x1dd8bi649gr8j99xz6ask1pbkxvji73c";
+ sha256 = "0iv3ilyjcq6cd429qkg8mfpwagkb30617z0kdjlhk2s74chyaghm";
inherit name;
};
installPhase = ''
- PREFIX=$out make install
+ make PREFIX=$out install
'';
meta = with stdenv.lib; {
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
'';
downloadPage = "https://github.com/mptre/yank/releases";
license = licenses.mit;
- version = "0.6.0";
+ version = "0.7.0";
maintainers = [ maintainers.dochang ];
};
diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix
index bee8231b64e..1187191185d 100644
--- a/pkgs/tools/misc/youtube-dl/default.nix
+++ b/pkgs/tools/misc/youtube-dl/default.nix
@@ -12,11 +12,11 @@
buildPythonApplication rec {
name = "youtube-dl-${version}";
- version = "2016.04.06";
+ version = "2016.05.21.2";
src = fetchurl {
url = "http://yt-dl.org/downloads/${version}/${name}.tar.gz";
- sha256 = "1kdrjwrn0x1wmvansvd2222gfqnld4zdihf2jwnz36112r1p8nhi";
+ sha256 = "66f94fc97012c4c7a6338dc4df6ec62af66dcfc144c5e8c8cd8b5519756f1a98";
};
buildInputs = [ makeWrapper zip pandoc ];
diff --git a/pkgs/tools/misc/zsh-navigation-tools/default.nix b/pkgs/tools/misc/zsh-navigation-tools/default.nix
index ffd48bef58c..419ea11a4d7 100644
--- a/pkgs/tools/misc/zsh-navigation-tools/default.nix
+++ b/pkgs/tools/misc/zsh-navigation-tools/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "zsh-navigation-tools-${version}";
- version = "2.1.14";
+ version = "2.1.16";
src = fetchFromGitHub {
owner = "psprint";
repo = "zsh-navigation-tools";
rev = "v${version}";
- sha256 = "0q0c5kcvwxfyn5hz3ir3s03jhdr6yjs5mmldz6kpkrh45qmzq9zz";
+ sha256 = "1ccb4f5md8wn60mymk91y2p4fq9f666bc5zc9xwx1q2wra8j4yf5";
};
dontBuild = true;
diff --git a/pkgs/tools/networking/curl/7.15.nix b/pkgs/tools/networking/curl/7.15.nix
index 56046d5423d..c3c16cc08b4 100644
--- a/pkgs/tools/networking/curl/7.15.nix
+++ b/pkgs/tools/networking/curl/7.15.nix
@@ -37,8 +37,8 @@ stdenv.mkDerivation rec {
configureFlags = [
"--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
- ( if sslSupport then "--with-ssl=${openssl}" else "--without-ssl" )
- ( if scpSupport then "--with-libssh2=${libssh2}" else "--without-libssh2" )
+ ( if sslSupport then "--with-ssl=${openssl.dev}" else "--without-ssl" )
+ ( if scpSupport then "--with-libssh2=${libssh2.dev}" else "--without-libssh2" )
]
++ stdenv.lib.optional c-aresSupport "--enable-ares=${c-ares}"
++ stdenv.lib.optional gssSupport "--with-gssapi=${gss}"
diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix
index 47f03cc3747..f2e6117966f 100644
--- a/pkgs/tools/networking/curl/default.nix
+++ b/pkgs/tools/networking/curl/default.nix
@@ -51,11 +51,11 @@ stdenv.mkDerivation rec {
configureFlags = [
"--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
"--disable-manual"
- ( if sslSupport then "--with-ssl=${openssl}" else "--without-ssl" )
- ( if scpSupport then "--with-libssh2=${libssh2}" else "--without-libssh2" )
+ ( if sslSupport then "--with-ssl=${openssl.dev}" else "--without-ssl" )
+ ( if scpSupport then "--with-libssh2=${libssh2.dev}" else "--without-libssh2" )
( if ldapSupport then "--enable-ldap" else "--disable-ldap" )
( if ldapSupport then "--enable-ldaps" else "--disable-ldaps" )
- ( if idnSupport then "--with-libidn=${libidn}" else "--without-libidn" )
+ ( if idnSupport then "--with-libidn=${libidn.dev}" else "--without-libidn" )
]
++ stdenv.lib.optional c-aresSupport "--enable-ares=${c-ares}"
++ stdenv.lib.optional gssSupport "--with-gssapi=${gss}";
diff --git a/pkgs/tools/networking/http-prompt/default.nix b/pkgs/tools/networking/http-prompt/default.nix
new file mode 100644
index 00000000000..ba9b8b2d771
--- /dev/null
+++ b/pkgs/tools/networking/http-prompt/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub, pythonPackages, httpie }:
+
+pythonPackages.buildPythonApplication rec {
+ version = "0.2.0";
+ name = "http-prompt";
+
+ src = fetchFromGitHub {
+ rev = "v${version}";
+ repo = "http-prompt";
+ owner = "eliangcs";
+ sha256 = "0hgw3kx9rfdg394darms3vqcjm6xw6qrm8gnz54nahmyxnhrxnpp";
+ };
+
+ propagatedBuildInputs = with pythonPackages; [
+ click
+ httpie
+ parsimonious
+ prompt_toolkit
+ pygments
+ six
+ ];
+
+ meta = with stdenv.lib; {
+ description = "An interactive command-line HTTP client featuring autocomplete and syntax highlighting";
+ homepage = "https://github.com/eliangcs/http-prompt";
+ license = licenses.mit;
+ maintainers = with maintainers; [ matthiasbeyer ];
+ platforms = platforms.linux; # can only test on linux
+ };
+}
diff --git a/pkgs/tools/networking/keepalived/default.nix b/pkgs/tools/networking/keepalived/default.nix
index bc0085a731e..1d0c9d55076 100644
--- a/pkgs/tools/networking/keepalived/default.nix
+++ b/pkgs/tools/networking/keepalived/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
'';
# It doesn't know about the include/libnl directory
- NIX_CFLAGS_COMPILE="-I${libnl}/include/libnl3";
+ NIX_CFLAGS_COMPILE="-I${libnl.dev}/include/libnl3";
NIX_LDFLAGS="-lnl-3 -lnl-genl-3";
configureFlags = [
diff --git a/pkgs/tools/networking/libreswan/default.nix b/pkgs/tools/networking/libreswan/default.nix
index 1a040652ff4..a2204f9664a 100644
--- a/pkgs/tools/networking/libreswan/default.nix
+++ b/pkgs/tools/networking/libreswan/default.nix
@@ -1,15 +1,15 @@
{ stdenv, fetchurl, makeWrapper,
pkgconfig, systemd, gmp, unbound, bison, flex, pam, libevent, libcap_ng, curl, nspr,
- bash, iproute, iptables, procps, coreutils, gnused, gawk, nssTools, which, python,
+ bash, iproute, iptables, procps, coreutils, gnused, gawk, nss, which, python,
docs ? false, xmlto
}:
let
optional = stdenv.lib.optional;
- version = "3.16";
+ version = "3.17";
name = "libreswan-${version}";
binPath = stdenv.lib.makeBinPath [
- bash iproute iptables procps coreutils gnused gawk nssTools which python
+ bash iproute iptables procps coreutils gnused gawk nss.tools which python
];
in
@@ -21,12 +21,12 @@ stdenv.mkDerivation {
src = fetchurl {
url = "https://download.libreswan.org/${name}.tar.gz";
- sha256 = "15qv4101p1jw591l04gsfscb3farzd278mgi8yph015vmifyjxrd";
+ sha256 = "00qd1n6f5w4xr06yanfpnbnn7y7rq2m878ifa3hh13bdgzsqdhi8";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ pkgconfig bash iproute iptables systemd coreutils gnused gawk gmp unbound bison flex pam libevent
- libcap_ng curl nspr nssTools python ]
+ libcap_ng curl nspr nss python ]
++ optional docs xmlto;
prePatch = ''
diff --git a/pkgs/tools/networking/linkchecker/add-no-robots-flag.patch b/pkgs/tools/networking/linkchecker/add-no-robots-flag.patch
new file mode 100644
index 00000000000..270ef2c02e1
--- /dev/null
+++ b/pkgs/tools/networking/linkchecker/add-no-robots-flag.patch
@@ -0,0 +1,60 @@
+diff --git a/linkcheck/checker/httpurl.py b/linkcheck/checker/httpurl.py
+index 6f207b6..161619c 100644
+--- a/linkcheck/checker/httpurl.py
++++ b/linkcheck/checker/httpurl.py
+@@ -75,7 +75,7 @@ def allows_robots (self, url):
+ @return: True if access is granted, otherwise False
+ @rtype: bool
+ """
+- return self.aggregate.robots_txt.allows_url(self)
++ return not self.aggregate.config['robotstxt'] or self.aggregate.robots_txt.allows_url(self)
+
+ def content_allows_robots (self):
+ """
+diff --git a/linkcheck/configuration/__init__.py b/linkcheck/configuration/__init__.py
+index fc2c148..234fa05 100644
+--- a/linkcheck/configuration/__init__.py
++++ b/linkcheck/configuration/__init__.py
+@@ -163,6 +163,7 @@ def __init__ (self):
+ ## checking options
+ self["allowedschemes"] = []
+ self['cookiefile'] = None
++ self['robotstxt'] = True
+ self["debugmemory"] = False
+ self["localwebroot"] = None
+ self["maxfilesizeparse"] = 1*1024*1024
+diff --git a/linkcheck/configuration/confparse.py b/linkcheck/configuration/confparse.py
+index 67751ed..845fa95 100644
+--- a/linkcheck/configuration/confparse.py
++++ b/linkcheck/configuration/confparse.py
+@@ -149,6 +149,7 @@ def read_checking_config (self):
+ self.get(section, 'allowedschemes').split(',')]
+ self.read_boolean_option(section, "debugmemory")
+ self.read_string_option(section, "cookiefile")
++ self.read_boolean_option(section, "robotstxt")
+ self.read_string_option(section, "localwebroot")
+ try:
+ self.read_boolean_option(section, "sslverify")
+diff --git a/linkchecker b/linkchecker
+index 199532c..9e91fa5 100755
+--- a/linkchecker
++++ b/linkchecker
+@@ -321,6 +321,9 @@ group.add_argument("--cookiefile", dest="cookiefile", metavar="FILENAME",
+ help=_(
+ """Read a file with initial cookie data. The cookie data format is
+ explained below."""))
++# const because store_false doesn't detect absent flags
++group.add_argument("--no-robots", action="store_const", const=False,
++ dest="norobotstxt", help=_("Disable robots.txt checks"))
+ group.add_argument("--check-extern", action="store_true",
+ dest="checkextern", help=_("""Check external URLs."""))
+ group.add_argument("--ignore-url", action="append", metavar="REGEX",
+@@ -431,6 +434,8 @@ if options.externstrict:
+ if options.extern:
+ pats = [linkcheck.get_link_pat(arg) for arg in options.extern]
+ config["externlinks"].extend(pats)
++if options.norobotstxt is not None:
++ config['robotstxt'] = options.norobotstxt
+ if options.checkextern:
+ config["checkextern"] = True
+ elif not config["checkextern"]:
diff --git a/pkgs/tools/networking/linkchecker/default.nix b/pkgs/tools/networking/linkchecker/default.nix
new file mode 100644
index 00000000000..79566f12901
--- /dev/null
+++ b/pkgs/tools/networking/linkchecker/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, lib, fetchurl, python2Packages }:
+
+python2Packages.buildPythonApplication rec {
+ name = "LinkChecker-${version}";
+ version = "9.3";
+
+ # LinkChecker 9.3 only works with requests 2.9.x
+ propagatedBuildInputs = with python2Packages ; [ requests2 ];
+
+ src = fetchurl {
+ url = "mirror://pypi/L/LinkChecker/${name}.tar.gz";
+ sha256 = "0v8pavf0bx33xnz1kwflv0r7lxxwj7vg3syxhy2wzza0wh6sc2pf";
+ };
+
+ # upstream refuses to support ignoring robots.txt
+ patches = [
+ ./add-no-robots-flag.patch
+ ];
+
+ postInstall = ''
+ rm $out/bin/linkchecker-gui
+ '';
+
+ meta = {
+ description = "Check websites for broken links";
+ homepage = "https://wummel.github.io/linkchecker/";
+ license = lib.licenses.gpl2;
+ maintainers = with lib.maintainers; [ peterhoeg ];
+ };
+}
diff --git a/pkgs/tools/networking/mailsend/default.nix b/pkgs/tools/networking/mailsend/default.nix
index 363c22c8bb8..6f555278219 100644
--- a/pkgs/tools/networking/mailsend/default.nix
+++ b/pkgs/tools/networking/mailsend/default.nix
@@ -3,11 +3,11 @@ let
s = # Generated upstream information
rec {
baseName="mailsend";
- version="1.18";
+ version="1.19";
name="${baseName}-${version}";
- hash="1fjrb6q7y2dxx0qz7r0wlhqfkjqq1vfh7yb7jl77h5qi5kd5rm46";
- url="https://github.com/muquit/mailsend/archive/1.18.tar.gz";
- sha256="1fjrb6q7y2dxx0qz7r0wlhqfkjqq1vfh7yb7jl77h5qi5kd5rm46";
+ hash="1xwk6jvl5li8ddlik1lj88qswnyminp9wlf5cm8gg3n54szgcpjn";
+ url="https://github.com/muquit/mailsend/archive/1.19.tar.gz";
+ sha256="1xwk6jvl5li8ddlik1lj88qswnyminp9wlf5cm8gg3n54szgcpjn";
};
buildInputs = [
openssl
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
inherit (s) url sha256;
};
configureFlags = [
- "--with-openssl=${openssl}"
+ "--with-openssl=${openssl.dev}"
];
meta = {
inherit (s) version;
diff --git a/pkgs/tools/networking/network-manager/default.nix b/pkgs/tools/networking/network-manager/default.nix
index 2d5477ee8e4..34506cb823d 100644
--- a/pkgs/tools/networking/network-manager/default.nix
+++ b/pkgs/tools/networking/network-manager/default.nix
@@ -13,8 +13,6 @@ stdenv.mkDerivation rec {
sha256 = "17jan0g5jzp8mrpklyacwdgnnw016m1c5pc4az5im6qhc260yirs";
};
- outputs = [ "dev" "out" ];
-
preConfigure = ''
substituteInPlace configure --replace /usr/bin/uname ${coreutils}/bin/uname
substituteInPlace configure --replace /usr/bin/file ${file}/bin/file
diff --git a/pkgs/tools/networking/oslrd/default.nix b/pkgs/tools/networking/olsrd/default.nix
similarity index 100%
rename from pkgs/tools/networking/oslrd/default.nix
rename to pkgs/tools/networking/olsrd/default.nix
diff --git a/pkgs/tools/networking/openvpn/default.nix b/pkgs/tools/networking/openvpn/default.nix
index 4f27c89fa82..6f7b72c1f1c 100644
--- a/pkgs/tools/networking/openvpn/default.nix
+++ b/pkgs/tools/networking/openvpn/default.nix
@@ -15,9 +15,7 @@ stdenv.mkDerivation rec {
buildInputs = [ lzo openssl pkgconfig ]
++ optionals stdenv.isLinux [ pam systemd iproute ];
- configureFlags = ''
- --enable-password-save
- '' + optionalString stdenv.isLinux ''
+ configureFlags = optionalString stdenv.isLinux ''
--enable-systemd
--enable-iproute2
IPROUTE=${iproute}/sbin/ip
@@ -32,8 +30,6 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
- NIX_LDFLAGS = optionalString stdenv.isLinux "-lsystemd-daemon"; # hacky
-
meta = {
description = "A robust and highly flexible tunneling application";
homepage = http://openvpn.net/;
diff --git a/pkgs/tools/networking/sstp/default.nix b/pkgs/tools/networking/sstp/default.nix
index ed28db45f10..6dbd6267993 100644
--- a/pkgs/tools/networking/sstp/default.nix
+++ b/pkgs/tools/networking/sstp/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
'';
configureFlags = [
- "--with-openssl=${openssl}"
+ "--with-openssl=${openssl.dev}"
"--with-runtime-dir=/run/sstpc"
"--with-pppd-plugin-dir=$(out)/lib/pppd"
];
diff --git a/pkgs/tools/networking/strongswan/default.nix b/pkgs/tools/networking/strongswan/default.nix
index 1e8b1a1b299..1e00157c487 100644
--- a/pkgs/tools/networking/strongswan/default.nix
+++ b/pkgs/tools/networking/strongswan/default.nix
@@ -4,11 +4,12 @@
, enableTNC ? false }:
stdenv.mkDerivation rec {
- name = "strongswan-5.3.2";
+ name = "strongswan-${version}";
+ version = "5.4.0";
src = fetchurl {
url = "http://download.strongswan.org/${name}.tar.bz2";
- sha256 = "09gjrd5f8iykh926y35blxlm2hlzpw15m847d8vc9ga29s6brad4";
+ sha256 = "12dy7dfwblihrc2zs0fdvyimvgi2g5mvgh0ksjkxi73axam8ya7q";
};
dontPatchELF = true;
diff --git a/pkgs/tools/networking/stunnel/default.nix b/pkgs/tools/networking/stunnel/default.nix
index 48e3c562583..cd0c1e56bac 100644
--- a/pkgs/tools/networking/stunnel/default.nix
+++ b/pkgs/tools/networking/stunnel/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
buildInputs = [ openssl ];
configureFlags = [
- "--with-ssl=${openssl}"
+ "--with-ssl=${openssl.dev}"
"--sysconfdir=/etc"
"--localstatedir=/var"
];
diff --git a/pkgs/tools/networking/toxvpn/default.nix b/pkgs/tools/networking/toxvpn/default.nix
new file mode 100644
index 00000000000..3b5627db215
--- /dev/null
+++ b/pkgs/tools/networking/toxvpn/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchFromGitHub, libtoxcore, cmake, jsoncpp, lib, stdenvAdapters, libsodium, systemd, enableDebugging, libcap }:
+
+with lib;
+
+let
+ libtoxcoreLocked = stdenv.lib.overrideDerivation libtoxcore (oldAttrs: {
+ name = "libtoxcore-20151110";
+ src = fetchFromGitHub {
+ owner = "irungentoo";
+ repo = "toxcore";
+ rev = "22634a4b93dda5b17cb357cd84ac46fcfdc22519";
+ sha256 = "01i92wm5lg2p7k71qn23sfh01xi8acdrwn23rk52n54h424l1fgy";
+ };
+ });
+
+in stdenv.mkDerivation {
+ name = "toxvpn-20151111";
+
+ src = fetchFromGitHub {
+ owner = "cleverca22";
+ repo = "toxvpn";
+ rev = "1d06bb7da277d46abb8595cf152210c4ccf0ba7d";
+ sha256 = "1himrbdgsbkfha1d87ysj2hwyz4a6z9yxqbai286imkya84q7r15";
+ };
+
+ buildInputs = [ cmake libtoxcoreLocked jsoncpp libsodium systemd libcap ];
+
+ cmakeFlags = [ "-DSYSTEMD=1" ];
+
+ meta = with stdenv.lib; {
+ description = "A powerful tool that allows one to make tunneled point to point connections over Tox";
+ homepage = https://github.com/cleverca22/toxvpn;
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ cleverca22 obadz ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/tools/networking/unbound/default.nix b/pkgs/tools/networking/unbound/default.nix
index f639044a195..684b9b13a80 100644
--- a/pkgs/tools/networking/unbound/default.nix
+++ b/pkgs/tools/networking/unbound/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
configureFlags = [
"--with-ssl=${openssl.dev}"
- "--with-libexpat=${expat}"
+ "--with-libexpat=${expat.dev}"
"--with-libevent=${libevent.dev}"
"--localstatedir=/var"
"--sysconfdir=/etc"
diff --git a/pkgs/tools/networking/uwimap/default.nix b/pkgs/tools/networking/uwimap/default.nix
index 69b3e633f37..c2c707fbc77 100644
--- a/pkgs/tools/networking/uwimap/default.nix
+++ b/pkgs/tools/networking/uwimap/default.nix
@@ -20,13 +20,13 @@ stdenv.mkDerivation {
++ stdenv.lib.optional (!stdenv.isDarwin) pam;
patchPhase = ''
- sed -i src/osdep/unix/Makefile -e 's,/usr/local/ssl,${openssl},'
+ sed -i src/osdep/unix/Makefile -e 's,/usr/local/ssl,${openssl.dev},'
sed -i src/osdep/unix/Makefile -e 's,^SSLCERTS=.*,SSLCERTS=/etc/ssl/certs,'
sed -i src/osdep/unix/Makefile -e 's,^SSLLIB=.*,SSLLIB=${openssl.out}/lib,'
'';
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin
- "-I${openssl}/include/openssl";
+ "-I${openssl.dev}/include/openssl";
installPhase = ''
mkdir -p $out/bin $out/lib $out/include
diff --git a/pkgs/tools/networking/vtun/default.nix b/pkgs/tools/networking/vtun/default.nix
index e14326fe9e6..b0397149e60 100644
--- a/pkgs/tools/networking/vtun/default.nix
+++ b/pkgs/tools/networking/vtun/default.nix
@@ -16,8 +16,8 @@ stdenv.mkDerivation rec {
configureFlags = ''
--with-lzo-headers=${lzo}/include/lzo
- --with-ssl-headers=${openssl}/include/openssl
- --with-blowfish-headers=${openssl}/include/openssl'';
+ --with-ssl-headers=${openssl.dev}/include/openssl
+ --with-blowfish-headers=${openssl.dev}/include/openssl'';
meta = with stdenv.lib; {
description = "Virtual Tunnels over TCP/IP with traffic shaping, compression and encryption";
diff --git a/pkgs/tools/security/clamav/default.nix b/pkgs/tools/security/clamav/default.nix
index bebb8a95a58..e62cce9e4e3 100644
--- a/pkgs/tools/security/clamav/default.nix
+++ b/pkgs/tools/security/clamav/default.nix
@@ -13,14 +13,14 @@ stdenv.mkDerivation rec {
buildInputs = [ zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre ];
configureFlags = [
- "--with-zlib=${zlib}"
- "--with-libbz2-prefix=${bzip2}"
+ "--with-zlib=${zlib.dev}"
+ "--with-libbz2-prefix=${bzip2.dev}"
"--with-iconv-dir=${libiconv}"
"--with-xml=${libxml2}"
- "--with-openssl=${openssl}"
- "--with-libncurses-prefix=${ncurses}"
- "--with-libcurl=${curl}"
- "--with-pcre=${pcre}"
+ "--with-openssl=${openssl.dev}"
+ "--with-libncurses-prefix=${ncurses.dev}"
+ "--with-libcurl=${curl.dev}"
+ "--with-pcre=${pcre.dev}"
"--enable-milter"
"--disable-clamav"
];
diff --git a/pkgs/tools/security/duo-unix/default.nix b/pkgs/tools/security/duo-unix/default.nix
index a3aa417a4ea..af5e72faca4 100644
--- a/pkgs/tools/security/duo-unix/default.nix
+++ b/pkgs/tools/security/duo-unix/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
[ "--with-pam=$(out)/lib/security"
"--prefix=$(out)"
"--sysconfdir=$(out)/etc/duo"
- "--with-openssl=${openssl}"
+ "--with-openssl=${openssl.dev}"
"--enable-lib64=no"
];
diff --git a/pkgs/tools/security/ecryptfs/default.nix b/pkgs/tools/security/ecryptfs/default.nix
index 08fee5c8c14..0c3a74d1249 100644
--- a/pkgs/tools/security/ecryptfs/default.nix
+++ b/pkgs/tools/security/ecryptfs/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "ecryptfs-${version}";
- version = "110";
+ version = "111";
src = fetchurl {
url = "http://launchpad.net/ecryptfs/trunk/${version}/+download/ecryptfs-utils_${version}.orig.tar.gz";
- sha256 = "1x03m9s409fmzjcnsa9f9ghzkpxcnj9irj05rx7jlwm5cach0lqs";
+ sha256 = "0zwq19siiwf09h7lwa7n7mgmrr8cxifp45lmwgcfr8c1gviv6b0i";
};
# TODO: replace wrapperDir below with from config.security.wrapperDir;
diff --git a/pkgs/tools/security/eid-mw/default.nix b/pkgs/tools/security/eid-mw/default.nix
index 23f10ba0750..5ee630539b6 100644
--- a/pkgs/tools/security/eid-mw/default.nix
+++ b/pkgs/tools/security/eid-mw/default.nix
@@ -4,10 +4,10 @@
stdenv.mkDerivation rec {
name = "eid-mw-${version}";
- version = "4.1.17";
+ version = "4.1.18";
src = fetchFromGitHub {
- sha256 = "11d4wafcbhamkqvcfqkpz1sq66jq7bxz07m777cqsnyibccns7q6";
+ sha256 = "049rxrlcwcb9yir8q2inmqlslp49alpgm4pccl138xl34cg1hyhl";
rev = "v${version}";
repo = "eid-mw";
owner = "Fedict";
diff --git a/pkgs/tools/security/john/default.nix b/pkgs/tools/security/john/default.nix
index dfaa56f0c77..c44f144bea6 100644
--- a/pkgs/tools/security/john/default.nix
+++ b/pkgs/tools/security/john/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, openssl, nss, nspr, kerberos, gmp, zlib, libpcap, re2
-, writeText
+, writeText, gcc
}:
with stdenv.lib;
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
preConfigure = "cd src";
configureFlags = [ "--disable-native-macro" ];
- buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 ];
+ buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 gcc ];
enableParallelBuilding = true;
NIX_CFLAGS_COMPILE = [ "-DJOHN_SYSTEMWIDE=1" ];
diff --git a/pkgs/tools/security/modsecurity/default.nix b/pkgs/tools/security/modsecurity/default.nix
index 09754f53a9e..0b6900fb214 100644
--- a/pkgs/tools/security/modsecurity/default.nix
+++ b/pkgs/tools/security/modsecurity/default.nix
@@ -17,11 +17,11 @@ stdenv.mkDerivation rec {
configureFlags = [
"--enable-standalone-module"
"--enable-static"
- "--with-curl=${curl}"
- "--with-apxs=${apacheHttpd}/bin/apxs"
- "--with-pcre=${pcre}"
- "--with-apr=${apr}"
- "--with-apu=${aprutil}/bin/apu-1-config"
+ "--with-curl=${curl.dev}"
+ "--with-apxs=${apacheHttpd.dev}/bin/apxs"
+ "--with-pcre=${pcre.dev}"
+ "--with-apr=${apr.dev}"
+ "--with-apu=${aprutil.dev}/bin/apu-1-config"
"--with-libxml=${libxml2}"
];
diff --git a/pkgs/tools/security/prey/default.nix b/pkgs/tools/security/prey/default.nix
index 656bb4aede0..bf1197c2bf2 100644
--- a/pkgs/tools/security/prey/default.nix
+++ b/pkgs/tools/security/prey/default.nix
@@ -34,7 +34,7 @@ in stdenv.mkDerivation rec {
cp -R . $out
cp -R ${modulesSrc}/* $out/modules/
wrapProgram "$out/prey.sh" \
- --prefix PATH ":" "${xawtv}/bin:${imagemagick}/bin:${curl.bin}/bin:${scrot}/bin:${inetutils}/bin:${coreutils}/bin" \
+ --prefix PATH ":" "${xawtv}/bin:${imagemagick.out}/bin:${curl.bin}/bin:${scrot}/bin:${inetutils}/bin:${coreutils}/bin" \
--set CURL_CA_BUNDLE "/etc/ssl/certs/ca-certificates.crt"
'';
diff --git a/pkgs/tools/system/facter/default.nix b/pkgs/tools/system/facter/default.nix
index 6d162188a53..7176b491afa 100644
--- a/pkgs/tools/system/facter/default.nix
+++ b/pkgs/tools/system/facter/default.nix
@@ -1,14 +1,19 @@
-{ stdenv, fetchurl, boost, cmake, curl, leatherman, libyamlcpp, openssl, utillinux }:
+{ stdenv, fetchurl, boost, cmake, curl, leatherman, libyamlcpp, openssl, ruby, utillinux }:
stdenv.mkDerivation rec {
name = "facter-${version}";
- version = "3.1.5";
+ version = "3.1.6";
src = fetchurl {
url = "https://downloads.puppetlabs.com/facter/${name}.tar.gz";
- sha256 = "0k2k92y42zb6vf542zwkhvg15kv32yb4zvw6nlcqlgmyg19c5qmv";
+ sha256 = "1kv4k9zqpsiw362kk1rw1a4sixd0pmnh57ghd4k4pffr2dkmdfsv";
};
- buildInputs = [ boost cmake curl leatherman libyamlcpp openssl utillinux ];
+ cmakeFlags = [ "-DFACTER_RUBY=${ruby}/lib/libruby.so" ];
+
+ # since we cant expand $out in cmakeFlags
+ preConfigure = "cmakeFlags+=\" -DRUBY_LIB_INSTALL=$out/lib/ruby\"";
+
+ buildInputs = [ boost cmake curl leatherman libyamlcpp openssl ruby utillinux ];
meta = with stdenv.lib; {
homepage = https://github.com/puppetlabs/facter;
diff --git a/pkgs/tools/system/freeipmi/default.nix b/pkgs/tools/system/freeipmi/default.nix
index 3a88267f6c4..44e24910296 100644
--- a/pkgs/tools/system/freeipmi/default.nix
+++ b/pkgs/tools/system/freeipmi/default.nix
@@ -1,12 +1,12 @@
{ fetchurl, stdenv, libgcrypt, readline }:
stdenv.mkDerivation rec {
- version = "1.5.1";
+ version = "1.5.2";
name = "freeipmi-${version}";
src = fetchurl {
url = "mirror://gnu/freeipmi/${name}.tar.gz";
- sha256 = "0lhjxlha4j5rx11d81y1rgp9j18rlpxsjc0flsmj6bm60awmm627";
+ sha256 = "0xgfwk6lxwwzq8pbyxjl5xxpybs9p4qwgb7q0ykf048xwxha4kvk";
};
buildInputs = [ libgcrypt readline ];
diff --git a/pkgs/tools/system/monit/default.nix b/pkgs/tools/system/monit/default.nix
index 0ee32a49c07..66a2703932d 100644
--- a/pkgs/tools/system/monit/default.nix
+++ b/pkgs/tools/system/monit/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
buildInputs = [ openssl ] ++ stdenv.lib.optionals usePAM [ pam ];
configureFlags = [
- "--with-ssl-incl-dir=${openssl}/include"
+ "--with-ssl-incl-dir=${openssl.dev}/include"
"--with-ssl-lib-dir=${openssl.out}/lib"
] ++ stdenv.lib.optionals (! usePAM) [ "--without-pam" ];
diff --git a/pkgs/tools/system/pciutils/default.nix b/pkgs/tools/system/pciutils/default.nix
index 7c236588544..622f5fc6cea 100644
--- a/pkgs/tools/system/pciutils/default.nix
+++ b/pkgs/tools/system/pciutils/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, pkgconfig, zlib, kmod, which }:
stdenv.mkDerivation rec {
- name = "pciutils-3.4.1"; # with database from 2016-01
+ name = "pciutils-3.5.1"; # with database from 2016-05
src = fetchurl {
url = "mirror://kernel/software/utils/pciutils/${name}.tar.xz";
- sha256 = "0am8hiv435h2dayclnkdk8qjlpj08m4djf6sv15n9l84av658mc6";
+ sha256 = "0byl2f897w5lhs4bvr6p7qwcz9bllj2zyfv7nywbcbsnb9ha9wrb";
};
buildInputs = [ pkgconfig zlib kmod which ];
diff --git a/pkgs/tools/text/gawk/default.nix b/pkgs/tools/text/gawk/default.nix
index 8578960b987..c7e0857c2ca 100644
--- a/pkgs/tools/text/gawk/default.nix
+++ b/pkgs/tools/text/gawk/default.nix
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optional stdenv.isDarwin locale;
configureFlags = stdenv.lib.optional (stdenv.system != "x86_64-cygwin") "--with-libsigsegv-prefix=${libsigsegv}"
- ++ [(if interactive then "--with-readline=${readline}" else "--without-readline")];
+ ++ [(if interactive then "--with-readline=${readline.dev}" else "--without-readline")];
postInstall = "rm $out/bin/gawk-*";
diff --git a/pkgs/tools/text/platinum-searcher/default.nix b/pkgs/tools/text/platinum-searcher/default.nix
new file mode 100644
index 00000000000..ca4ac0b8a9a
--- /dev/null
+++ b/pkgs/tools/text/platinum-searcher/default.nix
@@ -0,0 +1,70 @@
+{ stdenv, lib, go, goPackages, fetchFromGitHub }:
+
+with goPackages;
+
+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 {
+ inherit rev;
+ owner = "monochromegane";
+ repo = "the_platinum_searcher";
+ 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";
+ };
+ }
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/monochromegane/the_platinum_searcher;
+ description = "A code search tool similar to ack and the_silver_searcher(ag).";
+ platforms = platforms.all;
+ license = licenses.mit;
+ };
+}
diff --git a/pkgs/tools/text/xml/xml2/default.nix b/pkgs/tools/text/xml/xml2/default.nix
index 89d56e030e0..203f0940990 100644
--- a/pkgs/tools/text/xml/xml2/default.nix
+++ b/pkgs/tools/text/xml/xml2/default.nix
@@ -14,6 +14,7 @@ stdenv.mkDerivation rec {
homepage = http://ofb.net/~egnor/xml2/;
description = "Tools for command line processing of XML, HTML, and CSV";
license = licenses.gpl2Plus;
+ platforms = platforms.all;
maintainers = [ maintainers.rycee ];
};
}
diff --git a/pkgs/tools/text/xml/xmlstarlet/default.nix b/pkgs/tools/text/xml/xmlstarlet/default.nix
index 74f7e08900a..b390a9c404a 100644
--- a/pkgs/tools/text/xml/xmlstarlet/default.nix
+++ b/pkgs/tools/text/xml/xmlstarlet/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
preConfigure =
''
- export LIBXSLT_PREFIX=${libxslt}
+ export LIBXSLT_PREFIX=${libxslt.dev}
export LIBXML_PREFIX=${libxml2}
export LIBXSLT_LIBS=$(pkg-config --libs libxslt libexslt)
export LIBXML_LIBS=$(pkg-config --libs libxml-2.0)
diff --git a/pkgs/tools/typesetting/asciidoc/default.nix b/pkgs/tools/typesetting/asciidoc/default.nix
index 7c393c52415..e623f67e64b 100644
--- a/pkgs/tools/typesetting/asciidoc/default.nix
+++ b/pkgs/tools/typesetting/asciidoc/default.nix
@@ -223,7 +223,7 @@ stdenv.mkDerivation rec {
sed -e "s|run('abc2ly|run('${lilypond}/bin/abc2ly|g" \
-e "s|run('lilypond|run('${lilypond}/bin/lilypond|g" \
- -e "s|run('convert|run('${imagemagick}/bin/convert|g" \
+ -e "s|run('convert|run('${imagemagick.out}/bin/convert|g" \
-i "filters/music/music2png.py"
sed -e 's|filter="source-highlight|filter="${sourceHighlight}/bin/source-highlight|' \
diff --git a/pkgs/tools/typesetting/tex/dblatex/default.nix b/pkgs/tools/typesetting/tex/dblatex/default.nix
index 0aab900f150..a7bc527042e 100644
--- a/pkgs/tools/typesetting/tex/dblatex/default.nix
+++ b/pkgs/tools/typesetting/tex/dblatex/default.nix
@@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
-e 's|cmd = "inkscape|cmd = "${inkscape}/bin/inkscape|g' \
-e 's|cmd = "fig2dev|cmd = "${transfig}/bin/fig2dev|g' \
-e 's|cmd = \["ps2pdf|cmd = ["${ghostscript}/bin/ps2pdf|g' \
- -e 's|cmd = "convert|cmd = "${imagemagick}/bin/convert|g' \
+ -e 's|cmd = "convert|cmd = "${imagemagick.out}/bin/convert|g' \
-i "$file"
done
'';
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index d8c8341cb5a..3f39248d01d 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -54,6 +54,7 @@ doNotDisplayTwice rec {
inotifyTools = inotify-tools;
joseki = apache-jena-fuseki; # added 2016-02-28
jquery_ui = jquery-ui; # added 2014-09-07
+ letsencrypt = certbot; # added 2016-05-16
libdbusmenu_qt5 = qt5.libdbusmenu; # added 2015-12-19
libcap_manpages = libcap.doc; # added 2016-04-29
libcap_pam = if stdenv.isLinux then libcap.pam else null; # added 2016-04-29
@@ -63,6 +64,8 @@ doNotDisplayTwice rec {
lttngTools = lttng-tools; # added 2014-07-31
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
@@ -74,6 +77,7 @@ doNotDisplayTwice rec {
pidginlatexSF = pidginlatex; # added 2014-11-02
poppler_qt5 = qt5.poppler; # added 2015-12-19
qca-qt5 = qt5.qca-qt5; # added 2015-12-19
+ QmidiNet = qmidinet; # added 2016-05-22
quake3game = ioquake3; # added 2016-01-14
quassel_kf5 = kde5.quassel; # added 2015-09-30
quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30
@@ -91,6 +95,7 @@ doNotDisplayTwice rec {
saneBackendsGit = sane-backends-git; # added 2016-01-02
saneFrontends = sane-frontends; # added 2016-01-02
scim = sc-im; # added 2016-01-22
+ spaceOrbit = space-orbit; # addewd 2016-05-23
speedtest_cli = speedtest-cli; # added 2015-02-17
sqliteInteractive = sqlite-interactive; # added 2014-12-06
system_config_printer = system-config-printer; # added 2016-01-03
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 53bb63fdbcc..4d1ec8e560d 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -455,7 +455,9 @@ in
atomicparsley = callPackage ../tools/video/atomicparsley { };
- attic = callPackage ../tools/backup/attic { };
+ attic = callPackage ../tools/backup/attic {
+ python3Packages = python34Packages;
+ };
avfs = callPackage ../tools/filesystems/avfs { };
@@ -584,6 +586,8 @@ in
bindfs = callPackage ../tools/filesystems/bindfs { };
+ bins = callPackage ../tools/graphics/bins { };
+
binwalk = callPackage ../tools/misc/binwalk {
python = pythonFull;
wrapPython = pythonPackages.wrapPython;
@@ -614,7 +618,9 @@ in
bochs = callPackage ../applications/virtualization/bochs { };
- borgbackup = callPackage ../tools/backup/borg { };
+ borgbackup = callPackage ../tools/backup/borg {
+ python3Packages = python34Packages;
+ };
boomerang = callPackage ../development/tools/boomerang { };
@@ -777,7 +783,9 @@ in
ent = callPackage ../tools/misc/ent { };
- facter = callPackage ../tools/system/facter {};
+ facter = callPackage ../tools/system/facter {
+ ruby = ruby_2_1;
+ };
fasd = callPackage ../tools/misc/fasd { };
@@ -787,12 +795,16 @@ in
fop = callPackage ../tools/typesetting/fop { };
+ fondu = callPackage ../tools/misc/fondu { };
+
fpp = callPackage ../tools/misc/fpp { };
fsmark = callPackage ../tools/misc/fsmark { };
fzf = goPackages.fzf.bin // { outputs = [ "bin" ]; };
+ fzy = callPackage ../tools/misc/fzy { };
+
gencfsm = callPackage ../tools/security/gencfsm { };
genromfs = callPackage ../tools/filesystems/genromfs { };
@@ -945,8 +957,7 @@ in
};
bup = callPackage ../tools/backup/bup {
- inherit (pythonPackages) pyxattr pylibacl setuptools fuse;
- par2Support = (config.bup.par2Support or false);
+ par2Support = config.bup.par2Support or false;
};
burp_1_3 = callPackage ../tools/backup/burp/1.3.48.nix { };
@@ -1191,6 +1202,8 @@ in
cudatoolkit = self.cudatoolkit7;
+ cudnn = callPackage ../development/libraries/science/math/cudnn/default.nix {};
+
curlFull = self.curl.override {
idnSupport = true;
ldapSupport = true;
@@ -1480,6 +1493,7 @@ in
table-other = callPackage ../tools/inputmethods/fcitx-engines/fcitx-table-other { };
+ cloudpinyin = callPackage ../tools/inputmethods/fcitx-engines/fcitx-cloudpinyin { };
};
fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { };
@@ -1954,6 +1968,8 @@ in
hping = callPackage ../tools/networking/hping { };
+ http-prompt = callPackage ../tools/networking/http-prompt { };
+
httpie = callPackage ../tools/networking/httpie { };
httping = callPackage ../tools/networking/httping {};
@@ -2093,7 +2109,9 @@ in
jnettop = callPackage ../tools/networking/jnettop { };
- john = callPackage ../tools/security/john { };
+ john = callPackage ../tools/security/john {
+ gcc = gcc49; # doesn't build with gcc5
+ };
jp2a = callPackage ../applications/misc/jp2a { };
@@ -2363,9 +2381,9 @@ in
makemkv = callPackage ../applications/video/makemkv { };
- man = callPackage ../tools/misc/man { };
+ man-old = callPackage ../tools/misc/man { };
- man_db = callPackage ../tools/misc/man-db { };
+ man-db = callPackage ../tools/misc/man-db { };
mawk = callPackage ../tools/text/mawk { };
@@ -2482,6 +2500,10 @@ in
mtr = callPackage ../tools/networking/mtr {};
+ mtx = callPackage ../tools/backup/mtx {};
+
+ mt-st = callPackage ../tools/backup/mt-st {};
+
multitran = recurseIntoAttrs (let callPackage = newScope pkgs.multitran; in rec {
multitrandata = callPackage ../tools/text/multitran/data { };
@@ -2745,7 +2767,7 @@ in
libpng = libpng12;
};
- oslrd = callPackage ../tools/networking/oslrd { };
+ olsrd = callPackage ../tools/networking/olsrd { };
ossec = callPackage ../tools/security/ossec {};
@@ -2787,7 +2809,7 @@ in
pamtester = callPackage ../tools/security/pamtester { };
- paper-gtk-theme = callPackage ../misc/themes/gtk3/paper-gtk-theme { };
+ paper-gtk-theme = callPackage ../misc/themes/paper-gtk-theme { };
par2cmdline = callPackage ../tools/networking/par2cmdline { };
@@ -2804,7 +2826,11 @@ in
pitivi = callPackage ../applications/video/pitivi {
gst = gst_all_1 //
{ gst-plugins-bad = gst_all_1.gst-plugins-bad.overrideDerivation
- (attrs: { nativeBuildInputs = attrs.nativeBuildInputs ++ [ gtk3 ]; });
+ (attrs: { nativeBuildInputs = attrs.nativeBuildInputs ++ [ gtk3 ];
+ # Fix this build error in ./tests/examples/waylandsink:
+ # main.c:28:2: error: #error "Wayland is not supported in GTK+"
+ configureFlags = attrs.configureFlags or "" + "--enable-wayland=no";
+ });
};
};
@@ -2919,6 +2945,8 @@ in
platformioPackages = callPackage ../development/arduino/platformio { };
platformio = platformioPackages.platformio-chrootenv.override {};
+ platinum-searcher = (callPackage ../tools/text/platinum-searcher { }).bin // { outputs = [ "bin" ]; };
+
plex = callPackage ../servers/plex { enablePlexPass = config.plex.enablePlexPass or false; };
ploticus = callPackage ../tools/graphics/ploticus {
@@ -3029,6 +3057,8 @@ in
sip = pythonPackages.sip_4_16;
};
+ qnial = callPackage ../development/interpreters/qnial {};
+
ocz-ssd-guru = callPackage ../tools/misc/ocz-ssd-guru { };
qalculate-gtk = callPackage ../applications/science/math/qalculate-gtk { };
@@ -3469,6 +3499,8 @@ in
timemachine = callPackage ../applications/audio/timemachine { };
+ timetrap = callPackage ../applications/office/timetrap { };
+
tinc = callPackage ../tools/networking/tinc { };
tinc_pre = callPackage ../tools/networking/tinc/pre.nix { };
@@ -3507,6 +3539,8 @@ in
torsocks = callPackage ../tools/security/tor/torsocks.nix { };
+ toxvpn = callPackage ../tools/networking/toxvpn { };
+
tpmmanager = callPackage ../applications/misc/tpmmanager { };
tpm-quote-tools = callPackage ../tools/security/tpm-quote-tools { };
@@ -3525,6 +3559,10 @@ in
tracebox = callPackage ../tools/networking/tracebox { };
+ tracefilegen = callPackage ../development/tools/analysis/garcosim/tracefilegen { };
+
+ tracefilesim = callPackage ../development/tools/analysis/garcosim/tracefilesim { };
+
trash-cli = callPackage ../tools/misc/trash-cli { };
trickle = callPackage ../tools/networking/trickle {};
@@ -3900,6 +3938,13 @@ in
xe-guest-utilities = callPackage ../tools/virtualization/xe-guest-utilities { };
xflux = callPackage ../tools/misc/xflux { };
+ xflux-gui = callPackage ../tools/misc/xflux/gui.nix {
+ pexpect = pythonPackages.pexpect;
+ pyGtkGlade = pythonPackages.pyGtkGlade;
+ pygobject = pythonPackages.pygobject;
+ pyxdg = pythonPackages.pyxdg;
+ gnome_python = gnome.gnome_python;
+ };
xfsprogs = callPackage ../tools/filesystems/xfsprogs { };
libxfs = self.xfsprogs.dev; # outputs TODO
@@ -5184,6 +5229,10 @@ in
ocamlnat = newScope pkgs.ocamlPackages_3_12_1 ../development/ocaml-modules/ocamlnat { };
+ picat = callPackage ../development/compilers/picat {
+ stdenv = overrideCC stdenv gcc49;
+ };
+
ponyc = callPackage ../development/compilers/ponyc {
llvm = llvm_36;
};
@@ -5508,9 +5557,9 @@ in
};
octave = callPackage ../development/interpreters/octave {
- fltk = fltk13.override { cfg.xftSupport = true; };
qt = null;
ghostscript = null;
+ graphicsmagick = null;
llvm = null;
hdf5 = null;
glpk = null;
@@ -5519,7 +5568,6 @@ in
openblas = openblasCompat;
};
octaveFull = (lowPrio (callPackage ../development/interpreters/octave {
- fltk = fltk13.override { cfg.xftSupport = true; };
qt = qt4;
}));
@@ -5566,12 +5614,12 @@ in
python = python2;
python2 = python27;
- python3 = python34;
+ python3 = python35;
# pythonPackages further below, but assigned here because they need to be in sync
pythonPackages = python2Packages;
python2Packages = python27Packages;
- python3Packages = python34Packages;
+ python3Packages = python35Packages;
python26 = callPackage ../development/interpreters/python/2.6 {
db = db47;
@@ -5779,7 +5827,9 @@ in
apacheAnt = callPackage ../development/tools/build-managers/apache-ant { };
- apacheKafka = callPackage ../servers/apache-kafka { };
+ apacheKafka = apacheKafka_0_9;
+ apacheKafka_0_8 = callPackage ../servers/apache-kafka { majorVersion = "0.8"; };
+ apacheKafka_0_9 = callPackage ../servers/apache-kafka { majorVersion = "0.9"; };
astyle = callPackage ../development/tools/misc/astyle { };
@@ -6100,6 +6150,7 @@ in
gnumake3 = self.gnumake382;
gnumake40 = callPackage ../development/tools/build-managers/gnumake/4.0 { };
gnumake41 = callPackage ../development/tools/build-managers/gnumake/4.1 { };
+ gnumake42 = callPackage ../development/tools/build-managers/gnumake/4.2 { };
gnumake = self.gnumake41;
gob2 = callPackage ../development/tools/misc/gob2 { };
@@ -6283,7 +6334,7 @@ in
premake = premake4;
qtcreator = qt5.callPackage ../development/qtcreator {
- withDocumentation = true;
+ withDocumentation = false; # 'true' is currently broken with qt>=5.5
};
racerRust = callPackage ../development/tools/rust/racer { };
@@ -6318,6 +6369,8 @@ in
ruby = ruby_2_0;
};
+ redo = callPackage ../development/tools/build-managers/redo { };
+
re2c = callPackage ../development/tools/parsing/re2c { };
remake = callPackage ../development/tools/build-managers/remake { };
@@ -6572,7 +6625,6 @@ in
botanUnstable = callPackage ../development/libraries/botan/unstable.nix { };
box2d = callPackage ../development/libraries/box2d { };
- box2d_2_0_1 = callPackage ../development/libraries/box2d/2.0.1.nix { };
breakpad = callPackage ../development/libraries/breakpad { };
@@ -6606,6 +6658,8 @@ in
cegui = callPackage ../development/libraries/cegui {};
+ certbot = callPackage ../tools/admin/certbot { };
+
cgal = callPackage ../development/libraries/CGAL {};
cgui = callPackage ../development/libraries/cgui {};
@@ -6853,9 +6907,8 @@ in
flite = callPackage ../development/libraries/flite { };
- fltk13 = callPackage ../development/libraries/fltk/fltk13.nix { };
-
- fltk20 = callPackage ../development/libraries/fltk { };
+ fltk13 = callPackage ../development/libraries/fltk { };
+ fltk = self.fltk13;
fmod = callPackage ../development/libraries/fmod { };
@@ -7406,8 +7459,6 @@ in
libpng = libpng12;
};
- letsencrypt = callPackage ../tools/admin/letsencrypt { };
-
lib3ds = callPackage ../development/libraries/lib3ds { };
libaacs = callPackage ../development/libraries/libaacs { };
@@ -8313,12 +8364,12 @@ in
# makes it slower, but during runtime we link against just mesa_drivers
# through /run/opengl-driver*, which is overriden according to config.grsecurity
grsecEnabled = true;
+ llvmPackages = llvmPackages_38; # various problems with 3.7; see #11367, #11467
});
mesa_glu = mesaDarwinOr (callPackage ../development/libraries/mesa-glu { });
mesa_drivers = mesaDarwinOr (
let mo = mesa_noglu.override {
grsecEnabled = config.grsecurity or false;
- llvmPackages = llvmPackages_36; # various problems with 3.7; see #11367, #11467
};
in mo.drivers
);
@@ -8565,6 +8616,8 @@ in
pcl = callPackage ../development/libraries/pcl {
vtk = vtkWithQt4;
+ inherit (darwin) cf-private;
+ inherit (darwin.apple_sdk.frameworks) Cocoa AGL;
};
pcre = callPackage ../development/libraries/pcre { };
@@ -8714,6 +8767,8 @@ in
accounts-qt = callPackage ../development/libraries/accounts-qt { };
+ fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { };
+
grantlee = callPackage ../development/libraries/grantlee/5.x.nix { };
libcommuni = callPackage ../development/libraries/libcommuni { };
@@ -9809,7 +9864,7 @@ in
grafana = (callPackage ../servers/monitoring/grafana { }).bin // { outputs = ["bin"]; };
- groovebasin = callPackage ../applications/audio/groovebasin { };
+ groovebasin = callPackage ../applications/audio/groovebasin { nodejs = nodejs-0_10; };
haka = callPackage ../tools/security/haka { };
@@ -10695,12 +10750,7 @@ in
# grsecurity configuration
grsecurity_base_linux_4_5 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.5.nix {
- kernelPatches = [ kernelPatches.bridge_stp_helper ]
- ++ lib.optionals ((platform.kernelArch or null) == "mips")
- [ kernelPatches.mips_fpureg_emu
- kernelPatches.mips_fpu_sigill
- kernelPatches.mips_ext3_n32
- ];
+ inherit (linux_4_5) kernelPatches;
};
grFlavors = import ../build-support/grsecurity/flavors.nix;
@@ -10738,6 +10788,8 @@ in
batman_adv = callPackage ../os-specific/linux/batman-adv {};
+ bcc = callPackage ../os-specific/linux/bcc { };
+
bbswitch = callPackage ../os-specific/linux/bbswitch {};
ati_drivers_x11 = callPackage ../os-specific/linux/ati-drivers { };
@@ -11112,6 +11164,8 @@ in
s3ql = callPackage ../tools/backup/s3ql { };
+ sass = callPackage ../development/tools/sass { };
+
sassc = callPackage ../development/tools/sassc { };
scanmem = callPackage ../tools/misc/scanmem { };
@@ -11536,6 +11590,8 @@ in
opensans-ttf = callPackage ../data/fonts/opensans-ttf { };
+ paper-icon-theme = callPackage ../data/icons/paper-icon-theme { };
+
pecita = callPackage ../data/fonts/pecita {};
paratype-pt-mono = callPackage ../data/fonts/paratype-pt/mono.nix {};
@@ -12416,9 +12472,7 @@ in
keepass-keefox = callPackage ../applications/misc/keepass-plugins/keefox { };
- exrdisplay = callPackage ../applications/graphics/exrdisplay {
- fltk = fltk20;
- };
+ exrdisplay = callPackage ../applications/graphics/exrdisplay { };
fbpanel = callPackage ../applications/window-managers/fbpanel { };
@@ -12514,7 +12568,7 @@ in
};
wireshark-gtk = wireshark-cli.override { withGtk = true; };
wireshark-qt = wireshark-cli.override { withQt = true; };
- wireshark = wireshark-gtk;
+ wireshark = wireshark-qt;
wvdial = callPackage ../os-specific/linux/wvdial { };
@@ -12752,10 +12806,6 @@ in
graphicsmagick = callPackage ../applications/graphics/graphicsmagick { };
graphicsmagick_q16 = callPackage ../applications/graphics/graphicsmagick { quantumdepth = 16; };
- graphicsmagick137 = callPackage ../applications/graphics/graphicsmagick/1.3.7.nix {
- libpng = libpng12;
- };
-
gtkpod = callPackage ../applications/audio/gtkpod {
gnome = gnome3;
inherit (gnome) libglade;
@@ -12784,6 +12834,8 @@ in
inherit (gnome) GConf;
};
+ gnome-mpv = callPackage ../applications/video/gnome-mpv { };
+
gollum = callPackage ../applications/misc/gollum { };
google-chrome = callPackage ../applications/networking/browsers/google-chrome { gconf = gnome.GConf; };
@@ -12831,6 +12883,8 @@ in
hackrf = callPackage ../applications/misc/hackrf { };
+ hakuneko = callPackage ../tools/misc/hakuneko { };
+
hamster-time-tracker = callPackage ../applications/misc/hamster-time-tracker {
inherit (pythonPackages) pyxdg pygtk dbus sqlite3;
inherit (gnome) gnome_python;
@@ -13380,6 +13434,10 @@ in
vaapiSupport = config.mpv.vaapiSupport or false;
};
+ mpvScripts = {
+ convert = callPackage ../applications/video/mpv/scripts/convert.nix {};
+ };
+
mrpeach = callPackage ../applications/audio/pd-plugins/mrpeach { };
mrxvt = callPackage ../applications/misc/mrxvt { };
@@ -13609,9 +13667,15 @@ in
paraview = callPackage ../applications/graphics/paraview { };
+ pbrt = callPackage ../applications/graphics/pbrt { };
+
+ pcsxr = callPackage ../misc/emulators/pcsxr { };
+
pcsx2 = callPackage_i686 ../misc/emulators/pcsx2 { };
- pencil = callPackage ../applications/graphics/pencil { };
+ pencil = callPackage ../applications/graphics/pencil {
+ xulrunner = firefox-unwrapped;
+ };
perseus = callPackage ../applications/science/math/perseus {};
@@ -13685,7 +13749,7 @@ in
pidgin-opensteamworks = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-opensteamworks { };
pithos = callPackage ../applications/audio/pithos {
- pythonPackages = python34Packages;
+ pythonPackages = python3Packages;
};
pinfo = callPackage ../applications/misc/pinfo { };
@@ -13701,6 +13765,8 @@ in
plugin-torture = callPackage ../applications/audio/plugin-torture { };
+ pmenu = callPackage ../applications/misc/pmenu { };
+
poezio = python3Packages.poezio;
pommed = callPackage ../os-specific/linux/pommed {};
@@ -13757,7 +13823,7 @@ in
qjackctl = callPackage ../applications/audio/qjackctl { };
- QmidiNet = callPackage ../applications/audio/QmidiNet { };
+ qmidinet = callPackage ../applications/audio/qmidinet { };
qmidiroute = callPackage ../applications/audio/qmidiroute { };
@@ -13769,6 +13835,10 @@ in
qsampler = callPackage ../applications/audio/qsampler { };
+ qscreenshot = callPackage ../applications/graphics/qscreenshot {
+ qt = qt4;
+ };
+
qsynth = callPackage ../applications/audio/qsynth { };
qtox = qt5.callPackage ../applications/networking/instant-messengers/qtox { };
@@ -13926,6 +13996,8 @@ in
gtk = gtk3;
};
+ shutter = callPackage ../applications/graphics/shutter { };
+
simple-scan = callPackage ../applications/graphics/simple-scan { };
siproxd = callPackage ../applications/networking/siproxd { };
@@ -14118,8 +14190,9 @@ in
symlinks = callPackage ../tools/system/symlinks { };
- syncthing = go15Packages.syncthing.bin // { outputs = [ "bin" ]; };
- syncthing011 = go15Packages.syncthing011.bin // { outputs = [ "bin" ]; };
+ syncthing = callPackage ../applications/networking/syncthing { };
+
+ syncthing012 = go15Packages.syncthing012.bin // { outputs = [ "bin" ]; };
# linux only by now
synergy = callPackage ../applications/misc/synergy { };
@@ -14155,7 +14228,7 @@ in
taskserver = callPackage ../servers/misc/taskserver { };
- tdesktop = qt55.callPackage ../applications/networking/instant-messengers/telegram/tdesktop { };
+ tdesktop = qt5.callPackage ../applications/networking/instant-messengers/telegram/tdesktop { };
telegram-cli = callPackage ../applications/networking/instant-messengers/telegram/telegram-cli { };
@@ -14500,6 +14573,8 @@ in
wrapFirefox = callPackage ../applications/networking/browsers/firefox/wrapper.nix { };
+ wp-cli = callPackage ../development/tools/wp-cli { };
+
retroArchCores =
let
cfg = config.retroarch or {};
@@ -14769,15 +14844,13 @@ in
pahole = callPackage ../development/tools/misc/pahole {};
- yarp = callPackage ../applications/science/misc/yarp {};
+ yarp = callPackage ../applications/science/robotics/yarp {};
yed = callPackage ../applications/graphics/yed {};
ykpers = callPackage ../applications/misc/ykpers {};
- yoshimi = callPackage ../applications/audio/yoshimi {
- fltk = fltk13.override { cfg.xftSupport = true; };
- };
+ yoshimi = callPackage ../applications/audio/yoshimi { };
zam-plugins = callPackage ../applications/audio/zam-plugins { };
@@ -14958,9 +15031,7 @@ in
fish-fillets-ng = callPackage ../games/fish-fillets-ng {};
- flightgear = qt5.callPackage ../games/flightgear {
- fltk13 = fltk13.override { cfg.xftSupport = true; };
- };
+ flightgear = qt5.callPackage ../games/flightgear { };
freecell-solver = callPackage ../games/freecell-solver { };
@@ -15199,7 +15270,7 @@ in
};
# You still can override by passing more arguments.
- spaceOrbit = callPackage ../games/orbit { };
+ space-orbit = callPackage ../games/space-orbit { };
spring = callPackage ../games/spring {
boost = boost155;
@@ -15652,7 +15723,7 @@ in
mate-themes = callPackage ../misc/themes/mate-themes { };
- numix-gtk-theme = callPackage ../misc/themes/gtk3/numix-gtk-theme { };
+ numix-gtk-theme = callPackage ../misc/themes/numix-gtk-theme { };
kde5PackagesFun = self: with self; {
@@ -15834,6 +15905,8 @@ in
openspecfun = callPackage ../development/libraries/science/math/openspecfun {};
+ magma = callPackage ../development/libraries/science/math/magma { };
+
mathematica = callPackage ../applications/science/math/mathematica { };
mathematica9 = callPackage ../applications/science/math/mathematica/9.nix { };
@@ -16476,6 +16549,8 @@ in
m3d-linux = callPackage ../misc/drivers/m3d-linux { };
+ mnemonicode = callPackage ../misc/mnemonicode { };
+
mysqlWorkbench = newScope gnome ../applications/misc/mysql-workbench {
lua = lua5_1;
libctemplate = libctemplate_2_2;
@@ -16824,6 +16899,8 @@ in
golden-cheetah = qt55.callPackage ../applications/misc/golden-cheetah {};
+ linkchecker = callPackage ../tools/networking/linkchecker { };
+
tomb = callPackage ../os-specific/linux/tomb {};
imatix_gsl = callPackage ../development/tools/imatix_gsl {};
diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix
index 283941b702f..e95622c053d 100644
--- a/pkgs/top-level/go-packages.nix
+++ b/pkgs/top-level/go-packages.nix
@@ -147,11 +147,11 @@ let
};
tools = buildFromGitHub {
- rev = "c887be1b2ebd11663d4bf2fbca508c449172339e";
- version = "2016-02-04";
+ rev = "9ae4729fba20b3533d829a9c6ba8195b068f2abc";
+ version = "2016-05-19";
owner = "golang";
repo = "tools";
- sha256 = "15cm7wmab5na4hphvriazlz639882z0ipb466xmp7500rn6f5kzf";
+ sha256 = "1j51aaskfqc953p5s9naqimr04hzfijm4yczdsiway1xnnvvpfr1";
goPackagePath = "golang.org/x/tools";
goPackageAliases = [ "code.google.com/p/go.tools" ];
@@ -206,11 +206,11 @@ let
};
adapted = buildFromGitHub {
- rev = "eaea06aaff855227a71b1c58b18bc6de822e3e77";
- version = "2015-06-03";
+ rev = "0dd5fa34d6f9d74c7c0deed1fc224f9a87e02978";
+ version = "2016-04-10";
owner = "michaelmacinnis";
repo = "adapted";
- sha256 = "0f28sn5mj48087zhjdrph2sjcznff1i1lwnwplx32bc5ax8nx5xm";
+ sha256 = "16n3a87m33pqx4qih713q3gw2j6ksj1q3ngjax6bpn5b11rqvikv";
propagatedBuildInputs = [ sys ];
};
@@ -831,16 +831,10 @@ let
};
errcheck = buildFromGitHub {
- rev = "f76568f8d87e48ccbbd17a827c2eaf31805bf58c";
+ rev = "8e25ad9d46f6c5d4e994edf82c57eb773a9aa73d";
owner = "kisielk";
repo = "errcheck";
- sha256 = "1y1cqd0ibgr03zf96q6aagk65yhv6vcnq9xa8nqhjpnz7jhfndhs";
- postPatch = ''
- for f in $(find -name "*.go"); do
- substituteInPlace $f \
- --replace '"go/types"' '"golang.org/x/tools/go/types"'
- done
- '';
+ sha256 = "1089qf05q8db8h6ayn1c1iaq4fcpv18z3k94dr27v31k6f73dzhg";
excludedPackages = [ "testdata" ];
buildInputs = [ gotool tools ];
};
@@ -875,10 +869,10 @@ let
};
flannel = buildFromGitHub {
- rev = "v0.5.3";
+ rev = "v0.5.5";
owner = "coreos";
repo = "flannel";
- sha256 = "0d9khv0bczvsaqnz16p546m4r5marmnkcrdhi0f3ajnwxb776r9p";
+ sha256 = "19nrilcc41411rag2qm22vdna4kpqm933ry9m82wkd7sqzb50fpw";
};
fsnotify.v1 = buildGoPackage rec {
@@ -2795,11 +2789,11 @@ let
};
oh = buildFromGitHub {
- rev = "22d91b0ea97f817cd5cccd90549f74923a57daa4";
- version = "2016-03-28";
+ rev = "0daaf4081475fb9d6b3801c85019bdd57b2ee9b4";
+ version = "2016-05-23";
owner = "michaelmacinnis";
repo = "oh";
- sha256 = "1dkw3c0d640g7ciw0mmbdq94zyykdcfada05m5amnqymknphmdvl";
+ sha256 = "0ajidzs0aisbw74nri9ks6sx6644nmwkisc9mvxm3f89zmnlsgwr";
goPackageAliases = [ "github.com/michaelmacinnis/oh" ];
buildInputs = [ adapted liner ];
disabled = isGo14;
@@ -3722,12 +3716,12 @@ let
sha256 = "094ksr2nlxhvxr58nbnzzk0prjskb21r86jmxqjr3rwg4rkwn6d4";
};
- syncthing = buildFromGitHub rec {
- version = "0.12.23";
+ syncthing012 = buildFromGitHub rec {
+ version = "0.12.25";
rev = "v${version}";
owner = "syncthing";
repo = "syncthing";
- sha256 = "0v8343k670ncjfd25hzhyfi87cz46k57rmv6pf30v7iclfhpmy1s";
+ sha256 = "108w7gvm3nbbsgp3h5p84fj4ba0siaz932i7yyryly486gzvpm43";
buildFlags = [ "-tags noupgrade,release" ];
disabled = isGo14;
buildInputs = [
@@ -3740,30 +3734,14 @@ let
'';
};
- syncthing011 = buildFromGitHub rec {
- version = "0.11.26";
- rev = "v${version}";
- owner = "syncthing";
- repo = "syncthing";
- sha256 = "0c0dcvxrvjc84dvrsv90790aawkmavsj9bwp8c6cd6wrwj3cp9lq";
- buildInputs = [
- go-lz4 du luhn xdr snappy ratelimit osext syncthing-protocol011
- goleveldb suture qart crypto net text
- ];
- postPatch = ''
- # Mostly a cosmetic change
- sed -i 's,unknown-dev,${version},g' cmd/syncthing/main.go
- '';
- };
-
syncthing-lib = buildFromGitHub {
- inherit (syncthing) rev owner repo sha256;
+ inherit (syncthing012) rev owner repo sha256;
subPackages = [ "lib/sync" ];
- propagatedBuildInputs = syncthing.buildInputs;
+ propagatedBuildInputs = syncthing012.buildInputs;
};
syncthing-protocol = buildFromGitHub {
- inherit (syncthing) rev owner repo sha256;
+ inherit (syncthing012) rev owner repo sha256;
subPackages = [ "lib/protocol" ];
propagatedBuildInputs = [
go-lz4
@@ -3773,15 +3751,6 @@ let
text ];
};
- syncthing-protocol011 = buildFromGitHub {
- rev = "84365882de255d2204d0eeda8dee288082a27f98";
- version = "2015-08-28";
- owner = "syncthing";
- repo = "protocol";
- sha256 = "07xjs43lpd51pc339f8x487yhs39riysj3ifbjxsx329kljbflwx";
- propagatedBuildInputs = [ go-lz4 logger luhn xdr text ];
- };
-
tablewriter = buildFromGitHub {
rev = "cca8bbc0798408af109aaaa239cbd2634846b340";
version = "2016-01-15";
@@ -4064,11 +4033,11 @@ let
};
godep = buildFromGitHub rec {
- version = "60";
+ version = "71";
rev = "v${version}";
owner = "tools";
repo = "godep";
- sha256 = "1v05185ikfcb3sz9ygcwm9x8la77i27ml1bg9fs6vvahjzyr0rif";
+ sha256 = "08dndq9lakw7civz4h44mwmmnc6qflsfhp8c7c21l95zvmavbly7";
};
color = buildFromGitHub {
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index 3401e967fe8..3b3c2099de1 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -392,7 +392,16 @@ rec {
lts-5_15 = packages.ghc7103.override {
packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.15.nix { };
};
- lts-5 = packages.lts-5_15;
+ lts-5_16 = packages.ghc7103.override {
+ packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.16.nix { };
+ };
+ lts-5_17 = packages.ghc7103.override {
+ packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.17.nix { };
+ };
+ lts-5_18 = packages.ghc7103.override {
+ packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.18.nix { };
+ };
+ lts-5 = packages.lts-5_18;
lts = packages.lts-5;
};
diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix
index abd4a812341..980c0aca633 100644
--- a/pkgs/top-level/lua-packages.nix
+++ b/pkgs/top-level/lua-packages.nix
@@ -271,7 +271,7 @@ let
buildPhase = let
luaVariable = "LUA_PATH=${luastdlib}/share/lua/${lua.luaversion}/?.lua";
- pcreVariable = "PCRE_DIR=${pcre}";
+ pcreVariable = "PCRE_DIR=${pcre.dev}";
onigVariable = "ONIG_DIR=${oniguruma}";
gnuVariable = "GNU_INCDIR=${gnulib}/lib";
treVariable = "TRE_DIR=${tre}";
diff --git a/pkgs/top-level/node-packages-generated.nix b/pkgs/top-level/node-packages-generated.nix
index 229461b82f7..3237a975e49 100644
--- a/pkgs/top-level/node-packages-generated.nix
+++ b/pkgs/top-level/node-packages-generated.nix
@@ -35809,7 +35809,7 @@
src = fetchgit {
url = "https://github.com/tstarling/pegjs";
rev = "9162b1e114e41992dd0fdafa24d2574a0b8a836a";
- sha256 = "11f0b6b159709bc7c9223c0c8013b3e307b87ea6bbfcf615b804b2d67fe3813a";
+ sha256 = "1aj0vgdwyir7z4aals6njrd92as27bflhlm5bp0fgi0lvvlwinnh";
};
deps = {
};
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 7ffdebd6415..5c4d28ee200 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -403,7 +403,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Provide an interface to ZIP archive files";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -740,7 +740,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Perl client for B, in C language";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = with maintainers; [ ];
platforms = stdenv.lib.platforms.unix;
};
@@ -768,7 +768,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "A lightweight cache with timed expiration";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -832,7 +832,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Alternative warn and die for modules";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -887,11 +887,15 @@ let self = _self // overrides; _self = with self; {
CatalystActionRenderView = buildPerlPackage rec {
name = "Catalyst-Action-RenderView-0.16";
src = fetchurl {
- url = "mirror://cpan/modules/by-module/Catalyst/${name}.tar.gz";
- sha256 = "0j1rrld13cjk7ks92b5hv3xw4rfm2lvmksb4rlzd8mx0a0wj0rc5";
+ url = "mirror://cpan/authors/id/B/BO/BOBTFISH/${name}.tar.gz";
+ sha256 = "8565203950a057d43ecd64e9593715d565c2fbd8b02c91f43c53b2111acd3948";
+ };
+ buildInputs = [ HTTPRequestAsCGI ];
+ propagatedBuildInputs = [ CatalystRuntime DataVisitor MROCompat ];
+ meta = {
+ description = "Sensible default end action";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
- propagatedBuildInputs =
- [ CatalystRuntime HTTPRequestAsCGI DataVisitor MROCompat ];
};
CatalystActionREST = buildPerlPackage rec {
@@ -904,7 +908,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ CatalystRuntime ClassInspector JSONMaybeXS MROCompat ModulePluggable Moose ParamsValidate URIFind namespaceautoclean ];
meta = {
description = "Automated REST Method Dispatching";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -953,24 +957,27 @@ let self = _self // overrides; _self = with self; {
name = "Catalyst-Component-InstancePerContext-0.001001";
src = fetchurl {
url = "mirror://cpan/authors/id/G/GR/GRODITI/${name}.tar.gz";
- sha256 = "0wfj4vnn2cvk6jh62amwlg050p37fcwdgrn9amcz24z6w4qgjqvz";
+ sha256 = "7f63f930e1e613f15955c9e6d73873675c50c0a3bc2a61a034733361ed26d271";
+ };
+ propagatedBuildInputs = [ CatalystRuntime Moose ];
+ meta = {
+ description = "Moose role to create only one instance of component per context";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
- propagatedBuildInputs = [CatalystRuntime Moose];
};
CatalystControllerHTMLFormFu = buildPerlPackage rec {
name = "Catalyst-Controller-HTML-FormFu-1.00";
src = fetchurl {
url = "mirror://cpan/authors/id/C/CF/CFRANKS/${name}.tar.gz";
- sha256 = "0b7if9sz23i4qv0yl0nrv6myfb6db1a1ivm9qp9wdk8nfwl9ncl4";
+ sha256 = "84329b287716cdc6d3c5a9ee185458cd2ce7abd9d902eac1c6240ef17572f12c";
+ };
+ buildInputs = [ CatalystActionRenderView CatalystPluginSession CatalystPluginSessionStateCookie CatalystPluginSessionStoreFile CatalystViewTT TemplateToolkit TestAggregate TestWWWMechanize TestWWWMechanizeCatalyst ];
+ propagatedBuildInputs = [ CatalystComponentInstancePerContext CatalystRuntime ConfigAny HTMLFormFu Moose MooseXAttributeChained RegexpAssemble TaskWeaken namespaceautoclean ];
+ meta = {
+ description = "Catalyst integration for HTML::FormFu";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
- buildInputs = [ CatalystActionRenderView CatalystPluginSession
- CatalystPluginSessionStateCookie CatalystPluginSessionStoreFile
- CatalystViewTT TemplateToolkit TestAggregate TestWWWMechanize
- TestWWWMechanizeCatalyst ];
- propagatedBuildInputs = [ CatalystComponentInstancePerContext CatalystRuntime
- CGI ConfigAny HTMLFormFu Moose MooseXAttributeChained RegexpAssemble TaskWeaken
- namespaceautoclean ];
};
CatalystControllerPOD = buildPerlPackage rec {
@@ -989,19 +996,19 @@ let self = _self // overrides; _self = with self; {
};
};
- CatalystDevel = buildPerlPackage {
+ CatalystDevel = buildPerlPackage rec {
name = "Catalyst-Devel-1.39";
src = fetchurl {
- url = mirror://cpan/authors/id/I/IL/ILMARI/Catalyst-Devel-1.39.tar.gz;
- sha256 = "12m50bbkggjmpxihv3wnvr0g2qng0zwhlzi5ygppjz8wh2x73qxw";
+ url = "mirror://cpan/authors/id/I/IL/ILMARI/${name}.tar.gz";
+ sha256 = "bce371ba801c7d79eff3257e0af907cf62f140de968f0d63bf55be37d702a58a";
};
buildInputs = [ TestFatal ];
- propagatedBuildInputs = [ CatalystRuntime CatalystActionRenderView CatalystPluginConfigLoader CatalystPluginStaticSimple ConfigGeneral FileChangeNotify FileCopyRecursive FileShareDir ModuleInstall Moose MooseXDaemonize MooseXEmulateClassAccessorFast namespaceautoclean namespaceclean PathClass Starman TemplateToolkit ];
+ propagatedBuildInputs = [ CatalystActionRenderView CatalystPluginConfigLoader CatalystPluginStaticSimple CatalystRuntime ConfigGeneral FileChangeNotify FileCopyRecursive FileShareDir ModuleInstall Moose MooseXDaemonize MooseXEmulateClassAccessorFast PathClass TemplateToolkit Starman namespaceautoclean namespaceclean ];
meta = {
homepage = http://dev.catalyst.perl.org/;
description = "Catalyst Development Tools";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
- platforms = stdenv.lib.platforms.linux;
+ platforms = stdenv.lib.platforms.all;
};
};
@@ -1069,34 +1076,33 @@ let self = _self // overrides; _self = with self; {
};
};
- CatalystRuntime = buildPerlPackage {
- name = "Catalyst-Runtime-5.90085";
+ CatalystRuntime = buildPerlPackage rec {
+ name = "Catalyst-Runtime-5.90104";
src = fetchurl {
- url = mirror://cpan/authors/id/J/JJ/JJNAPIORK/Catalyst-Runtime-5.90085.tar.gz;
- sha256 = "17wfcawvj8nxs2wq7r094m6dff37s6i2d2z49lxz2n8c489d9nk1";
+ url = "mirror://cpan/authors/id/J/JJ/JJNAPIORK/${name}.tar.gz";
+ sha256 = "91d551944beb3a0ae8635c78d5f2e1583ef1e7873d5c8ee407e2f64380ad870b";
};
- buildInputs = [ DataDump HTTPMessage IOstringy JSONMaybeXS TestFatal ];
- propagatedBuildInputs = [ CGISimple CGIStruct ClassC3AdoptNEXT ClassDataInheritable ClassLoad DataDump DataOptList Encode HTMLParser HTTPBody HTTPMessage HTTPRequestAsCGI HashMultiValue JSONMaybeXS LWP ListMoreUtils MROCompat ModulePluggable Moose MooseXEmulateClassAccessorFast MooseXGetopt MooseXMethodAttributes MooseXRoleWithOverloading PathClass Plack PlackMiddlewareFixMissingBodyInRedirect PlackMiddlewareMethodOverride PlackMiddlewareRemoveRedundantBody PlackMiddlewareReverseProxy PlackTestExternalServer SafeIsa StreamBuffered StringRewritePrefix SubExporter TaskWeaken TermSizeAny TextSimpleTable TreeSimple TreeSimpleVisitorFactory TryTiny URI URIws namespaceautoclean namespaceclean ];
+ buildInputs = [ DataDump HTTPMessage IOstringy JSONMaybeXS TestFatal TypeTiny ];
+ propagatedBuildInputs = [ CGISimple CGIStruct ClassC3AdoptNEXT ClassDataInheritable ClassLoad DataDump DataOptList HTMLParser HTTPBody HTTPMessage HTTPRequestAsCGI HashMultiValue JSONMaybeXS LWP ListMoreUtils MROCompat ModulePluggable Moose MooseXEmulateClassAccessorFast MooseXGetopt MooseXMethodAttributes MooseXRoleWithOverloading PathClass Plack PlackMiddlewareFixMissingBodyInRedirect PlackMiddlewareMethodOverride PlackMiddlewareRemoveRedundantBody PlackMiddlewareReverseProxy PlackTestExternalServer SafeIsa StreamBuffered StringRewritePrefix SubExporter TaskWeaken TextSimpleTable TreeSimple TreeSimpleVisitorFactory TryTiny URI URIws namespaceautoclean namespaceclean ];
meta = {
homepage = http://dev.catalyst.perl.org/;
description = "The Catalyst Framework Runtime";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
- platforms = stdenv.lib.platforms.linux;
+ platforms = stdenv.lib.platforms.all;
};
};
- CatalystPluginAccessLog = buildPerlPackage {
- name = "Catalyst-Plugin-AccessLog-1.05";
+ CatalystPluginAccessLog = buildPerlPackage rec {
+ name = "Catalyst-Plugin-AccessLog-1.10";
src = fetchurl {
- url = mirror://cpan/authors/id/A/AR/ARODLAND/Catalyst-Plugin-AccessLog-1.05.tar.gz;
- sha256 = "0hqvckaw91q5yc25a33bp0d4qqxlgkp7rxlvi8n8svxd1406r55s";
+ url = "mirror://cpan/authors/id/A/AR/ARODLAND/${name}.tar.gz";
+ sha256 = "873db8e4e72a994e3e17aeb53d2b837e6d524b4b8b0f3539f262135c88cc2120";
};
propagatedBuildInputs = [ CatalystRuntime DateTime Moose namespaceautoclean ];
- doCheck = false;
meta = {
+ homepage = http://metacpan.org/release/Catalyst-Plugin-AccessLog;
description = "Request logging from within Catalyst";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
- platforms = stdenv.lib.platforms.linux;
};
};
@@ -1392,7 +1398,7 @@ let self = _self // overrides; _self = with self; {
buildInputs = [ TestWWWMechanizeCatalyst Testuseok ];
propagatedBuildInputs = [ CatalystRuntime TextCSV XMLSimple ];
meta = {
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
platforms = stdenv.lib.platforms.linux;
};
};
@@ -1456,7 +1462,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ CatalystXRoleApplicator Moose URI namespaceautoclean ];
meta = {
description = "Replace request base with value passed by HTTP proxy";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
platforms = stdenv.lib.platforms.linux;
};
};
@@ -1511,7 +1517,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://github.com/tokuhirom/p5-cgi-emulate-psgi;
description = "PSGI adapter for CGI";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -1539,7 +1545,7 @@ let self = _self // overrides; _self = with self; {
doCheck = false;
meta = {
homepage = https://metacpan.org/module/CGI::Fast;
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -1562,7 +1568,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ CGI ];
meta = {
description = "Adapt CGI.pm to the PSGI protocol";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -1672,7 +1678,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "A minimalistic variant of Class::Accessor";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -1750,7 +1756,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ ParamsValidate ];
meta = {
description = "Glues object frameworks together transparently";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -1949,7 +1955,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Support for creating standard 'inside-out' classes";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -2018,7 +2024,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Interface to Bzip2 compression library";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -2032,7 +2038,7 @@ let self = _self // overrides; _self = with self; {
# Don't build a private copy of bzip2.
BUILD_BZIP2 = false;
BZIP2_LIB = "${pkgs.bzip2.out}/lib";
- BZIP2_INCLUDE = "${pkgs.bzip2}/include";
+ BZIP2_INCLUDE = "${pkgs.bzip2.dev}/include";
meta = {
homepage = http://search.cpan.org/perldoc?CPAN::Meta::Spec;
@@ -2066,7 +2072,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ ModulePluggable ];
meta = {
description = "Load configuration from different file formats, transparently";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -2104,7 +2110,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ Moo MooXTypesMooseLike ];
meta = {
description = "Git-compatible config file parsing";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -2133,7 +2139,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ ConfigAny ];
meta = {
description = "Load a configuration directory tree containing YAML, JSON, XML, Perl, INI or Config::General files";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -2198,7 +2204,7 @@ let self = _self // overrides; _self = with self; {
doCheck = false;
meta = {
description = "Simple, versioned access to configuration data";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -2230,7 +2236,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ ListUtilsBy ModulePluggable ];
meta = {
description = "Color space conversions and named lookups";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -2405,7 +2411,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = http://github.com/jib/cpanplus-devel;
description = "Ameliorated interface to the CPAN";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -2487,7 +2493,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ CryptX JSONMaybeXS ];
meta = {
description = "JSON Web Token";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -2508,7 +2514,7 @@ let self = _self // overrides; _self = with self; {
buildInputs = [ pkgs.unzip ];
propagatedBuildInputs = [ ConvertASN1 ];
meta = {
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -2584,7 +2590,7 @@ let self = _self // overrides; _self = with self; {
url = "mirror://cpan/authors/id/T/TT/TTAR/${name}.tar.gz";
sha256 = "b66fab514edf97fc32f58da257582704a210c2b35e297d5c31b7fa2ffd08e908";
};
- NIX_CFLAGS_COMPILE = "-I${pkgs.openssl}/include";
+ NIX_CFLAGS_COMPILE = "-I${pkgs.openssl.dev}/include";
NIX_CFLAGS_LINK = "-L${pkgs.openssl.out}/lib -lcrypto";
meta = with stdenv.lib; {
homepage = https://metacpan.org/release/Crypt-OpenSSL-AES;
@@ -2601,7 +2607,7 @@ let self = _self // overrides; _self = with self; {
url = "mirror://cpan/authors/id/I/IR/IROBERTS/${name}.tar.gz";
sha256 = "18vg2bqyhc0ahfdh5dkbgph5nh92qcz5vi99jq8aam4h86if78bk";
};
- NIX_CFLAGS_COMPILE = "-I${pkgs.openssl}/include";
+ NIX_CFLAGS_COMPILE = "-I${pkgs.openssl.dev}/include";
NIX_CFLAGS_LINK = "-L${pkgs.openssl.out}/lib -lcrypto";
};
@@ -2611,7 +2617,7 @@ let self = _self // overrides; _self = with self; {
url = "mirror://cpan/authors/id/R/RU/RURBAN/${name}.tar.gz";
sha256 = "12pirh1pj8lpvzcwj2if9i6dbr6a7s9g1zc7gzbd3v87d6mx0rdf";
};
- NIX_CFLAGS_COMPILE = "-I${pkgs.openssl}/include";
+ NIX_CFLAGS_COMPILE = "-I${pkgs.openssl.dev}/include";
NIX_CFLAGS_LINK = "-L${pkgs.openssl.out}/lib -lcrypto";
};
@@ -2622,7 +2628,7 @@ let self = _self // overrides; _self = with self; {
sha256 = "5357f977464bb3a8184cf2d3341851a10d5515b4b2b0dfb88bf78995c0ded7be";
};
propagatedBuildInputs = [ CryptOpenSSLRandom ];
- NIX_CFLAGS_COMPILE = "-I${pkgs.openssl}/include";
+ NIX_CFLAGS_COMPILE = "-I${pkgs.openssl.dev}/include";
NIX_CFLAGS_LINK = "-L${pkgs.openssl.out}/lib -lcrypto";
};
@@ -2632,7 +2638,7 @@ let self = _self // overrides; _self = with self; {
url = "mirror://cpan/authors/id/N/NA/NANIS/${name}.tar.gz";
sha256 = "1s7zm6ph37kg8jzaxnhi4ff4snxl7mi5h14arxbri0kp6s0lzlzm";
};
- makeMakerFlags = "--libpath=${pkgs.openssl.out}/lib --incpath=${pkgs.openssl}/include";
+ makeMakerFlags = "--libpath=${pkgs.openssl.out}/lib --incpath=${pkgs.openssl.dev}/include";
buildInputs = [ PathClass TryTiny ];
};
@@ -3100,7 +3106,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ DateTime DateTimeEventRecurrence ];
meta = {
description = "DateTime rfc2445 recurrences";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -3532,13 +3538,15 @@ let self = _self // overrides; _self = with self; {
};
DBIxClassCandy = buildPerlPackage rec {
- name = "DBIx-Class-Candy-0.005000";
+ name = "DBIx-Class-Candy-0.005002";
src = fetchurl {
url = "mirror://cpan/authors/id/F/FR/FREW/${name}.tar.gz";
- sha256 = "1gnc88ych9wc9x76y4305z8b06bw76a81d6v024mfalwy35kcfvw";
+ sha256 = "fb109e765674a52e9eac03f52403bb3cf717254b8b9fa46f06a6f205392f987d";
};
- propagatedBuildInputs = [ TestDeep TestFatal DBIxClass LinguaENInflect StringCamelCase ];
+ buildInputs = [ TestDeep TestFatal ];
+ propagatedBuildInputs = [ DBIxClass LinguaENInflect MROCompat StringCamelCase SubExporter namespaceclean ];
meta = {
+ homepage = https://github.com/frioux/DBIx-Class-Candy;
description = "Sugar for your favorite ORM, DBIx::Class";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
@@ -3568,24 +3576,25 @@ let self = _self // overrides; _self = with self; {
};
DBIxClassHelpers = buildPerlPackage rec {
- name = "DBIx-Class-Helpers-2.031000";
+ name = "DBIx-Class-Helpers-2.032001";
src = fetchurl {
url = "mirror://cpan/authors/id/F/FR/FREW/${name}.tar.gz";
- sha256 = "0vbq3jk8j5akivdpc1g07knx47id1ynb7bvk8a1ki8j1w4siq35i";
+ sha256 = "c7af96d17e11f0957b7187bb6002341a7b130bb79b61f6d91b39178ef000eff5";
};
- propagatedBuildInputs = [ aliased DBIxIntrospector DBIxClassCandy TestDeep
- CarpClan DBDSQLite SafeIsa TextBrew DateTime DateTimeFormatSQLite ];
+ buildInputs = [ DBDSQLite DateTimeFormatSQLite TestDeep TestFatal TestRoo aliased ];
+ propagatedBuildInputs = [ CarpClan DBIxClass DBIxClassCandy DBIxIntrospector LinguaENInflect ModuleRuntime Moo SafeIsa StringCamelCase SubExporterProgressive TextBrew TryTiny namespaceclean ];
meta = {
+ homepage = https://github.com/frioux/DBIx-Class-Helpers;
description = "Simplify the common case stuff for DBIx::Class";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
- DBIxClassIntrospectableM2M = buildPerlPackage {
- name = "DBIx-Class-IntrospectableM2M-0.001001";
+ DBIxClassIntrospectableM2M = buildPerlPackage rec {
+ name = "DBIx-Class-IntrospectableM2M-0.001002";
src = fetchurl {
- url = mirror://cpan/authors/id/G/GR/GRODITI/DBIx-Class-IntrospectableM2M-0.001001.tar.gz;
- sha256 = "0p9zx1yc1f6jg583l206wilsni2v8mlngc2vf2q8yn10pmy4y6wm";
+ url = "mirror://cpan/authors/id/I/IL/ILMARI/${name}.tar.gz";
+ sha256 = "c6baafb4241693fdb34b29ebd906993add364bf31aafa4462f3e062204cc87f0";
};
propagatedBuildInputs = [ DBIxClass ];
meta = {
@@ -3658,7 +3667,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ CacheSimpleTimedExpiry ClassAccessor ClassReturnValue Clone DBI DBIxDBSchema Want ];
meta = {
description = "Encapsulate SQL queries and rows in simple perl objects";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -3808,7 +3817,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Modules that calculate message digests";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -3875,7 +3884,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Perl interface to the MD-5 algorithm";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -4271,7 +4280,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ EmailAddress ];
meta = {
description = "RFC close address list parsing";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -4364,13 +4373,13 @@ let self = _self // overrides; _self = with self; {
};
EmailSender = buildPerlPackage rec {
- name = "Email-Sender-1.300021";
+ name = "Email-Sender-1.300028";
src = fetchurl {
url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz";
- sha256 = "f565ef5805ff54c5a77400b0a512709137092d247321bbe5065f265e2a7b4fed";
+ sha256 = "4a1cb9386a6b58b589b3183c807e533547a28e596fb15aa4cfd614947ad8ad30";
};
buildInputs = [ CaptureTiny ];
- propagatedBuildInputs = [ EmailAbstract EmailAddress EmailSimple ListMoreUtils Moo MooXTypesMooseLike SubExporterUtil Throwable ];
+ propagatedBuildInputs = [ libnet EmailAbstract EmailAddress EmailSimple ListMoreUtils ModuleRuntime Moo MooXTypesMooseLike SubExporter Throwable TryTiny ];
meta = {
homepage = https://github.com/rjbs/Email-Sender;
description = "A library for sending email";
@@ -4380,10 +4389,10 @@ let self = _self // overrides; _self = with self; {
};
EmailSimple = buildPerlPackage rec {
- name = "Email-Simple-2.208";
+ name = "Email-Simple-2.210";
src = fetchurl {
url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz";
- sha256 = "f13a83ecc41b4e72023066d865fc70dfbd85158d4e7722dca8249f54e0ec5be1";
+ sha256 = "c8633fa462538967c036e3077617de9e5e8f6acc68d25546ba1d5bb1e12bd319";
};
propagatedBuildInputs = [ EmailDateFormat ];
meta = {
@@ -4425,7 +4434,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Unknown";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -4492,7 +4501,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = http://search.cpan.org/dist/Env;
description = "Perl module that imports environment variables as scalars or arrays";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -4619,7 +4628,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://metacpan.org/release/Exporter-Tiny;
description = "An exporter with the features of Sub::Exporter but only core dependencies";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -4632,7 +4641,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = http://search.cpan.org/dist/ExtUtils-Command;
description = "Utilities to replace common UNIX commands in Makefiles etc";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -4646,7 +4655,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ IOTty ];
meta = {
description = "Automate interactions with command line programs that expose a text terminal interface";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -4658,7 +4667,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Implements default import method for modules";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -4734,7 +4743,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://metacpan.org/release/ExtUtils-Install;
description = "Install files from here to there";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -4952,7 +4961,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = http://search.cpan.org/dist/File-CheckTree;
description = "Run many filetest checks on a tree";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5129,15 +5138,15 @@ let self = _self // overrides; _self = with self; {
};
};
- FilePath = buildPerlPackage {
- name = "File-Path-2.11";
+ FilePath = buildPerlPackage rec {
+ name = "File-Path-2.12";
src = fetchurl {
- url = mirror://cpan/authors/id/R/RI/RICHE/File-Path-2.11.tar.gz;
- sha256 = "d94492c072d08bdbbd40fd75a1010ff279e99333b63b4308b1f818fe6309dd0f";
+ url = "mirror://cpan/authors/id/R/RI/RICHE/${name}.tar.gz";
+ sha256 = "bbf61a0d37c135c694e80f4ea344932bdc5474c213025ae307ea52cb6886d17e";
};
meta = {
description = "Create or remove directory trees";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5255,7 +5264,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "A simple, sane and efficient module to slurp a file";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5263,7 +5272,11 @@ let self = _self // overrides; _self = with self; {
name = "File-Slurp-Tiny-0.004";
src = fetchurl {
url = "mirror://cpan/authors/id/L/LE/LEONT/${name}.tar.gz";
- sha256 = "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5";
+ sha256 = "452995beeabf0e923e65fdc627a725dbb12c9e10c00d8018c16d10ba62757f1e";
+ };
+ meta = {
+ description = "A simple, sane and efficient file slurper [DISCOURAGED]";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5299,7 +5312,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Source Filters";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5311,7 +5324,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Simplified source filtering";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5481,7 +5494,7 @@ let self = _self // overrides; _self = with self; {
doCheck = false;
meta = {
description = "A Pure Perl interface to Git repositories";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5500,6 +5513,60 @@ let self = _self // overrides; _self = with self; {
};
};
+ Gnome2 = buildPerlPackage rec {
+ name = "Gnome2-1.046";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz";
+ sha256 = "a6c787232ab7e82a423a9ff5a49cec6bf586c1bb3c04c2052a91cdda5b66ae40";
+ };
+ buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gnome2Canvas Gnome2VFS Gtk2 ];
+ propagatedBuildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gnome2Canvas Gnome2VFS Gtk2 Pango pkgs.gnome2.libgnomeui ];
+ meta = {
+ homepage = http://gtk2-perl.sourceforge.net;
+ description = "Perl interface to the 2.x series of the GNOME libraries";
+ license = stdenv.lib.licenses.lgpl21Plus;
+ };
+ };
+
+ Gnome2Canvas = buildPerlPackage rec {
+ name = "Gnome2-Canvas-1.002";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/T/TS/TSCH/${name}.tar.gz";
+ sha256 = "47a34204cd5f3a0ef5c8b9e1c9c96f41740edab7e9abf1d0560fa8666ba1916e";
+ };
+ buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gtk2 Pango pkgs.gnome2.libgnomecanvas ];
+ meta = {
+ license = stdenv.lib.licenses.lgpl2Plus;
+ };
+ };
+
+ Gnome2VFS = buildPerlPackage rec {
+ name = "Gnome2-VFS-1.082";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz";
+ sha256 = "19dacfedef8770300861cb75f98ca5402e6e56501a888af3c18266a0790911b7";
+ };
+ propagatedBuildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib pkgs.gnome2.gnome_vfs ];
+ meta = {
+ description = "Perl interface to the 2.x series of the GNOME VFS library";
+ license = stdenv.lib.licenses.lgpl21Plus;
+ };
+ };
+
+ Gnome2Wnck = buildPerlPackage rec {
+ name = "Gnome2-Wnck-0.16";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/T/TS/TSCH/${name}.tar.gz";
+ sha256 = "604a8ece88ac29f132d59b0caac27657ec31371c1606a4698a2160e88ac586e5";
+ };
+ buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gtk2 Pango pkgs.libwnck pkgs.glib pkgs.gtk2 ];
+ propagatedBuildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gtk2 ];
+ meta = {
+ description = "Perl interface to the Window Navigator Construction Kit";
+ license = stdenv.lib.licenses.lgpl21Plus;
+ };
+ };
+
GnuPG = buildPerlPackage {
name = "GnuPG-0.19";
src = fetchurl {
@@ -5526,6 +5593,19 @@ let self = _self // overrides; _self = with self; {
};
};
+ GooCanvas = buildPerlPackage rec {
+ name = "Goo-Canvas-0.06";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/Y/YE/YEWENBIN/${name}.tar.gz";
+ sha256 = "0c588c507eed5e62d12ed1cc1e491c6ff3a1f59c4fb3d435e14214b37ab39251";
+ };
+ propagatedBuildInputs = [ Cairo ExtUtilsDepends ExtUtilsPkgConfig Glib Gtk2 Pango pkgs.goocanvas pkgs.gtk2 ];
+ meta = {
+ description = "Perl interface to the GooCanvas";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
GoogleProtocolBuffers = buildPerlPackage rec {
name = "Google-ProtocolBuffers-0.11";
src = fetchurl {
@@ -5610,6 +5690,53 @@ let self = _self // overrides; _self = with self; {
};
};
+ Gtk2AppIndicator = buildPerlPackage rec {
+ name = "Gtk2-AppIndicator-0.15";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/O/OE/OESTERHOL/${name}.tar.gz";
+ sha256 = "a25cb071e214fb89b4450aa4605031eae89b7961e149b0d6e8f491c19c14a90a";
+ };
+ propagatedBuildInputs = [ Gtk2 pkgs.libappindicator-gtk2 pkgs.libdbusmenu-gtk2 pkgs.gtk2 pkgs.pkgconfig Glib Pango ];
+ # Tests fail due to no display:
+ # Gtk-WARNING **: cannot open display: at /nix/store/HASH-perl-Gtk2-1.2498/lib/perl5/site_perl/5.22.2/x86_64-linux-thread-multi/Gtk2.pm line 126.
+ doCheck = false;
+ meta = {
+ description = "Perl extension for libappindicator";
+ license = stdenv.lib.licenses.artistic1;
+ };
+ };
+
+ Gtk2ImageView = buildPerlPackage rec {
+ name = "Gtk2-ImageView-0.05";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/R/RA/RATCLIFFE/${name}.tar.gz";
+ sha256 = "087186c3693acf196451cf59cc8b7f5cf9a7b05abe20d32dcbcba0822953fb80";
+ };
+ buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gtk2 Pango pkgs.gtkimageview pkgs.gtk2 ];
+ propagatedBuildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gtk2 ];
+ # Tests fail due to no display server:
+ # Gtk-WARNING **: cannot open display: at /nix/store/HASH-perl-Gtk2-1.2498/lib/perl5/site_perl/5.22.2/x86_64-linux-thread-multi/Gtk2.pm line 126.
+ # t/animview.t ...........
+ doCheck = false;
+ meta = {
+ description = "Perl bindings for the GtkImageView widget";
+ license = stdenv.lib.licenses.free;
+ };
+ };
+
+ Gtk2Unique = buildPerlPackage rec {
+ name = "Gtk2-Unique-0.05";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/P/PO/POTYL/${name}.tar.gz";
+ sha256 = "ae8dfb0f6844ddaa2ce7b5b44553419490c8e83c24fd35c431406a58f6be0f4f";
+ };
+ propagatedBuildInputs = [ Gtk2 Glib ExtUtilsDepends ExtUtilsPkgConfig pkgs.libunique pkgs.gtk2 Cairo Pango ];
+ meta = {
+ description = "Use single instance applications";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
Guard = buildPerlPackage rec {
name = "Guard-1.023";
src = fetchurl {
@@ -5721,6 +5848,18 @@ let self = _self // overrides; _self = with self; {
};
};
+ HTMLClean = buildPerlPackage rec {
+ name = "HTML-Clean-0.8";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/L/LI/LINDNER/${name}.tar.gz";
+ sha256 = "1h0dzxx034hpshxlpsxhxh051d1p79cjgp4q5kg68kgx7aian85c";
+ };
+ meta = {
+ description = "Cleans up HTML code for web browsers, not humans";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
HTMLElementExtended = buildPerlPackage {
name = "HTML-Element-Extended-1.18";
src = fetchurl {
@@ -5765,7 +5904,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://metacpan.org/release/HTML-Formatter;
description = "Base class for HTML formatters";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5778,7 +5917,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ HTMLFormatter HTMLTree URI ];
meta = {
description = "HTML to text conversion with links as footnotes";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5791,7 +5930,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ HTMLFormatTextWithLinks HTMLFormatter HTMLTree ];
meta = {
description = "Converts HTML to Text with tables intact";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5809,7 +5948,7 @@ let self = _self // overrides; _self = with self; {
NumberFormat PathClass Readonly RegexpCommon TaskWeaken YAMLLibYAML ];
meta = {
description = "HTML Form Creation, Rendering and Validation Framework";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5842,7 +5981,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = http://metacpan.org/release/HTML-Mason;
description = "High-performance, dynamic web site authoring system";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5857,7 +5996,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = http://search.cpan.org/dist/HTML-Mason-PSGIHandler/;
description = "PSGI handler for HTML::Mason";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5883,7 +6022,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ HTMLParser ];
meta = {
description = "Extract structure of quoted HTML mail message";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -5896,7 +6035,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ HTMLParser HTMLTagset URI ];
meta = {
description = "Concise attribute rewriting";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -6186,7 +6325,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ HTMLMason HTTPServerSimple HookLexWrap ];
meta = {
description = "A simple mason server";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -6199,7 +6338,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = http://search.cpan.org/dist/I18N-Collate;
description = "Compare 8-bit scalar data according to the current locale";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -6208,6 +6347,19 @@ let self = _self // overrides; _self = with self; {
# For backwards compatibility.
if_ = self."if";
+ ImageInfo = buildPerlPackage rec {
+ name = "Image-Info-1.38";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/S/SR/SREZIC/${name}.tar.gz";
+ sha256 = "b8a68b5661555feaf767956fe9ff14c917a63bedb3e30454d5598d992eb7e919";
+ };
+ propagatedBuildInputs = [ IOstringy ];
+ meta = {
+ description = "Extract meta information from image files";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
ImageSize = buildPerlPackage rec {
name = "Image-Size-3.232";
src = fetchurl {
@@ -6254,7 +6406,7 @@ let self = _self // overrides; _self = with self; {
doCheck = false;
meta = {
description = "Perl core IO modules";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -6369,7 +6521,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Family-neutral IP socket supporting both IPv4 and IPv6";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -6501,7 +6653,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Run commands simply, with detailed diagnostics";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -6513,7 +6665,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "System V IPC constants and system calls";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -6738,7 +6890,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Manipulate @INC at compile time";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -6750,7 +6902,7 @@ let self = _self // overrides; _self = with self; {
};
buildInputs = [ ApacheTest ExtUtilsXSBuilder mod_perl2 pkgs.apacheHttpd pkgs.apr pkgs.aprutil ];
propagatedBuildInputs = [ mod_perl2 ];
- makeMakerFlags = "--with-apache2-src=${pkgs.apacheHttpd} --with-apache2-apxs=${pkgs.apacheHttpd}/bin/apxs --with-apache2-httpd=${pkgs.apacheHttpd.out}/bin/httpd --with-apr-config=${pkgs.apr}/bin/apr-1-config --with-apu-config=${pkgs.aprutil}/bin/apu-1-config";
+ makeMakerFlags = "--with-apache2-src=${pkgs.apacheHttpd.dev} --with-apache2-apxs=${pkgs.apacheHttpd.dev}/bin/apxs --with-apache2-httpd=${pkgs.apacheHttpd.out}/bin/httpd --with-apr-config=${pkgs.apr.dev}/bin/apr-1-config --with-apu-config=${pkgs.aprutil.dev}/bin/apu-1-config";
preConfigure = ''
# override broken prereq check
substituteInPlace configure --replace "prereq_check=\"\$PERL \$PERL_OPTS build/version_check.pl\"" "prereq_check=\"echo\""
@@ -6761,7 +6913,7 @@ let self = _self // overrides; _self = with self; {
installPhase = ''
mkdir $out
make install DESTDIR=$out
- cp -r $out/${pkgs.apacheHttpd}/. $out/.
+ cp -r $out/${pkgs.apacheHttpd.dev}/. $out/.
cp -r $out/$out/. $out/.
rm -r $out/nix
'';
@@ -6785,15 +6937,15 @@ let self = _self // overrides; _self = with self; {
};
};
- libnet = buildPerlPackage {
- name = "libnet-3.07";
+ libnet = buildPerlPackage rec {
+ name = "libnet-3.08";
src = fetchurl {
- url = mirror://cpan/authors/id/S/SH/SHAY/libnet-3.07.tar.gz;
- sha256 = "d9a23d8907e681e788a6f1a71915b1d37d057091e88049e5a4064c99ca2c9cd7";
+ url = "mirror://cpan/authors/id/S/SH/SHAY/${name}.tar.gz";
+ sha256 = "21ebae642b53336576c370989d238cbe74378944079aca6f97665158c9f1750b";
};
meta = {
description = "Collection of network protocol modules";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -6816,34 +6968,40 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://github.com/neilbowers/Lingua-EN-FindNumber;
description = "Locate (written) numbers in English text";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
- LinguaENInflect = buildPerlPackage {
- name = "Lingua-EN-Inflect-1.895";
+ LinguaENInflect = buildPerlPackage rec {
+ name = "Lingua-EN-Inflect-1.899";
src = fetchurl {
- url = mirror://cpan/authors/id/D/DC/DCONWAY/Lingua-EN-Inflect-1.895.tar.gz;
- sha256 = "0drzg9a2dkjxgf00n6jg0jzhd8972bh3j4wdnmdxpqi3zmfqhwcy";
+ url = "mirror://cpan/authors/id/D/DC/DCONWAY/${name}.tar.gz";
+ sha256 = "1599a93020a2fdc0de8db14eea721df8fd772f78dedaf81081081fc93aa6a257";
};
meta = {
- description = "Convert singular to plural";
+ description = "Convert singular to plural. Select 'a' or 'an'";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
LinguaENInflectNumber = buildPerlPackage rec {
- name = "Lingua-EN-Inflect-Number-1.1";
+ name = "Lingua-EN-Inflect-Number-1.12";
src = fetchurl {
- url = "mirror://cpan/modules/by-module/Lingua/${name}.tar.gz";
- sha256 = "13hlr1srp9cd9mcc78snkng9il8iavvylfyh81iadvn2y7wikwfy";
+ url = "mirror://cpan/authors/id/N/NE/NEILB/${name}.tar.gz";
+ sha256 = "66fb33838512746f5c597e80264fea66643f7f26570ec2f9205b6135ad67acbf";
};
propagatedBuildInputs = [ LinguaENInflect ];
+ meta = {
+ homepage = https://github.com/neilbowers/Lingua-EN-Inflect-Number;
+ description = "Force number of words to singular or plural";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
};
- LinguaENInflectPhrase = buildPerlPackage {
+ LinguaENInflectPhrase = buildPerlPackage rec {
name = "Lingua-EN-Inflect-Phrase-0.18";
src = fetchurl {
- url = mirror://cpan/authors/id/R/RK/RKITOVER/Lingua-EN-Inflect-Phrase-0.18.tar.gz;
+ url = "mirror://cpan/authors/id/R/RK/RKITOVER/${name}.tar.gz";
sha256 = "290a5b8fc2be28d6d479517655027a90e944476cb3552f10cbf6db37af79f9a6";
};
buildInputs = [ TestNoWarnings ];
@@ -6851,7 +7009,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = http://metacpan.org/release/Lingua-EN-Inflect-Phrase;
description = "Inflect short English Phrases";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -6866,7 +7024,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = http://metacpan.org/release/Lingua-EN-Number-IsOrdinal;
description = "Detect if English number is ordinal or cardinal";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -6915,7 +7073,7 @@ let self = _self // overrides; _self = with self; {
doCheck = false;
meta = {
description = "Perl extension to detect on which Linux distribution we are running";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -7001,7 +7159,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "A distribution of modules to handle locale codes";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -7064,7 +7222,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Compile .po files to .mo files";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -7171,7 +7329,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ if_ ];
meta = {
description = "Powerful and flexible message logging mechanism";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -7239,7 +7397,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ IOLockedFile ];
meta = {
description = "Helps us create simple logs for our application";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -7281,7 +7439,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ HTTPMessage IOSocketSSL LWP LWPProtocolhttps URI ];
meta = {
description = "Provides HTTP/CONNECT proxy support for LWP::UserAgent";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -7673,15 +7831,15 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ MailTools ];
meta = {
description = "Tools to manipulate MIME messages";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
- MIMETypes = buildPerlPackage {
- name = "MIME-Types-2.04";
+ MIMETypes = buildPerlPackage rec {
+ name = "MIME-Types-2.13";
src = fetchurl {
- url = mirror://cpan/authors/id/M/MA/MARKOV/MIME-Types-2.04.tar.gz;
- sha256 = "13yci99n8kl8p4ac5n5f1j968p7va2phlvfc5qgpnn1d6yfhddi2";
+ url = "mirror://cpan/authors/id/M/MA/MARKOV/${name}.tar.gz";
+ sha256 = "1y3vnxk4wv4a00lxcp39hw9650cdl455d3y7nv42rqmvaxikghwr";
};
meta = {
description = "Definition of MIME types";
@@ -7740,7 +7898,7 @@ let self = _self // overrides; _self = with self; {
doCheck = false;
meta = {
description = "A collection of modules removed from Module-Build";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -7844,7 +8002,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ FileRemove ModuleScanDeps YAMLTiny ];
meta = {
description = "Standalone, extensible Perl module installer";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -7948,7 +8106,7 @@ let self = _self // overrides; _self = with self; {
buildInputs = [ PathClass ];
meta = {
description = "Refresh %INC files when updated on disk";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -7991,7 +8149,7 @@ let self = _self // overrides; _self = with self; {
meta = {
inherit version;
description = "Recursively scan Perl code for dependencies";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -8042,7 +8200,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Report versions of all modules in memory";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -8224,7 +8382,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://metacpan.org/release/MooX-late;
description = "Easily translate Moose code to Moo";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -8238,7 +8396,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ ConfigAny Mouse MouseXConfigFromFile ];
meta = {
description = "A Mouse role for setting attributes from a simple configfile";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -8250,7 +8408,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Do use_ok() for all the MANIFESTed modules";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -8264,7 +8422,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ Mouse MouseXTypes PathClass ];
meta = {
description = "A Path::Class type library for Mouse";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -8278,7 +8436,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ AnyMoose Mouse ];
meta = {
description = "Organize your Mouse types in libraries";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -8292,7 +8450,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ Mouse MouseXTypesPathClass ];
meta = {
description = "An abstract Mouse role for setting attributes from a configfile";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -8862,11 +9020,11 @@ let self = _self // overrides; _self = with self; {
};
};
- MozillaCA = buildPerlPackage {
- name = "Mozilla-CA-20130114";
+ MozillaCA = buildPerlPackage rec {
+ name = "Mozilla-CA-20160104";
src = fetchurl {
- url = mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-20130114.tar.gz;
- sha256 = "82342614add1dbca8a00daa1ee55af3e0036245aed7d445537918c045008ccd7";
+ url = "mirror://cpan/authors/id/A/AB/ABH/${name}.tar.gz";
+ sha256 = "27a7069a243162b65ada4194ff9d21b6ebc304af723eb5d3972fb74c11b03f2a";
};
meta = {
description = "Mozilla's CA cert bundle in PEM format";
@@ -9107,22 +9265,32 @@ let self = _self // overrides; _self = with self; {
};
NetDBus = buildPerlPackage rec {
- name = "Net-DBus-1.0.0";
+ name = "Net-DBus-1.1.0";
src = fetchurl {
url = "mirror://cpan/authors/id/D/DA/DANBERR/${name}.tar.gz";
- sha256 = "03srw98nn7r4k6fmnr5bhwsxbhgrsmzdja98jl8b8a72iayg7l5z";
+ sha256 = "8391696db9e96c374b72984c0bad9c7d1c9f3b4efe68f9ddf429a77548e0e269";
};
+ buildInputs = [ TestPod TestPodCoverage ];
propagatedBuildInputs = [ pkgs.pkgconfig pkgs.dbus XMLTwig ];
+ meta = {
+ homepage = http://www.freedesktop.org/wiki/Software/dbus;
+ description = "Extension for the DBus bindings";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
};
- NetDNS = buildPerlPackage {
- name = "Net-DNS-0.74";
+ NetDNS = buildPerlPackage rec {
+ name = "Net-DNS-1.05";
src = fetchurl {
- url = mirror://cpan/authors/id/N/NL/NLNETLABS/Net-DNS-0.74.tar.gz;
- sha256 = "0clwl4nqzg23d6l9d9gc8ijl1lbghhfrbavjlvhd1wll5r8ayr7g";
+ url = "mirror://cpan/authors/id/N/NL/NLNETLABS/${name}.tar.gz";
+ sha256 = "900198014110af96ebac34af019612dd2ddd6af30178600028c3c940d089d5c8";
+ };
+ propagatedBuildInputs = [ DigestHMAC ];
+ makeMakerFlags = "--noonline-tests";
+ meta = {
+ description = "Perl Interface to the Domain Name System";
+ license = stdenv.lib.licenses.mit;
};
- propagatedBuildInputs = [NetIP DigestHMAC];
- doCheck = false;
};
NetDomainTLD = buildPerlPackage rec {
@@ -9316,7 +9484,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Per object accessors";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -9359,7 +9527,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "More Opcodes information from opnames.h and opcode.h";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -9412,7 +9580,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "List constants defined in a package";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -9486,7 +9654,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ ClassAccessorLite ListMoreUtils ProcWait3 ScopeGuard SignalMask ];
meta = {
description = "A simple prefork server framework";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -9708,16 +9876,16 @@ let self = _self // overrides; _self = with self; {
};
};
- PerlIOutf8_strict = buildPerlModule {
- name = "PerlIO-utf8_strict-0.005";
+ PerlIOutf8_strict = buildPerlPackage rec {
+ name = "PerlIO-utf8_strict-0.006";
src = fetchurl {
- url = mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-0.005.tar.gz;
- sha256 = "8956064ac2bf1f79bac868a9db93a44aade77df4d3e8b07ce31a40f987ef2e0e";
+ url = "mirror://cpan/authors/id/L/LE/LEONT/${name}.tar.gz";
+ sha256 = "980010e624c43be0a2aac8e1fe5db3fe43035940def75ca70401bb1ca98bd562";
};
buildInputs = [ TestException ];
meta = {
description = "Fast and correct UTF-8 IO";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -9779,7 +9947,7 @@ let self = _self // overrides; _self = with self; {
buildInputs = [ pkgs.imagemagick ];
preConfigure =
''
- sed -i -e 's|my \$INC_magick = .*|my $INC_magick = "-I${pkgs.imagemagick}/include/ImageMagick";|' Makefile.PL
+ sed -i -e 's|my \$INC_magick = .*|my $INC_magick = "-I${pkgs.imagemagick.dev}/include/ImageMagick";|' Makefile.PL
'';
doCheck = false;
};
@@ -9793,10 +9961,14 @@ let self = _self // overrides; _self = with self; {
};
PerlTidy = buildPerlPackage rec {
- name = "Perl-Tidy-20150815";
+ name = "Perl-Tidy-20160302";
src = fetchurl {
url = "mirror://cpan/authors/id/S/SH/SHANCOCK/${name}.tar.gz";
- sha256 = "1mzb2df3bhxcgm7i9vx29bz5581cr8bbfrmajjrzla04djg9v5ha";
+ sha256 = "6dd04ed8c315bcfea8fe713de8f9de68955795b6864f3be6c177e802fd30dca7";
+ };
+ meta = {
+ description = "Indent and reformat perl scripts";
+ license = stdenv.lib.licenses.gpl2Plus;
};
};
@@ -9935,11 +10107,11 @@ let self = _self // overrides; _self = with self; {
};
};
- PPIxRegexp = buildPerlPackage {
- name = "PPIx-Regexp-0.036";
+ PPIxRegexp = buildPerlPackage rec {
+ name = "PPIx-Regexp-0.050";
src = fetchurl {
- url = mirror://cpan/authors/id/W/WY/WYANT/PPIx-Regexp-0.036.tar.gz;
- sha256 = "1nnaxf1dmywacdgh8f1s2ki8jkrf2vi6bfhk70p1r9k1001idlfk";
+ url = "mirror://cpan/authors/id/W/WY/WYANT/${name}.tar.gz";
+ sha256 = "fd095fb90826efa3f9b28bf018a099dc51f1d7c7d34ed2f193a28f1087635125";
};
propagatedBuildInputs = [ ListMoreUtils PPI TaskWeaken ];
meta = {
@@ -9970,7 +10142,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Perl extension to access the unix process table";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -9982,6 +10154,17 @@ let self = _self // overrides; _self = with self; {
};
};
+ ProcSimple = buildPerlPackage rec {
+ name = "Proc-Simple-1.32";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/M/MS/MSCHILLI/${name}.tar.gz";
+ sha256 = "4c8f0a924b19ad78a13da73fe0fb306d32a7b9d10a332c523087fc83a209a8c4";
+ };
+ meta = {
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
ProcWait3 = buildPerlPackage {
name = "Proc-Wait3-0.05";
src = fetchurl {
@@ -9990,7 +10173,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Perl extension for wait3 system call";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10027,42 +10210,43 @@ let self = _self // overrides; _self = with self; {
};
};
- PerlMinimumVersion = buildPerlPackage {
- name = "Perl-MinimumVersion-1.32";
+ PerlMinimumVersion = buildPerlPackage rec {
+ name = "Perl-MinimumVersion-1.38";
src = fetchurl {
- url = mirror://cpan/authors/id/C/CH/CHORNY/Perl-MinimumVersion-1.32.tar.gz;
- sha256 = "fa9884abee80c7afc260a28a4e6a6804a0335f5f582e3931c3a53b8504f1a27a";
+ url = "mirror://cpan/authors/id/N/NE/NEILB/${name}.tar.gz";
+ sha256 = "478b5824791b87fc74c94a892180682bd06ad2cdf34034b1a4b859273927802a";
};
buildInputs = [ TestScript ];
propagatedBuildInputs = [ FileFindRule FileFindRulePerl PPI PPIxRegexp ParamsUtil PerlCritic ];
meta = {
+ homepage = https://github.com/neilbowers/Perl-MinimumVersion;
description = "Find a minimum required version of perl for Perl code";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
- PerlPrereqScanner = buildPerlPackage {
- name = "Perl-PrereqScanner-1.019";
+ PerlPrereqScanner = buildPerlPackage rec {
+ name = "Perl-PrereqScanner-1.023";
src = fetchurl {
- url = mirror://cpan/authors/id/R/RJ/RJBS/Perl-PrereqScanner-1.019.tar.gz;
- sha256 = "1ndgq2c7s1042c3zxjsmjfpf4lnwfg6w36hmvhh3yk9qihcprbgj";
+ url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz";
+ sha256 = "280a1c4710390865fb9f310a861a34720b28b4cbe50609c841af5cf2d3a2bced";
};
buildInputs = [ PPI TryTiny ];
propagatedBuildInputs = [ GetoptLongDescriptive ListMoreUtils ModulePath Moose PPI ParamsUtil StringRewritePrefix namespaceautoclean ];
meta = {
- homepage = https://github.com/rjbs/perl-prereqscanner;
+ homepage = https://github.com/rjbs/Perl-PrereqScanner;
description = "A tool to scan your Perl code for its prerequisites";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
- PerlVersion = buildPerlPackage {
- name = "Perl-Version-1.011";
+ PerlVersion = buildPerlPackage rec {
+ name = "Perl-Version-1.013";
src = fetchurl {
- url = mirror://cpan/authors/id/A/AN/ANDYA/Perl-Version-1.011.tar.gz;
- sha256 = "12ede8a87a12574fcd525c1d23d8a5b2fa2918ff5b78eb56cf701251a81af19b";
+ url = "mirror://cpan/authors/id/B/BD/BDFOY/${name}.tar.gz";
+ sha256 = "1887414d1c8689d864c840114101e043e99d7dd5b9cca69369a60e821e3ad0f7";
};
- propagatedBuildInputs = [ FileSlurp ];
+ propagatedBuildInputs = [ FileSlurpTiny ];
meta = {
description = "Parse and manipulate Perl version strings";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
@@ -10217,7 +10401,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Convert POD data to various other formats";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10243,7 +10427,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Look up Perl documentation in Pod format";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10255,7 +10439,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Perl extension for converting Pod to old-style Pod";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10410,7 +10594,7 @@ let self = _self // overrides; _self = with self; {
};
propagatedBuildInputs = [ RegexpCommon ];
meta = {
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10442,7 +10626,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = http://wiki.github.com/toddr/Regexp-Parser;
description = "Base class for parsing regexes";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10488,7 +10672,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Just roles. Nothing else";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10556,7 +10740,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ CGI DateTime DateTimeFormatDateParse Error ExceptionClass HTTPCookies HTTPMessage LWP ParamsValidate URI ];
meta = {
description = "Talk to RT installation using REST protocol";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10589,7 +10773,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Common Scalar and List utility subroutines";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10635,7 +10819,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Look - search for key in dictionary file";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10647,7 +10831,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Load functions only on demand";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10661,7 +10845,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://github.com/kazuho/p5-Server-Starter;
description = "A superdaemon for hot-deploying server programs";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10714,7 +10898,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ IPCSignal ];
meta = {
description = "Signal masks made easy";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10741,7 +10925,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Networking constants and support functions";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10869,7 +11053,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ ImportInto ModuleRuntime strictures ];
meta = {
description = "Parameterizable packages";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10891,7 +11075,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ ParallelPrefork Plack ServerStarter ];
meta = {
description = "A simple, high-performance PSGI/Plack HTTP server";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10908,7 +11092,7 @@ let self = _self // overrides; _self = with self; {
inherit version;
homepage = https://github.com/miyagawa/Starman;
description = "High-performance preforking PSGI/Plack web server";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -10963,7 +11147,7 @@ let self = _self // overrides; _self = with self; {
sha256 = "a566b792112bbba21131ec1d7a2bf78170c648484895283ae53c7f0c3dc2f0be";
};
meta = {
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -11347,7 +11531,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Finds name and type of a global variable";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -11410,7 +11594,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Perl extension for Consistent Signal Handling";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -11422,7 +11606,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Perl interface to the UNIX syslog(3) calls";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -11458,24 +11642,14 @@ let self = _self // overrides; _self = with self; {
name = "Task-Catalyst-Tutorial-0.06";
src = fetchurl {
url = "mirror://cpan/authors/id/M/MR/MRAMBERG/${name}.tar.gz";
- sha256 = "07nn8a30n3qylpnf7s4ma6w462g31pywwikib117hr2mc7cv5cbm";
+ sha256 = "75b1b2d96155647842587146cefd0de30943b85195e8e3eca51e0f0b8642d61e";
};
- propagatedBuildInputs = [
- CatalystManual CatalystRuntime CatalystDevel
- CatalystPluginSession CatalystPluginAuthentication
- CatalystAuthenticationStoreDBIxClass
- CatalystPluginAuthorizationRoles
- CatalystPluginSessionStateCookie
- CatalystPluginAuthorizationACL
- CatalystPluginHTMLWidget
- CatalystPluginSessionStoreFastMmap
- CatalystPluginStackTrace
- CatalystViewTT
- DBIxClass DBIxClassHTMLWidget
- CatalystControllerHTMLFormFu
- ];
buildInputs = [TestPodCoverage];
- meta.platforms = stdenv.lib.platforms.linux;
+ propagatedBuildInputs = [ CatalystAuthenticationStoreDBIxClass CatalystControllerHTMLFormFu CatalystDevel CatalystManual CatalystModelDBICSchema CatalystPluginAuthentication CatalystPluginAuthorizationACL CatalystPluginAuthorizationRoles CatalystPluginSession CatalystPluginSessionStateCookie CatalystPluginSessionStoreFastMmap CatalystPluginStackTrace CatalystRuntime CatalystViewTT DBIxClass ];
+ meta = {
+ description = "Everything you need to follow the Catalyst Tutorial";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
};
TaskPlack = buildPerlModule rec {
@@ -11509,7 +11683,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://github.com/karpet/template-plugin-autoformat;
description = "TT plugin for Text::Autoformat";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -11587,7 +11761,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Template Toolkit reimplemented in as little code as possible";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -11612,7 +11786,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Color output using ANSI escape sequences";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -11625,7 +11799,7 @@ let self = _self // overrides; _self = with self; {
meta = {
inherit version;
description = "Perl termcap interface";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -11686,13 +11860,13 @@ let self = _self // overrides; _self = with self; {
};
TermReadLineGnu = buildPerlPackage rec {
- name = "Term-ReadLine-Gnu-1.26";
+ name = "Term-ReadLine-Gnu-1.31";
src = fetchurl {
url = "mirror://cpan/authors/id/H/HA/HAYASHI/${name}.tar.gz";
- sha256 = "1s2dvjbh501c04s5hpf17mwirslmhqmsymg3ri4hcvh5yvp7bw7q";
+ sha256 = "42174b4bc9d3881502d527fc7c8bd1c0a4b266c2f0bbee012e9a604999418f3b";
};
buildInputs = [ pkgs.readline pkgs.ncurses ];
- NIX_CFLAGS_LINK = "-lreadline";
+ NIX_CFLAGS_LINK = "-lreadline -lncursesw";
# For some crazy reason Makefile.PL doesn't generate a Makefile if
# AUTOMATED_TESTING is set.
@@ -11707,6 +11881,12 @@ let self = _self // overrides; _self = with self; {
# Tests don't work because they require /dev/tty.
doCheck = false;
+
+ meta = {
+ homepage = http://sourceforge.net/projects/perl-trg/;
+ description = "Perl extension for the GNU Readline/History Library";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
};
TermShellUI = buildPerlPackage rec {
@@ -11726,7 +11906,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ DevelHide TermSizePerl ];
meta = {
description = "Retrieve terminal size";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -11738,7 +11918,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Perl extension for retrieving terminal size (Perl version)";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -11808,7 +11988,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ TestNoWarnings ];
meta = {
description = "Aggregate C<*.t> tests to make them run faster";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -11898,7 +12078,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Test directory attributes";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -11911,7 +12091,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ CaptureTiny TextDiff ];
meta = {
description = "Test strings and data structures and show differences if not ok";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -11994,7 +12174,7 @@ let self = _self // overrides; _self = with self; {
buildInputs = [ Testutf8 ];
meta = {
description = "Check file attributes";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -12008,7 +12188,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = http://search.cpan.org/dist/Test-File-Contents/;
description = "Test routines for examining the contents of files";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -12049,7 +12229,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Detailed analysis of test results";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -12387,7 +12567,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://github.com/tokuhirom/Test-SharedFork;
description = "Fork test";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -12632,7 +12812,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = http://search.cpan.org/dist/Text-Abbrev;
description = "Abbrev - create an abbreviation table from a list";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -12669,7 +12849,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://github.com/neilbowers/Text-Autoformat;
description = "Automatic text wrapping and reformatting";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -12681,7 +12861,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Extract delimited text sequences from strings";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -12741,16 +12921,16 @@ let self = _self // overrides; _self = with self; {
};
};
- TextCSV_XS = buildPerlPackage {
- name = "Text-CSV_XS-1.19.tgz";
+ TextCSV_XS = buildPerlPackage rec {
+ name = "Text-CSV_XS-1.23";
src = fetchurl {
- url = mirror://cpan/authors/id/H/HM/HMBRAND/Text-CSV_XS-1.19.tgz;
- sha256 = "bcde887f613c6a50b0ce8f714cd2463570f5809f26581615690cfb424d2a7c16";
+ url = "mirror://cpan/authors/id/H/HM/HMBRAND/${name}.tgz";
+ sha256 = "5714e1c275e7715aee44f820f8ca26c976fbb563668de7eba42a4419a05a4b5a";
};
meta = {
homepage = https://metacpan.org/pod/Text::CSV_XS;
description = "Comma-Separated Values manipulation routines";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -12803,7 +12983,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Interact with a t/test_manifest file";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -12832,15 +13012,16 @@ let self = _self // overrides; _self = with self; {
};
};
- TestMinimumVersion = buildPerlPackage {
- name = "Test-MinimumVersion-0.101081";
+ TestMinimumVersion = buildPerlPackage rec {
+ name = "Test-MinimumVersion-0.101082";
src = fetchurl {
- url = mirror://cpan/authors/id/R/RJ/RJBS/Test-MinimumVersion-0.101081.tar.gz;
- sha256 = "1javb92s0bl7gj2m3fsvzd0mn5r76clmayq8878mq12g4smdvpi2";
+ url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz";
+ sha256 = "3fba4e8fcf74806259aa639be7d90e70346ad0e0e4b8b619593490e378241970";
};
buildInputs = [ TestTester ];
- propagatedBuildInputs = [ FileFindRule FileFindRulePerl PerlMinimumVersion YAMLTiny ];
+ propagatedBuildInputs = [ FileFindRule FileFindRulePerl PerlMinimumVersion ];
meta = {
+ homepage = https://github.com/rjbs/Test-MinimumVersion;
description = "Does your code require newer perl than you think?";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
@@ -12880,7 +13061,7 @@ let self = _self // overrides; _self = with self; {
sha256 = "c186a50256e0bedfafb17e7ce157e7c52f19503bb79e18ebf06255911f6ead1a";
};
meta = {
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -12902,7 +13083,7 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ TextAutoformat ];
meta = {
description = "Extract the structure of a quoted mail message";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -12930,7 +13111,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Manual text wrapping and reformatting";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13092,7 +13273,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://github.com/2shortplanks/Test-utf8/tree;
description = "Handy utf8 tests";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13130,7 +13311,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Word wrap text by breaking long lines";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13142,7 +13323,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Perl interpreter-based threads";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13154,7 +13335,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Perl extension for sharing data structures between threads";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13166,7 +13347,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Thread-safe queues";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13178,7 +13359,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Thread-safe semaphores";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13313,7 +13494,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Efficiently compute time from local and GMT time";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13409,7 +13590,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://metacpan.org/release/Type-Tiny;
description = "Tiny, yet Moo(se)-compatible type constraint";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13422,7 +13603,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://github.com/chromatic/UNIVERSAL-can;
description = "Work around buggy code calling UNIVERSAL::can() as a function";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13525,7 +13706,7 @@ let self = _self // overrides; _self = with self; {
};
meta = {
description = "Unicode Normalization Forms";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13571,7 +13752,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://search.cpan.org/dist/URI-db/;
description = "Database URIs";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13632,7 +13813,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://metacpan.org/release/URI-Nested/;
description = "Nested URIs";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13741,11 +13922,11 @@ let self = _self // overrides; _self = with self; {
};
};
- Want = buildPerlPackage {
- name = "Want-0.26";
+ Want = buildPerlPackage rec {
+ name = "Want-0.29";
src = fetchurl {
- url = mirror://cpan/authors/id/R/RO/ROBIN/Want-0.26.tar.gz;
- sha256 = "4951675e13de2b0b9792be2827b8ef46ef25a0b9a2d3e9132143444dac28e17c";
+ url = "mirror://cpan/authors/id/R/RO/ROBIN/${name}.tar.gz";
+ sha256 = "1xsjylbxxcbkjazqms49ipi94j1hd2ykdikk29cq7dscil5p9r5l";
};
};
@@ -13762,7 +13943,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://github.com/jonasbn/perl-workflow;
description = "Simple, flexible system to implement workflows";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -13825,10 +14006,10 @@ let self = _self // overrides; _self = with self; {
};
X11XCB = buildPerlPackage rec {
- name = "X11-XCB-0.14";
+ name = "X11-XCB-0.16";
src = fetchurl {
url = "mirror://cpan/authors/id/M/MS/MSTPLBG/${name}.tar.gz";
- sha256 = "11ff0a4nqbdj68mxdvyqdqvi573ha10vy67wpi7mklpxvlm011bn";
+ sha256 = "14mnvr1001py2z1n43l18yaw0plwvjg5pcsyc7k81sa0amw8ahzw";
};
AUTOMATED_TESTING = false;
buildInputs = [
@@ -13886,6 +14067,34 @@ let self = _self // overrides; _self = with self; {
doCheck = false;
};
+ XMLGrove = buildPerlPackage rec {
+ name = "XML-Grove-0.46alpha";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/K/KM/KMACLEOD/${name}.tar.gz";
+ sha256 = "05yis1ms7cgwjh57k57whrmalb3ha0bjr9hyvh7cnadcyiynvdpw";
+ };
+ buildInputs = [ pkgs.libxml2 ];
+ propagatedBuildInputs = [ libxml_perl ];
+
+ #patch from https://bugzilla.redhat.com/show_bug.cgi?id=226285
+ patches = [ ../development/perl-modules/xml-grove-utf8.patch ];
+ meta = {
+ description = "Perl-style XML objects";
+ };
+ };
+
+ XMLHandlerYAWriter = buildPerlPackage rec {
+ name = "XML-Handler-YAWriter-0.23";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/K/KR/KRAEHE/${name}.tar.gz";
+ sha256 = "11d45a1sz862va9rry3p2m77pwvq3kpsvgwhc5ramh9mbszbnk77";
+ };
+ propagatedBuildInputs = [ libxml_perl ];
+ meta = {
+ description = "Yet another Perl SAX XML Writer";
+ };
+ };
+
XMLLibXML = buildPerlPackage rec {
name = "XML-LibXML-2.0122";
src = fetchurl {
@@ -13981,7 +14190,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = http://perl-rss.sourceforge.net/;
description = "Creates and updates RSS files";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -14006,7 +14215,7 @@ let self = _self // overrides; _self = with self; {
meta = {
description = "Base class for SAX Drivers and Filters";
homepage = http://github.com/grantm/XML-SAX-Base;
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -14099,7 +14308,7 @@ let self = _self // overrides; _self = with self; {
meta = {
homepage = https://metacpan.org/module/Math::BigInt;
description = "Dynamically load C libraries into Perl code";
- license = "perl";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
diff --git a/pkgs/top-level/php-packages.nix b/pkgs/top-level/php-packages.nix
index 70006922079..c0248644d5e 100644
--- a/pkgs/top-level/php-packages.nix
+++ b/pkgs/top-level/php-packages.nix
@@ -45,7 +45,7 @@ let
sha256 = "04c35rj0cvq5ygn2jgmyvqcb0k8d03v4k642b6i37zgv7x15pbic";
- configureFlags = "--with-zlib-dir=${pkgs.zlib}";
+ configureFlags = "--with-zlib-dir=${pkgs.zlib.dev}";
};
memcached = if isPhp7 then memcachedPhp7 else memcached22;
@@ -56,7 +56,7 @@ let
sha256 = "0n4z2mp4rvrbmxq079zdsrhjxjkmhz6mzi7mlcipz02cdl7n1f8p";
configureFlags = [
- "--with-zlib-dir=${pkgs.zlib}"
+ "--with-zlib-dir=${pkgs.zlib.dev}"
"--with-libmemcached-dir=${pkgs.libmemcached}"
];
@@ -74,7 +74,7 @@ let
};
configureFlags = [
- "--with-zlib-dir=${pkgs.zlib}"
+ "--with-zlib-dir=${pkgs.zlib.dev}"
"--with-libmemcached-dir=${pkgs.libmemcached}"
];
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index d1d307c8ce6..c17f74e01f3 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -247,6 +247,8 @@ in modules // {
pygame = callPackage ../development/python-modules/pygame { };
+ pygame-git = callPackage ../development/python-modules/pygame/git.nix { };
+
pygobject = callPackage ../development/python-modules/pygobject { };
pygobject3 = callPackage ../development/python-modules/pygobject/3.nix { };
@@ -370,8 +372,29 @@ in modules // {
};
};
+ acme_0_5_0 = buildPythonPackage rec {
+ version = "0.5.0";
+ name = "acme-${version}";
+
+ src = pkgs.fetchFromGitHub {
+ owner = "letsencrypt";
+ repo = "letsencrypt";
+ rev = "v${version}";
+ sha256 = "0x098cdyfgqvh7x5d3sz56qjpjyg5b4fl82086sm43d8mbz0h5rm";
+ };
+
+ propagatedBuildInputs = with self; [
+ cryptography pyasn1 pyopenssl pyRFC3339 pytz requests2 six werkzeug mock
+ ndg-httpsclient
+ ];
+
+ buildInputs = with self; [ nose ];
+
+ sourceRoot = "letsencrypt-v${version}-src/acme";
+ };
+
acme = buildPythonPackage rec {
- inherit (pkgs.letsencrypt) src version;
+ inherit (pkgs.certbot) src version;
name = "acme-${version}";
@@ -720,7 +743,9 @@ in modules // {
anyjson = buildPythonPackage rec {
name = "anyjson-0.3.3";
- disabled = isPy3k;
+
+ # The tests are written in a python2 syntax but anyjson is python3 valid
+ doCheck = !isPy3k;
src = pkgs.fetchurl {
url = "mirror://pypi/a/anyjson/${name}.tar.gz";
@@ -776,6 +801,7 @@ in modules // {
ansible = buildPythonPackage rec {
version = "1.9.4";
name = "ansible-${version}";
+ disabled = isPy3k;
src = pkgs.fetchurl {
url = "https://releases.ansible.com/ansible/${name}.tar.gz";
@@ -806,12 +832,13 @@ in modules // {
};
ansible2 = buildPythonPackage rec {
- version = "v2.0.0.2";
- name = "ansible-${version}";
+ version = "2.1.0.0";
+ name = "ansible-${version}";
+ disabled = isPy3k;
src = pkgs.fetchurl {
- url = "http://releases.ansible.com/ansible/ansible-2.0.0.2.tar.gz";
- sha256 = "0a2qgshbpbg2c8rz36jcc5f7zam0j1viqdhc8fqqbarz26chpnr7";
+ url = "http://releases.ansible.com/ansible/${name}.tar.gz";
+ sha256 = "1bfc2xiplpad6f2nwi48y0kps7xqnsll85dlz63cy8k5bysl6d20";
};
prePatch = ''
@@ -825,15 +852,15 @@ in modules // {
windowsSupport = true;
propagatedBuildInputs = with self; [
- paramiko jinja2 pyyaml httplib2 boto six
+ paramiko jinja2 pyyaml httplib2 boto six readline
] ++ optional windowsSupport pywinrm;
meta = with stdenv.lib; {
- homepage = "http://www.ansible.com";
+ homepage = "http://www.ansible.com";
description = "A simple automation tool";
- license = with licenses; [ gpl3 ];
+ license = with licenses; [ gpl3 ];
maintainers = with maintainers; [ copumpkin ];
- platforms = with platforms; linux ++ darwin;
+ platforms = with platforms; linux ++ darwin;
};
};
@@ -3139,11 +3166,11 @@ in modules // {
certifi = buildPythonPackage rec {
name = "certifi-${version}";
- version = "2015.9.6.2";
+ version = "2015.11.20.1";
src = pkgs.fetchurl {
url = "mirror://pypi/c/certifi/${name}.tar.gz";
- sha256 = "19mfly763c6bzya9dwm6qgc48z4x3gk6ldl6fprdncqhklnjnfnw";
+ sha256 = "05lgwf9rz1kn465azy2bpb3zmpnsn9gkypbhnjlclchv98ssgc1h";
};
meta = {
@@ -5901,11 +5928,19 @@ in modules // {
};
fake_factory = buildPythonPackage rec {
- name = "fake-factory-0.2";
+ name = "fake-factory-${version}";
+ version = "0.5.7";
+
src = pkgs.fetchurl {
- url = mirror://pypi/f/fake-factory/fake-factory-0.2.tar.gz;
- sha256 = "0qdmk8p4anrj9mf95dh9v7bkhv1pz69hvhlw380kj4iz7b44b6zn";
+ url = "mirror://pypi/f/fake-factory/${name}.tar.gz";
+ sha256 = "1chmarnrdzn4r017n8qlic0m0bbnhw04s3hkwribjvm3mqpb6pa0";
};
+
+ propagatedBuildInputs = with self; [ six dateutil ipaddress mock ];
+ checkPhase = ''
+ ${python.interpreter} -m unittest faker.tests
+ '';
+
meta = {
description = "A Python package that generates fake data for you";
homepage = https://pypi.python.org/pypi/fake-factory;
@@ -5915,6 +5950,24 @@ in modules // {
};
};
+ factory_boy = buildPythonPackage rec {
+ name = "factory_boy-${version}";
+ version = "2.6.1";
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/f/factory_boy/${name}.tar.gz";
+ sha256 = "0a21f8kq917fj8xgmyp6gy8vcrlzzgwn80qas0d76h3vjbdy0bdq";
+ };
+
+ propagatedBuildInputs = with self; [ fake_factory ];
+
+ meta = {
+ description = "A Python package to create factories for complex objects";
+ homepage = https://github.com/rbarrois/factory_boy;
+ license = licenses.mit;
+ };
+ };
+
Fabric = buildPythonPackage rec {
name = "Fabric-${version}";
version = "1.10.2";
@@ -7122,8 +7175,8 @@ in modules // {
USE_NCCONFIG="0";
HDF5_DIR="${pkgs.hdf5}";
NETCDF4_DIR="${pkgs.netcdf}";
- CURL_DIR="${pkgs.curl}";
- JPEG_DIR="${pkgs.libjpeg}";
+ CURL_DIR="${pkgs.curl.dev}";
+ JPEG_DIR="${pkgs.libjpeg.dev}";
meta = {
description = "interface to netCDF library (versions 3 and 4)";
@@ -7380,9 +7433,9 @@ in modules // {
propagatedBuildInputs = [ pkgs.pyqt4 pkgs.pkgconfig pkgs.poppler_qt4 ];
preBuild = "${python}/bin/${python.executable} setup.py build_ext" +
- " --include-dirs=${pkgs.poppler_qt4}/include/poppler/";
+ " --include-dirs=${pkgs.poppler_qt4.dev}/include/poppler/";
- NIX_CFLAGS_COMPILE = "-I${pkgs.poppler_qt4}/include/poppler/";
+ NIX_CFLAGS_COMPILE = "-I${pkgs.poppler_qt4.dev}/include/poppler/";
meta = {
description = "A Python binding to Poppler-Qt4";
@@ -7818,7 +7871,7 @@ in modules // {
cat > site.cfg << END
[samplerate]
library_dirs=${pkgs.libsamplerate.out}/lib
- include_dirs=${pkgs.libsamplerate}/include
+ include_dirs=${pkgs.libsamplerate.dev}/include
END
'';
@@ -8407,7 +8460,7 @@ in modules // {
};
propagatedBuildInputs = with self; [
- pyGtkGlade pkgs.libtorrentRasterbar twisted Mako chardet pyxdg self.pyopenssl modules.curses
+ pyGtkGlade pkgs.libtorrentRasterbar twisted Mako chardet pyxdg self.pyopenssl modules.curses service-identity
];
nativeBuildInputs = [ pkgs.intltool ];
@@ -8463,7 +8516,7 @@ in modules // {
};
};
- django = self.django_1_7;
+ django = self.django_1_9;
django_gis = self.django.override rec {
patches = [
@@ -8603,6 +8656,9 @@ in modules // {
sha256 = "0q3fg17qi4vwpipbj075zn4wk58p6a946kah8wayks1423xpa4xs";
};
+ # No tests in archive
+ doCheck = false;
+
propagatedBuildInputs = with self; [ six ];
meta = {
@@ -8613,6 +8669,30 @@ in modules // {
};
};
+ django_colorful = buildPythonPackage rec {
+ name = "django-colorful-${version}";
+ version = "1.2";
+
+ disabled = isPy35;
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/d/django-colorful/${name}.tar.gz";
+ sha256 = "0y34hzvfrm1xbxrd8frybc9yzgqvz4c07frafipjikw7kfjsw8az";
+ };
+
+ # Tests aren't run
+ doCheck = false;
+
+ # Requires Django >= 1.8
+ buildInputs = with self ; [ sqlite3 django ];
+
+ meta = {
+ description = "Django extension that provides database and form color fields";
+ homepage = https://github.com/charettes/django-colorful;
+ license = licenses.mit;
+ };
+ };
+
django_compressor = buildPythonPackage rec {
name = "django-compressor-${version}";
version = "1.5";
@@ -8622,6 +8702,9 @@ in modules // {
sha256 = "0bp2acagc6b1mmcajlmjf5vvp6zj429bq7p2wks05n47pwfzv281";
};
+ # Need to setup django testing
+ doCheck = false;
+
propagatedBuildInputs = with self; [ django_appconf ];
meta = {
@@ -8761,6 +8844,8 @@ in modules // {
sha256 = "1plsdi44dvsj2sfx79lsrccjfg0ymajcsf5n0mln4cwd4qi5mwpx";
};
+ doCheck = false;
+
propagatedBuildInputs = with self; [ pytz six ];
meta = {
@@ -8780,6 +8865,8 @@ in modules // {
sha256 = "06kp4hg3y4bqy2ixlb1q6bw81gwgsb86l4lanbav7bp1grrbbnj1";
};
+ doCheck = false;
+
propagatedBuildInputs = with self; [ django ];
meta = {
@@ -8799,6 +8886,8 @@ in modules // {
sha256 = "9ad6b299458f7e6bfaefa8905f52560017369d82fb8fb0ed4b41adc048dbf11c";
};
+ doCheck = false;
+
buildInputs = [ self.mock ];
propagatedBuildInputs = with self; [
@@ -8842,6 +8931,8 @@ in modules // {
sha256 = "845abc688738858ce06e993c4b7dbbcfcecf33029e828f143463ff96f9a78947";
};
+ doCheck = false;
+
buildInputs = [ self.mock ];
propagatedBuildInputs = with self; [
@@ -8874,6 +8965,8 @@ in modules // {
sha256 = "1xy4mm1y6z6bpakw907859wz7fiw7jfm586dj89w0ggdqlb0767b";
};
+ doCheck = false;
+
meta = {
description = "django-taggit is a reusable Django application for simple tagging";
homepage = http://github.com/alex/django-taggit/tree/master/;
@@ -8997,6 +9090,9 @@ in modules // {
sed -i '/rdflib/d' requirements.txt
'';
+ # Doesn't actually run tests
+ doCheck = false;
+
propagatedBuildInputs = with self; [
six isodate pyparsing html5lib keepalive
];
@@ -10402,14 +10498,18 @@ in modules // {
};
google_api_python_client = buildPythonPackage rec {
- name = "google-api-python-client-1.2";
+ name = "google-api-python-client-${version}";
+ version = "1.5.1";
src = pkgs.fetchurl {
- url = "https://google-api-python-client.googlecode.com/files/google-api-python-client-1.2.tar.gz";
- sha256 = "0xd619w71xk4ldmikxqhaaqn985rc2hy4ljgwfp50jb39afg7crw";
+ url = "mirror://pypi/g/google-api-python-client/${name}.tar.gz";
+ sha256 = "1ggxk094vqr4ia6yq7qcpa74b4x5cjd5mj74rq0xx9wp2jkrxmig";
};
- propagatedBuildInputs = with self; [ httplib2 ];
+ # No tests included in archive
+ doCheck = false;
+
+ propagatedBuildInputs = with self; [ httplib2 six oauth2client uritemplate ];
meta = {
description = "The core Python library for accessing Google APIs";
@@ -10886,6 +10986,25 @@ in modules // {
};
};
+
+ inflection = buildPythonPackage rec {
+ version = "0.3.1";
+ name = "inflection-${version}";
+
+ src = pkgs.fetchurl {
+ url= "mirror://pypi/i/inflection/${name}.tar.gz";
+ sha256 = "1jhnxgnw8y3mbzjssixh6qkc7a3afc4fygajhqrqalnilyvpzshq";
+ };
+
+ disabled = isPy3k;
+
+ meta = {
+ homepage = https://github.com/jpvanhal/inflection;
+ description = "A port of Ruby on Rails inflector to Python";
+ maintainers = with maintainers; [ NikolaMandic ];
+ };
+ };
+
influxdb = buildPythonPackage rec {
name = "influxdb-0.1.12";
@@ -11953,8 +12072,6 @@ in modules // {
lxml = buildPythonPackage ( rec {
name = "lxml-3.4.4";
- # Warning : as of nov. 9th, 2015, version 3.5.0b1 breaks a lot of things,
- # more work is needed before upgrading
src = pkgs.fetchurl {
url = "mirror://pypi/l/lxml/${name}.tar.gz";
@@ -11971,6 +12088,22 @@ in modules // {
};
});
+ lxml_3_5 = buildPythonPackage ( rec {
+ name = "lxml-3.5.0";
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/l/lxml/${name}.tar.gz";
+ sha256 = "0y7m2s8ci6q642zl85y5axkj8z827l0vhjl532acb75hlkir77rl";
+ };
+
+ buildInputs = with self; [ pkgs.libxml2 pkgs.libxslt ];
+
+ meta = {
+ description = "Pythonic binding for the libxml2 and libxslt libraries";
+ homepage = http://lxml.de;
+ license = licenses.bsd3;
+ };
+ });
python_magic = buildPythonPackage rec {
name = "python-magic-0.4.10";
@@ -12031,7 +12164,7 @@ in modules // {
buildInputs = with self; [ pkgs.swig2 pkgs.openssl ];
preConfigure = ''
- substituteInPlace setup.py --replace "self.openssl = '/usr'" "self.openssl = '${pkgs.openssl}'"
+ substituteInPlace setup.py --replace "self.openssl = '/usr'" "self.openssl = '${pkgs.openssl.dev}'"
'';
doCheck = false; # another test that depends on the network.
@@ -12737,6 +12870,11 @@ in modules // {
sha256 = "0syd7bs83qs9qmxw540jbgsildbqk4yb57fmrlns1021llli402y";
};
+ checkPhase = ''
+ py.test
+ '';
+
+ buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self; [ ];
};
@@ -12897,6 +13035,29 @@ in modules // {
};
};
+ neuronpy = buildPythonPackage rec {
+ name = "neuronpy-${version}";
+ version = "0.1.6";
+ disabled = !isPy27;
+
+ propagatedBuildInputs = with self; [ numpy matplotlib scipy ];
+
+ meta = {
+ description = "Interfaces and utilities for the NEURON simulator and analysis of neural data";
+ maintainers = [ maintainers.nico202 ];
+ license = licenses.mit;
+ };
+
+ #No tests included
+ doCheck = false;
+
+ src = pkgs.fetchurl {
+ url = "https://pypi.python.org/packages/source/n/neuronpy/neuronpy-${version}.tar.gz";
+ sha256 = "1clhc2b5fy2l8nfrji4dagmj9419nj6kam090yqxhq5c28sngk25";
+ };
+ };
+
+
plover = buildPythonPackage rec {
name = "plover-${version}";
version = "3.0.0";
@@ -13196,7 +13357,7 @@ in modules // {
name = "slixmpp-${version}";
version = "1.1";
- disabled = (!isPy34);
+ disabled = pythonOlder "3.4";
src = pkgs.fetchurl {
url = "mirror://pypi/s/slixmpp/${name}.tar.gz";
@@ -13892,6 +14053,9 @@ in modules // {
sha256 = "0pdgi35hczsslil4890xqawnbpdazkgf2v1443847h5hy2gq2sg7";
};
+ # No tests included in archive
+ doCheck = false;
+
meta = {
homepage = http://code.google.com/p/oauth;
description = "Library for OAuth version 1.0a";
@@ -15863,6 +16027,9 @@ in modules // {
patches = [ ../development/python-modules/pelican-fix-tests-with-pygments-2.1.patch ];
+ # There's still some failing tests due to pygments 2.1.3
+ doCheck = false;
+
buildInputs = with self; [
pkgs.glibcLocales
pkgs.pandoc
@@ -16732,12 +16899,12 @@ in modules // {
};
- pyasn1 = buildPythonPackage ({
- name = "pyasn1-0.1.8";
+ pyasn1 = buildPythonPackage rec {
+ name = "pyasn1-0.1.9";
src = pkgs.fetchurl {
- url = "mirror://sourceforge/pyasn1/0.1.8/pyasn1-0.1.8.tar.gz";
- sha256 = "0iw31d9l0zwx35szkzq72hiw002wnqrlrsi9dpbrfngcl1ybwcsx";
+ url = "mirror://pypi/p/pyasn1/${name}.tar.gz";
+ sha256 = "0zraxni14bqi20kr4bi6nwsh32aibz0fq0xaczfisw0zdpcsqg45";
};
meta = {
@@ -16746,16 +16913,16 @@ in modules // {
license = "mBSD";
platforms = platforms.unix; # arbitrary choice
};
- });
+ };
pyasn1-modules = buildPythonPackage rec {
name = "pyasn1-modules-${version}";
- version = "0.0.5";
+ version = "0.0.8";
disabled = isPyPy;
src = pkgs.fetchurl {
url = "mirror://pypi/p/pyasn1-modules/${name}.tar.gz";
- sha256 = "0hcr6klrzmw4d9j9s5wrhqva5014735pg4zk3rppac4fs87g0rdy";
+ sha256 = "0drqgw81xd3fxdlg89kgd79zzrabvfncvkbybi2wr6w2y4s1jmhh";
};
propagatedBuildInputs = with self; [ pyasn1 ];
@@ -17407,7 +17574,7 @@ in modules // {
preConfigure = ''
export LDFLAGS="-L${pkgs.fftw.out}/lib -L${pkgs.fftwFloat.out}/lib -L${pkgs.fftwLongDouble.out}/lib"
- export CFLAGS="-I${pkgs.fftw}/include -I${pkgs.fftwFloat}/include -I${pkgs.fftwLongDouble}/include"
+ export CFLAGS="-I${pkgs.fftw.dev}/include -I${pkgs.fftwFloat.dev}/include -I${pkgs.fftwLongDouble.dev}/include"
'';
#+ optionalString isDarwin ''
# export DYLD_LIBRARY_PATH="${pkgs.fftw.out}/lib"
@@ -18218,7 +18385,7 @@ in modules // {
sha256 = "0j5hzaar4d0vhnrlpmkczgwm7ci2wibr99a7zx04xddzrhxdpz82";
};
- NIX_CFLAGS_COMPILE = "-I${pkgs.cyrus_sasl}/include/sasl";
+ NIX_CFLAGS_COMPILE = "-I${pkgs.cyrus_sasl.dev}/include/sasl";
propagatedBuildInputs = with self; [pkgs.openldap pkgs.cyrus_sasl pkgs.openssl];
};
@@ -18659,7 +18826,7 @@ in modules // {
++ (if stdenv.isLinux then [pkgs.e2fsprogs] else []);
# There seems to be no way to pass that path to configure.
- NIX_CFLAGS_COMPILE="-I${pkgs.aprutil}/include/apr-1";
+ NIX_CFLAGS_COMPILE="-I${pkgs.aprutil.dev}/include/apr-1";
preConfigure = ''
cd Source
@@ -18670,7 +18837,7 @@ in modules // {
--apr-lib-dir=${pkgs.apr.out}/lib \
--svn-lib-dir=${pkgs.subversion.out}/lib \
--svn-bin-dir=${pkgs.subversion.out}/bin \
- --svn-root-dir=${pkgs.subversion}
+ --svn-root-dir=${pkgs.subversion.dev}
'' + (if !stdenv.isDarwin then "" else ''
sed -i -e 's|libpython2.7.dylib|lib/libpython2.7.dylib|' Makefile
'');
@@ -18791,23 +18958,23 @@ in modules // {
};
};
- pywinrm = buildPythonPackage (rec {
- name = "pywinrm";
+ pywinrm = buildPythonPackage rec {
+ version = "0.1.1";
+ name = "pywinrm-${version}";
- src = pkgs.fetchgit {
- url = https://github.com/diyan/pywinrm.git;
- rev = "c9ce62d500007561ab31a8d0a5d417e779fb69d9";
- sha256 = "0n0qlcgin2g5lpby07qbdlnpq5v2qc2yns9zc4zm5prwh2mhs5za";
+ src = pkgs.fetchurl {
+ url = "https://github.com/diyan/pywinrm/archive/v${version}.tar.gz";
+ sha256 = "1pc0987f6q5sxcgm50a1k1xz2pk45ny9xxnyapaf60662rcavvfb";
};
- propagatedBuildInputs = with self; [ xmltodict isodate ];
+ propagatedBuildInputs = with self; [ isodate kerberos xmltodict ];
meta = {
homepage = "http://github.com/diyan/pywinrm/";
description = "Python library for Windows Remote Management";
license = licenses.mit;
};
- });
+ };
PyXAPI = stdenv.mkDerivation rec {
name = "PyXAPI-0.1";
@@ -22761,6 +22928,28 @@ in modules // {
};
};
+ uritemplate = buildPythonPackage rec {
+ name = "uritemplate-${version}";
+ version = "0.6";
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/u/uritemplate/${name}.tar.gz";
+ sha256 = "1zapwg406vkwsirnzc6mwq9fac4az8brm6d9bp5xpgkyxc5263m3";
+ };
+
+ # No tests in archive
+ doCheck = false;
+
+ propagatedBuildInputs = with self; [ simplejson ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/uri-templates/uritemplate-py;
+ description = "Python implementation of URI Template";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ matthiasbeyer ];
+ };
+ };
+
urlgrabber = buildPythonPackage rec {
name = "urlgrabber-3.9.1";
disabled = isPy3k;
@@ -24652,11 +24841,11 @@ in modules // {
pyusb = buildPythonPackage rec {
- name = "pyusb-1.0.0rc1";
+ name = "pyusb-1.0.0";
src = pkgs.fetchurl {
- url = "mirror://pypi/p/pyusb/${name}.tar.gz";
- sha256 = "07cjq11qhngzjd746k7688s6y2x7lpj669fxqfsiy985rg0jsn7j";
+ url = "https://pypi.python.org/packages/8a/19/66fb48a4905e472f5dfeda3a1bafac369fbf6d6fc5cf55b780864962652d/PyUSB-1.0.0.tar.gz";
+ sha256 = "0s2k4z06fapd5vp1gnrlf8a9sjpc03p9974lzw5k6ky39akzyd2v";
};
# Fix the USB backend library lookup
@@ -25087,16 +25276,19 @@ in modules // {
};
searx = buildPythonPackage rec {
- name = "searx-0.8.1";
+ name = "searx-${version}";
+ version = "0.9.0";
- src = pkgs.fetchurl {
- url = "https://github.com/asciimoo/searx/archive/v0.8.1.tar.gz";
- sha256 = "0z0s9n8iblrw7y5xrh2apzsazkgm4vzmxn0ckw4yfiya9am8zk32";
+ src = pkgs.fetchFromGitHub {
+ owner = "asciimoo";
+ repo = "searx";
+ rev = "v${version}";
+ sha256 = "030qkrsj4as9anr8xfpk5n41qzg7w4yyjasb4cqislvyl1l1dvvs";
};
propagatedBuildInputs = with self; [
- pyyaml lxml grequests flaskbabel flask requests2
- gevent speaklater Babel pytz dateutil pygments
+ pyyaml lxml_3_5 grequests flaskbabel flask requests2
+ gevent speaklater Babel pytz dateutil pygments_2_0
pyasn1 pyasn1-modules ndg-httpsclient certifi
];
@@ -25841,11 +26033,14 @@ in modules // {
};
parsimonious = buildPythonPackage rec {
- name = "parsimonious-0.6.0";
+ version = "0.6.2";
+ name = "parsimonious-${version}";
disabled = ! isPy27;
- src = pkgs.fetchurl {
- url = "https://github.com/erikrose/parsimonious/archive/0.6.tar.gz";
- sha256 = "7ad992448b69a3f3d943bac0be132bced3f13937c8ca150ba2fd1d7b6534f846";
+ src = pkgs.fetchFromGitHub {
+ repo = "parsimonious";
+ owner = "erikrose";
+ rev = version;
+ sha256 = "1wf12adzhqjibbhy2m9abfqdgbb6z97s7wydhasir70307rqf9rj";
};
propagatedBuildInputs = with self; [ nose ];
@@ -26164,16 +26359,24 @@ in modules // {
};
neovim = buildPythonPackage rec {
- version = "0.1.7";
+ version = "0.1.8";
name = "neovim-${version}";
- disabled = isPy35;
-
src = pkgs.fetchurl {
url = "mirror://pypi/n/neovim/${name}.tar.gz";
- sha256 = "0il6h9qpy9rkgz16yn2bhhg5f23w41wvm9ivlscx5l55llq9sd9q";
+ sha256 = "06g84f0l208jrc1iqa4vk9kgwr77z1ya8cq39cygpq88yjj28whi";
};
+ buildInputs = with self; [ nose ];
+
+ checkPhase = ''
+ nosetests
+ '';
+
+ # Tests require pkgs.neovim,
+ # which we cannot add because of circular dependency.
+ doCheck = false;
+
propagatedBuildInputs = with self; [ msgpack ]
++ optional (!isPyPy) greenlet
++ optional (!isPy34) trollius;
@@ -26359,7 +26562,7 @@ in modules // {
version = "0.9";
namePrefix = "";
- disabled = (!isPy34);
+ disabled = pythonOlder "3.4";
buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self ; [ aiodns slixmpp pyinotify potr ];
@@ -26454,6 +26657,9 @@ in modules // {
sha256 = "1q699dcnq34nfgm0bg8mp5krhzk9cyirqdcadhs9al4fa5410igw";
};
+ # No tests included in archive
+ doCheck = false;
+
propagatedBuildInputs = with self; [ youtube-dl ];
meta = with stdenv.lib; {
@@ -26863,7 +27069,7 @@ in modules // {
# Fix the USB backend library lookup
postPatch = ''
- libusb=${pkgs.libusb1}/include/libusb-1.0
+ libusb=${pkgs.libusb1.dev}/include/libusb-1.0
test -d $libusb || { echo "ERROR: $libusb doesn't exist, please update/fix this build expression."; exit 1; }
sed -i -e "s|/usr/include/libusb-1.0|$libusb|" setup.py
'';
@@ -27092,6 +27298,36 @@ in modules // {
};
};
+
+ Quandl = buildPythonPackage rec {
+ version = "3.0.0";
+ name = "Quandl-${version}";
+
+ src = pkgs.fetchurl {
+ url= "mirror://pypi/q/quandl/${name}.tar.gz";
+ sha256 = "d4e698eb39291e0b281975813054101f3dfb379dead10d34d7b536e1aad60584";
+ };
+
+ propagatedBuildInputs = with self; [
+ numpy
+ ndg-httpsclient
+ dateutil
+ inflection
+ moreItertools
+ requests2
+ pandas
+ ];
+
+ #No tests in archive
+ doCheck = false;
+
+ meta = {
+ homepage = https://github.com/quandl/quandl-python;
+ description = "A Python library for Quandl’s RESTful API";
+ maintainers = with maintainers; [ NikolaMandic ];
+ };
+ };
+
queuelib = buildPythonPackage rec {
name = "queuelib-${version}";
version = "1.4.2";
@@ -27203,6 +27439,54 @@ in modules // {
};
};
+ Keras = buildPythonPackage rec {
+ name = "Keras-${version}";
+ version = "1.0.3";
+ disabled = isPy3k;
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/k/keras/${name}.tar.gz";
+ sha256 = "0wi826bvifvy12w490ghj1g45z5xb83q2cadqh425sg56p98khaq";
+ };
+
+ propagatedBuildInputs = with self; [
+ six Theano pyyaml
+ ];
+
+ meta = {
+ description = "Deep Learning library for Theano and TensorFlow";
+ homepage = "https://keras.io";
+ license = licenses.mit;
+ maintainers = with maintainers; [ NikolaMandic ];
+ };
+ };
+
+ Lasagne = buildPythonPackage rec {
+ name = "Lasagne-${version}";
+ version = "0.1";
+ disabled = isPy3k;
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/l/lasagne/${name}.tar.gz";
+ sha256 = "0cqj86rdm6c7y5vq3i13qy76fg5xi3yjp4r0hpqy8hvynv54wqrw";
+ };
+
+ propagatedBuildInputs = with self; [
+ numpy
+ Theano
+ ];
+
+ # there are no tests
+ doCheck = false;
+
+ meta = {
+ description = "Lightweight library to build and train neural networks in Theano";
+ homepage = "https://github.com/Lasagne/Lasagne";
+ maintainers = with maintainers; [ NikolaMandic ];
+ license = licenses.mit;
+ };
+ };
+
sigtools = buildPythonPackage rec {
name = "sigtools-${version}";
version = "1.1a3";
@@ -27312,4 +27596,90 @@ in modules // {
license = licenses.asl20;
};
};
+
+ simpleai = buildPythonPackage rec {
+ version = "0.7.11";
+ name = "simpleai-${version}";
+
+ src = pkgs.fetchurl {
+ url= "https://pypi.python.org/packages/source/s/simpleai/${name}.tar.gz";
+ sha256 = "03frjc5jxsz9xm24jz7qa4hcp0dicgazrxkdsa2rsnir672lwkwz";
+ };
+
+ propagatedBuildInputs = with self; [ numpy ];
+
+ disabled = isPy3k;
+
+ #No tests in archive
+ doCheck = false;
+
+ meta = {
+ homepage = https://github.com/simpleai-team/simpleai;
+ description = "This lib implements many of the artificial intelligence algorithms described on the book 'Artificial Intelligence, a Modern Approach'";
+ maintainers = with maintainers; [ NikolaMandic ];
+ };
+ };
+
+ tvdb_api = buildPythonPackage rec {
+ name = "tvdb_api-${version}";
+ version = "1.10";
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/t/tvdb_api/${name}.tar.gz";
+ sha256 = "0hq887yb3rwc0rcw32lh7xdkk9bbrqy274aspzqkd6f7dyhp73ih";
+ };
+
+ disabled = isPy3k;
+
+ meta = {
+ description = "Simple to use TVDB (thetvdb.com) API in Python.";
+ homepage = "https://github.com/dbr/tvdb_api";
+ license = licenses.unlicense;
+ maintainers = with maintainers; [ peterhoeg ];
+ };
+ };
+
+ tvnamer = buildPythonPackage rec {
+ name = "tvnamer-${version}";
+ version = "2.3";
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/t/tvnamer/${name}.tar.gz";
+ sha256 = "15i6qvhwhcx08c96xx3s2841yc7k8gxrqqvhw908c11g0045c2r3";
+ };
+
+ propagatedBuildInputs = with self; [
+ tvdb_api
+ ];
+
+ # tvdb_api isn't working with Python 3
+ disabled = isPy3k;
+
+ meta = {
+ description = "Automatic TV episode file renamer, uses data from thetvdb.com via tvdb_api.";
+ homepage = "https://github.com/dbr/tvnamer";
+ license = licenses.unlicense;
+ maintainers = with maintainers; [ peterhoeg ];
+ };
+ };
+
+ pybrain = buildPythonPackage rec {
+ name = "pybrain-${version}";
+ version = "0.3.3";
+
+ src = pkgs.fetchurl {
+ url = "https://github.com/pybrain/pybrain/archive/${version}.tar.gz";
+ sha256 = "114m99vsrps2gjqfm3i3kxx4nibjhjdzphsy2bhrxa5q3h2q14dz";
+ };
+
+ propagatedBuildInputs = with self; [ scipy ];
+
+ meta = {
+ homepage = "http://pybrain.org/";
+ description = "Modular Machine Learning Library for Python";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ NikolaMandic ];
+ };
+ };
+
}
diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix
index a50af32da4e..933c532d907 100644
--- a/pkgs/top-level/release.nix
+++ b/pkgs/top-level/release.nix
@@ -258,7 +258,11 @@ let
python2Packages = { };
python27Packages = { };
python3Packages = { };
- python35Packages = { };
+ python35Packages = {
+ blaze = unix;
+ pandas = unix;
+ scikitlearn = unix;
+ };
xorg = {
fontadobe100dpi = linux ++ darwin;
@@ -286,7 +290,6 @@ let
xf86videonv = linux;
xf86videovesa = linux;
xf86videovmware = linux;
- xf86videomodesetting = linux;
xfs = linux ++ darwin;
xinput = linux ++ darwin;
xkbcomp = linux ++ darwin;
diff --git a/pkgs/top-level/rust-packages.nix b/pkgs/top-level/rust-packages.nix
index 7eb902ef28c..31eb3007daa 100644
--- a/pkgs/top-level/rust-packages.nix
+++ b/pkgs/top-level/rust-packages.nix
@@ -7,15 +7,15 @@
{ runCommand, fetchFromGitHub, git }:
let
- version = "2016-05-12";
- rev = "5b7ac517f63cfc380f018445920aac322ae19b6f";
+ version = "2016-05-28";
+ rev = "eb354be1bc4c368e4ed885bd126f625f371b4bfa";
src = fetchFromGitHub {
inherit rev;
owner = "rust-lang";
repo = "crates.io-index";
- sha256 = "0g50hjbvfjgi7j26b9n018vgh7sxvzq8lwzchk0zavirsxhnzxni";
+ sha256 = "1scbfraj2cgpi5q1bkhhj18jv58hkyl9pms8qnx3fvxs6yq68ba9";
};
in
@@ -44,4 +44,6 @@ runCommand "rustRegistry-${version}-${builtins.substring 0 7 rev}" { inherit src
$git config --local user.name "example"
$git add .
$git commit -m 'Rust registry commit'
+
+ touch $out/touch . "$out/.cargo-index-lock"
''